adds dependencies

This commit is contained in:
Jessica Lynn Suttles 2013-02-04 12:53:25 -08:00
parent 05ec5276fd
commit b55da5631d
3 changed files with 24 additions and 0 deletions

5
Guardfile Normal file
View file

@ -0,0 +1,5 @@
guard "rspec" do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
watch("spec/spec_helper.rb") { "spec" }
end