File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 98
98
RedundantReturn :
99
99
AllowMultipleReturnValues : true
100
100
101
- # We have to rescue Exception in the `raise_error` matcher for it to work properly.
101
+ # Exceptions should be rescued with `Support::AllExceptionsExceptOnesWeMustNotRescue`
102
102
RescueException :
103
- Enabled : false
103
+ Enabled : true
104
104
105
105
# We haven't adopted the `fail` to signal exceptions vs `raise` for re-raises convention.
106
106
SignalException :
Original file line number Diff line number Diff line change 5
5
- ../bundle
6
6
before_install :
7
7
- " script/clone_all_rspec_repos"
8
- # Downgrade bundler to work around https://github.com/bundler/bundler/issues/3004
9
8
# Note this doesn't work on JRUBY 2.0.0 mode so we don't do it
10
- - if [ -z "$JRUBY_OPTS" ]; then gem install bundler -v=1.5.3 && alias bundle="bundle _1.5.3_" ; fi
9
+ - if [ "jruby" != "$TRAVIS_RUBY_VERSION" ]; then gem install bundler; fi
11
10
bundler_args : " --binstubs --standalone --without documentation --path ../bundle"
12
11
script : " script/run_build"
13
12
rvm :
You can’t perform that action at this time.
0 commit comments