Sha256: 75b65a4d605fe98b30c0e769f246fc764c5c5ac1b53c15c79ac568a2be21f418

Contents?: true

Size: 366 Bytes

Versions: 7

Compression:

Stored size: 366 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard :rspec, cmd: "bundle exec rspec" do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'rack', :port => 9292 do
  watch('Gemfile.lock')
  watch('config.ru')
  watch(%r{^(js|lib)/.*})
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
shutterbug-0.5.9 Guardfile
shutterbug-0.5.8 Guardfile
shutterbug-0.5.7 Guardfile
shutterbug-0.5.6 Guardfile
shutterbug-0.5.5 Guardfile
shutterbug-0.5.4 Guardfile
shutterbug-0.5.3 Guardfile