Skip to content

Commit

Permalink
Adding Guard and Guard-Rspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Franklin Webber committed Jun 1, 2012
1 parent 6097d1c commit bb2954c
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
1 change: 0 additions & 1 deletion .rspec

This file was deleted.

3 changes: 2 additions & 1 deletion Gemfile
Expand Up @@ -7,5 +7,6 @@ gem "nokogiri", "1.5.1"
group :development do group :development do
gem "rake", "0.9.2" gem "rake", "0.9.2"
gem "rspec", "2.8" gem "rspec", "2.8"
gem "yard" gem "guard"
gem "guard-rspec"
end end
14 changes: 11 additions & 3 deletions Gemfile.lock
@@ -1,13 +1,20 @@
PATH PATH
remote: . remote: .
specs: specs:
nokogiri-happymapper (0.5.0) nokogiri-happymapper (0.5.1)
nokogiri (~> 1.4) nokogiri (~> 1.4)


GEM GEM
remote: http://rubygems.org/ remote: http://rubygems.org/
specs: specs:
diff-lcs (1.1.3) diff-lcs (1.1.3)
ffi (1.0.11)
ffi (1.0.11-java)
guard (1.0.3)
ffi (>= 0.5.0)
thor (>= 0.14.6)
guard-rspec (0.7.3)
guard (>= 0.10.0)
nokogiri (1.5.1) nokogiri (1.5.1)
nokogiri (1.5.1-java) nokogiri (1.5.1-java)
rake (0.9.2) rake (0.9.2)
Expand All @@ -19,15 +26,16 @@ GEM
rspec-expectations (2.8.0) rspec-expectations (2.8.0)
diff-lcs (~> 1.1.2) diff-lcs (~> 1.1.2)
rspec-mocks (2.8.0) rspec-mocks (2.8.0)
yard (0.7.2) thor (0.15.2)


PLATFORMS PLATFORMS
java java
ruby ruby


DEPENDENCIES DEPENDENCIES
guard
guard-rspec
nokogiri (= 1.5.1) nokogiri (= 1.5.1)
nokogiri-happymapper! nokogiri-happymapper!
rake (= 0.9.2) rake (= 0.9.2)
rspec (= 2.8) rspec (= 2.8)
yard
9 changes: 9 additions & 0 deletions Guardfile
@@ -0,0 +1,9 @@
# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2, :cli => "-c -f d" do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { "spec" }
watch('spec/spec_helper.rb') { "spec" }
end

0 comments on commit bb2954c

Please sign in to comment.