Delete guard

This commit is contained in:
Erik Michaels-Ober 2015-05-25 11:20:32 +02:00
parent 61a6440786
commit 7b46987960
2 changed files with 0 additions and 15 deletions

View File

@ -6,11 +6,6 @@ gem 'yard'
group :development do
gem 'growl'
platforms :ruby_19, :ruby_20 do
gem 'guard'
gem 'guard-bundler'
gem 'guard-rspec'
end
gem 'kramdown'
gem 'plymouth', :platforms => [:ruby_19, :ruby_20, :ruby_21]
gem 'pry'

View File

@ -1,10 +0,0 @@
guard 'rspec', :version => 2 do
watch(/^spec\/.+_spec\.rb$/)
watch(/^lib\/(.+)\.rb$/) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec/' }
end
guard 'bundler' do
watch('Gemfile')
watch(/^.+\.gemspec/)
end