1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

Update Rubinius version in .travis.yml

Travis now supports only Rubinius 2.1 and
up. http://about.travis-ci.org/docs/user/languages/ruby/#Rubinius

Additionally the Ruby standard library has been separated from rbx in to
a set of gems and now needs to be set as a development dependency.
http://rubini.us/2013/09/22/ready-set/
This commit is contained in:
Petko Bordjukov 2013-12-05 01:27:04 +02:00
parent 60748f00e4
commit a3bde09bd2
2 changed files with 3 additions and 1 deletions

View file

@ -2,7 +2,8 @@ rvm:
- 2.0.0
- 1.9.2
- 1.9.3
- rbx-19mode
- rbx-2.1.1
- rbx-2.2.1
notifications:
recipients:
- cowboyd@thefrontside.net

View file

@ -32,5 +32,6 @@ Gem::Specification.new do |s|
s.add_development_dependency "rake-compiler"
s.add_development_dependency "rspec"
s.add_development_dependency "rspec-spies"
s.add_development_dependency "rubysl", "~> 2.0" if RUBY_ENGINE == "rbx"
s.add_development_dependency "vulcan"
end