diff options
Diffstat (limited to 'Library/Formula/repl.rb')
| -rw-r--r-- | Library/Formula/repl.rb | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/repl.rb b/Library/Formula/repl.rb new file mode 100644 index 000000000..5b109322b --- /dev/null +++ b/Library/Formula/repl.rb @@ -0,0 +1,16 @@ +require 'formula' + +class Repl < Formula +  head 'git://github.com/defunkt/repl.git', :tag => 'v0.1.0' +  homepage 'http://github.com/defunkt/repl' + +  def initialize(*args) +    super +    @version = '0.1.0' +  end + +  def install +    bin.install 'bin/repl' +    man1.install 'man/repl.1' +  end +end  | 
