This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Vim < Formula | |
homepage 'http://www.vim.org/' | |
url 'ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2' | |
sha256 '5c5d5d6e07f1bbc49b6fe3906ff8a7e39b049928b68195b38e3e3d347100221d' | |
version '7.3.162' | |
def features; %w(tiny small normal big huge) end | |
def interp; %w(lua mzscheme perl python python3 tcl ruby) end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec' | |
class DocsToCode | |
def docs_in(path) | |
[] | |
end | |
def code_in(doc) | |
"" | |
end | |
def extract(path) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec' | |
class DocsToCode | |
def initialize() | |
puts "hello" | |
end | |
def docs_in(path) | |
[] | |
end | |
def code_in(doc) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Tiniest BDD DSL/framework around? | |
// Licensed under MSPL/FreeBSD/ISC or any other OSS license you want | |
// Original idea from http://blog.kjempekjekt.com/2009/08/13/ultra-tiny-given-when-then-dsl-snippet/, | |
// turned into generic base class by Jonas Follesø. | |
public abstract class BDD<T> where T : BDD<T> | |
{ | |
protected T Given { get { return (T)this; } } | |
protected T And { get { return (T)this; } } | |
protected T When { get { return (T)this; } } |
NewerOlder