We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0864dac commit 97e79a4Copy full SHA for 97e79a4
Gemfile
@@ -2,6 +2,8 @@ source "http://rubygems.org"
2
3
gem 'fastimage', '~> 1.2.13'
4
gem 'rake'
5
+gem 'guard'
6
+gem 'guard-rspec'
7
8
group :test do
9
gem "fakeweb", "~> 1.3.0"
Guardfile
@@ -0,0 +1,9 @@
1
+# A sample Guardfile
+# More info at https://github.com/guard/guard#readme
+
+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
0 commit comments