Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
rbx-19mode is no longer valid.
See travis-ci/travis-ci#1641

Also tell bundler to not install development gems (which required
adding some gems as test dependencies).
  • Loading branch information
JPrevost committed Dec 11, 2013
1 parent 9ab014a commit 1183995
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode # JRuby (1.9)
- rbx-19mode
- rbx-2.1.1
14 changes: 11 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ gemspec

gem 'jruby-openssl', "~> 0.9.0", platform: :jruby

group :development do
group :development do
gem "ruby-debug", "~> 0.10.4", platform: :jruby
gem "debugger", "~> 1.5.0", platform: :mri
end

group :test do
group :test do
gem "coveralls", "~> 0.7.0", :require => false
end
gem "rake", "~> 10.1.0"
gem "vcr", "~> 2.5.0"
gem "webmock", "~> 1.13.0"
end

platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubinius-coverage'
end

0 comments on commit 1183995

Please sign in to comment.