2010-04-08 21:00:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Redcar <Formula
|
|
|
|
head 'git://github.com/danlucraft/redcar.git'
|
2010-11-10 18:16:28 +00:00
|
|
|
homepage 'https://github.com/danlucraft/redcar'
|
2010-04-08 21:00:27 +00:00
|
|
|
|
|
|
|
depends_on 'jruby'
|
|
|
|
depends_on 'cucumber' => :jruby
|
|
|
|
|
|
|
|
def install
|
|
|
|
puts "You need the RSpec gem installed under JRuby or this will not work."
|
|
|
|
|
|
|
|
system "jruby bin/redcar install"
|
|
|
|
system "jruby -S rake build"
|
|
|
|
libexec.install ['bin', 'lib', 'plugins', 'textmate', 'vendor']
|
|
|
|
|
|
|
|
(bin+'redcar').write <<-EOS
|
|
|
|
#!/bin/bash
|
|
|
|
jruby -J-XstartOnFirstThread \"#{libexec}/bin/redcar\"
|
|
|
|
EOS
|
|
|
|
chmod 0555, (bin+'redcar')
|
|
|
|
end
|
|
|
|
end
|