diff --git a/.travis.yml b/.travis.yml index e4bef486..e2da01e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,7 @@ language: ruby bundler_args: --without tool rvm: - 2.0.0 - - 2.1.5 - - 2.2.0 + - 2.2.1 - jruby-19mode - rbx gemfile: diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 0fc22781..c1ace946 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,5 +1,12 @@ require "rspec" +# To help produce better bug reports in Rubinius +if RUBY_ENGINE == "rbx" + $DEBUG = true # would be nice if this didn't fail ... :( + require 'rspec/matchers' + require 'rspec/matchers/built_in/be' +end + if ENV["CI"] require "coveralls" Coveralls.wear!