mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
move libv8 into a seperate group.
This enables bundling without it for deveolping on boxes that have the shared library installed. bundle --without libv8
This commit is contained in:
parent
eb87ceb340
commit
ffdceb0d2a
1 changed files with 6 additions and 1 deletions
7
Gemfile
7
Gemfile
|
@ -3,9 +3,14 @@ source 'http://rubygems.org'
|
||||||
gemspec
|
gemspec
|
||||||
|
|
||||||
gem 'redjs', :git => 'https://github.com/cowboyd/redjs.git'
|
gem 'redjs', :git => 'https://github.com/cowboyd/redjs.git'
|
||||||
gem 'libv8', "~> 3.11.8"
|
|
||||||
gem "rake"
|
gem "rake"
|
||||||
gem "rspec", "~> 2.0"
|
gem "rspec", "~> 2.0"
|
||||||
gem "rake-compiler"
|
gem "rake-compiler"
|
||||||
gem 'gem-compiler' unless Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
|
gem 'gem-compiler' unless Object.const_defined?(:RUBY_ENGINE) && RUBY_ENGINE == 'rbx'
|
||||||
|
|
||||||
|
group :libv8 do
|
||||||
|
gem 'libv8', "~> 3.11.8"
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue