# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2, :cli => '--color --format doc' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/support/(.+)\.rb$}) { "spec" } end guard 'bundler' do watch('Gemfile') # Uncomment next line if Gemfile contain `gemspec' command # watch(/^.+\.gemspec/) end guard 'yard' do watch(%r{lib/.+\.rb}) watch('README.markdown') end