mirror of
https://github.com/rubyjs/therubyrhino
synced 2023-03-27 23:21:34 -04:00
21 lines
648 B
Ruby
21 lines
648 B
Ruby
source "https://rubygems.org"
|
|
|
|
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', :require => nil
|
|
end
|
|
|
|
gem 'rake', :group => :development
|
|
gem 'jruby-openssl', :group => :development
|