Sha256: 93cd43ad62f900712c680f14a0aaa1dbe78c8261e8c325e6485c641ce411c9c7

Contents?: true

Size: 331 Bytes

Versions: 3

Compression:

Stored size: 331 Bytes

Contents

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

guard 'rspec', 
  :version => 2,
  :all_after_pass => false,
  :all_on_start => false,
  :keep_failed => false do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rack_gyazo-0.1.2 Guardfile
rack_gyazo-0.1.1 Guardfile
rack_gyazo-0.1.0 Guardfile