1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00

remove dev deps

This commit is contained in:
stereobooster 2012-05-17 17:08:17 +03:00
parent c87c363379
commit 7895a62f17
2 changed files with 4 additions and 21 deletions

View file

@ -3,11 +3,13 @@ source :rubygems
gemspec
group :test do
gem 'johnson', :platform => :mri_18
gem 'json'
# see https://github.com/jbarnette/johnson/issues/21
gem 'johnson', :platform => :mri_18
# see https://github.com/nu7hatch/mustang/issues/18
gem 'mustang', :platform => :ruby,
:git => "https://github.com/nu7hatch/mustang.git", :ref => "2a3bcfbd9fd0f34e9b004fcd92188f326b40ec2a"
# disabled for rbx, because of https://github.com/cowboyd/therubyracer/issues/157
gem 'therubyracer', :platform => :mri
gem 'therubyrhino', :platform => :jruby
gem 'therubyrhino', ">=1.73.3", :platform => :jruby
end

View file

@ -14,25 +14,6 @@ Gem::Specification.new do |s|
s.add_dependency "multi_json", "~>1.0"
s.add_development_dependency "rake"
# mri_18
if (!defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby") && RUBY_VERSION < "1.9"
# see https://github.com/jbarnette/johnson/issues/21
s.add_development_dependency "johnson"
end
# mri
if (!defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby")
# disabled for rbx, because of https://github.com/cowboyd/therubyracer/issues/157
s.add_development_dependency "therubyracer"
end
# jruby
if (defined?(RUBY_ENGINE) && RUBY_ENGINE == "jruby")
s.add_development_dependency "therubyrhino", ">=1.73.3"
else
s.add_development_dependency "mustang"
end
s.authors = ["Sam Stephenson", "Josh Peek"]
s.email = ["sstephenson@gmail.com", "josh@joshpeek.com"]
end