Skip to content

Commit

Permalink
Properly test rbx on Travis-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
meineerde committed Dec 11, 2013
1 parent 01339f0 commit bbe23af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 1 addition & 4 deletions .travis.yml
Expand Up @@ -4,8 +4,7 @@ rvm:
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- rbx
env:
- RACK_VERSION=1.4.1
- RAILS_VERSION=2.3.15
Expand All @@ -17,5 +16,3 @@ matrix:
env: RAILS_VERSION=4.0.0
- rvm: jruby-18mode
env: RAILS_VERSION=4.0.0
- rvm: rbx-18mode
env: RAILS_VERSION=4.0.0
2 changes: 2 additions & 0 deletions Gemfile
Expand Up @@ -8,5 +8,7 @@ end
# mime-types >= 2.0.0 is only supported on Ruby >= 1.9.2
gem "mime-types", "< 2.0.0"

gem "rubysl", :platforms => [:rbx]

# Specify your gem's dependencies in rackstash.gemspec
gemspec
6 changes: 4 additions & 2 deletions test/test_helper.rb
Expand Up @@ -3,7 +3,9 @@
require 'bundler/setup'
Bundler.require :default

require 'coveralls'
Coveralls.wear!
unless RbConfig::CONFIG["RUBY_INSTALL_NAME"] == "rbx"
require 'coveralls'
Coveralls.wear!
end

require 'minitest/autorun'

0 comments on commit bbe23af

Please sign in to comment.