diff --git a/Gemfile b/Gemfile index f119ffa7b..46c0bbaa6 100644 --- a/Gemfile +++ b/Gemfile @@ -8,8 +8,6 @@ end group :development do gem 'rake' - gem 'guard-rspec' - gem 'rb-fsevent' end group :test do diff --git a/Guardfile b/Guardfile deleted file mode 100644 index 94e3710ae..000000000 --- a/Guardfile +++ /dev/null @@ -1,24 +0,0 @@ -# A sample Guardfile -# More info at https://github.com/guard/guard#readme - -# rubies = %w[ -# 1.8.6 -# 1.8.7 -# 1.9.2 -# ree -# jruby -# ].map { |ruby| "#{ruby}@webmock" } - -rspec_options = { - # :rvm => rubies, - :all_on_start => false, - :notification => false, - :cli => '--color', - :version => 2 -} - -guard 'rspec', rspec_options do - watch(%r{^spec/.+_spec\.rb}) - watch(%r{^lib/(.+)\.rb}) { |m| "spec/lib/#{m[1]}_spec.rb" } - watch('spec/spec_helper.rb') { "spec" } -end