Sha256: b016010a44ad84c1ad3d6967c771d156f6b80e504e60c0069ec9466ae380fa00

Contents?: true

Size: 339 Bytes

Versions: 10

Compression:

Stored size: 339 Bytes

Contents

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

guard :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

10 entries across 10 versions & 1 rubygems

Version Path
shutterbug-0.5.2 Guardfile
shutterbug-0.5.1 Guardfile
shutterbug-0.5.0 Guardfile
shutterbug-0.4.3 Guardfile
shutterbug-0.2.5 Guardfile
shutterbug-0.2.1 Guardfile
shutterbug-0.2.0 Guardfile
shutterbug-0.1.2 Guardfile
shutterbug-0.1.1 Guardfile
shutterbug-0.1.0 Guardfile