Created
October 1, 2016 04:07
-
-
Save myronmarston/f14e41eb411e34c6424b07accc40260d to your computer and use it in GitHub Desktop.
Revisions
-
myronmarston revised this gist
Oct 1, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ RSpec.configure do |rspec| if ENV["CI"] rspec.before(:example, :focus) do raise "Do not commit examples tagged with :focus" end else rspec.filter_run_when_matching :focus -
myronmarston created this gist
Oct 1, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ RSpec.configure do |rspec| if ENV["CI"] rspec.before(:example, :focus) do raise "Do not commit examples tagged with :focus end else rspec.filter_run_when_matching :focus end end