Sha256: 929ea91dd4c096acc52585ba6f08cce32c8d0cc01d97fc6f99b17ed3b0b37526
Contents?: true
Size: 779 Bytes
Versions: 23
Compression:
Stored size: 779 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') # Uncomment next line if Gemfile contain `gemspec' command # watch(/^.+\.gemspec/) end guard 'ctags-bundler' do watch(%r{^(app|lib|spec/support)/.*\.rb$}) { ["app", "lib", "spec/support"] } watch('Gemfile.lock') end guard 'rspec', :version => 2 do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } # Rails example watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/(.*)(\.erb|\.haml)$}) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" } watch(%r{^spec/support/(.+)\.rb$}) { "spec" } end
Version data entries
23 entries across 23 versions & 1 rubygems