File tree Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Expand file tree Collapse file tree 4 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 11--require spec_helper
2- --color
32--format documentation
Original file line number Diff line number Diff line change 66
77gem 'rack'
88gem 'rake'
9- gem 'rspec' , '>= 3.4'
9+ %w[ rspec rspec-core rspec-expectations rspec-mocks rspec-support ] . each do |repo |
10+ gem repo , github : "rspec/#{ repo } " , branch : '4-0-dev'
11+ end
1012gem 'rubocop-performance' , '~> 1.7'
1113gem 'rubocop-rake' , '~> 0.6'
1214gem 'yard'
Original file line number Diff line number Diff line change 8686 end
8787
8888 it_behaves_like :something
89- it_should_behave_like :something
89+ # it_should_behave_like :something
9090
9191 it_behaves_like :something do
9292 let ( :foo ) { 'bar' }
Original file line number Diff line number Diff line change @@ -24,11 +24,7 @@ module SpecHelper
2424 config . order = :random
2525
2626 # Run focused tests with `fdescribe`, `fit`, `:focus` etc.
27- config . filter_run focus : true
28- config . run_all_when_everything_filtered = true
29-
30- # Forbid RSpec from monkey patching any of our objects
31- config . disable_monkey_patching!
27+ config . filter_run_when_matching :focus
3228
3329 # We should address configuration warnings when we upgrade
3430 config . raise_errors_for_deprecations!
You can’t perform that action at this time.
0 commit comments