diff --git a/Gemfile b/Gemfile index 96f163e..0cdae85 100644 --- a/Gemfile +++ b/Gemfile @@ -14,5 +14,4 @@ group :test do gem 'sqlite3-ruby' gem 'guard-rspec' gem 'rb-fsevent' - gem 'growl' end \ No newline at end of file diff --git a/Guardfile b/Guardfile index 65b4fee..0c1bcda 100644 --- a/Guardfile +++ b/Guardfile @@ -1,7 +1,4 @@ -# A sample Guardfile -# More info at https://github.com/guard/guard#readme - -guard 'rspec', :version => 1, :cli => '--colour --format nested' do +guard 'rspec', :version => 2, :cli => '--colour --format nested' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" }