Skip to content

Commit

Permalink
. using guard forces me to do this...
Browse files Browse the repository at this point in the history
  • Loading branch information
kschiess committed Jan 24, 2011
1 parent 8d4de8a commit b1103e6
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ group :development do
gem 'flexmock'

gem 'sdoc'

# gem 'guard'
# gem 'growl'
end
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ GEM
blankslate (2.1.2.3)
diff-lcs (1.1.2)
flexmock (0.8.11)
json (1.4.6)
json (1.5.0)
rdoc (2.4.3)
rspec (2.3.0)
rspec-core (~> 2.3.0)
rspec-expectations (~> 2.3.0)
rspec-mocks (~> 2.3.0)
rspec-core (2.3.1)
rspec-expectations (2.3.0)
rspec (2.4.0)
rspec-core (~> 2.4.0)
rspec-expectations (~> 2.4.0)
rspec-mocks (~> 2.4.0)
rspec-core (2.4.0)
rspec-expectations (2.4.0)
diff-lcs (~> 1.1.2)
rspec-mocks (2.3.0)
rspec-mocks (2.4.0)
sdoc (0.2.20)
json (>= 1.1.3)
rdoc (= 2.4.3)
Expand Down
5 changes: 5 additions & 0 deletions Guardfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
guard 'rspec', :version => 2 do
watch(%r(^spec/(.*)_spec.rb))
watch(%r(^lib/(.*)\.rb)) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end

0 comments on commit b1103e6

Please sign in to comment.