Sha256: ed98d882f93b4f6c38c0579504fe727728bb1b022b4bc9445c9e09f0d47bc80f

Contents?: true

Size: 253 Bytes

Versions: 6

Compression:

Stored size: 253 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/color_parser/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')           { "spec" }
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
color_parser-1.0.6 Guardfile
color_parser-1.0.5 Guardfile
color_parser-1.0.4 Guardfile
color_parser-1.0.2 Guardfile
color_parser-1.0.1 Guardfile
color_parser-1.0.0 Guardfile