move stuff into the gemfile in order to enable rbx

This commit is contained in:
Charles Lowell 2012-06-16 08:42:12 -05:00
parent 1007885c5c
commit f73e296372
2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,11 @@
source 'http://rubygems.org'
# Specify your gem's dependencies in therubyracer.gemspec
gemspec
gem 'redjs', :git => 'https://github.com/cowboyd/redjs.git'
gem 'libv8', "~> 3.11.8"
gem "rake"
gem "rspec", "~> 2.0"
gem "rake-compiler"
gem 'gem-compiler' unless Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE == 'rbx'

View File

@ -15,9 +15,4 @@ Gem::Specification.new do |gem|
gem.extensions = ["ext/v8/extconf.rb"]
gem.require_paths = ["lib", "ext"]
gem.version = V8::VERSION
gem.add_development_dependency "rake"
gem.add_development_dependency "rake-compiler"
gem.add_development_dependency "gem-compiler"
gem.add_development_dependency "rspec", "~> 2.0"
end