1
0
Fork 0
mirror of https://github.com/rubyjs/therubyrhino synced 2023-03-27 23:21:34 -04:00
therubyrhino/Gemfile
kares ebbbf6baf1 reproduced regression with requires similar to LESS loading
+ added a require 'less' as an integration spec
2012-08-24 12:08:06 +02:00

18 lines
No EOL
537 B
Ruby

source :rubygems
gemspec :name => "therubyrhino"
group :test do
# NOTE: some specs might be excluded @see #spec/spec_helper.rb
gem 'redjs', :git => 'git://github.com/cowboyd/redjs.git', :group => :test,
:ref => "0d844f066666f967a78b20beb164c52d9ac3f5ca"
#gem 'redjs', :path => '../redjs', :group => :test
# e.g. `export therubyrhino_jar=1.7.3`
if jar_version = ENV['therubyrhino_jar']
gem 'therubyrhino_jar', jar_version
else
gem 'therubyrhino_jar', :path => '.'
end
gem 'less', '>= 2.2.1'
end