Skip to content

Commit

Permalink
[CS] Remove unnecessary boilerplate
Browse files Browse the repository at this point in the history
It appears this was just copied from somewhere else
  • Loading branch information
benlangfeld committed Sep 12, 2013
1 parent 7210a4b commit 1dbc412
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
13 changes: 4 additions & 9 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
ENV['SKIP_RCOV'] = 'true'

group 'rspec' do
guard 'rspec', :cli => '--format documentation', :all_on_start => true, :all_after_pass => true do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec/" }
end
guard 'rspec', :cli => '--format documentation', :all_on_start => true, :all_after_pass => true do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec/" }
end

2 changes: 0 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# encoding: utf-8

$testing = true

%w{
sippy_cup
}.each { |f| require f }
Expand Down

0 comments on commit 1dbc412

Please sign in to comment.