Sha256: 12b0164332bc3e0fdd22767223636cf1540533ebc32600305b7566a9db753c8a

Contents?: true

Size: 369 Bytes

Versions: 13

Compression:

Stored size: 369 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/chap/(.+)\.rb$}) { |m| "spec/lib/chap_spec.rb" }
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
chap-0.1.3 Guardfile
chap-0.1.2 Guardfile
chap-0.1.1 Guardfile
chap-0.1.0 Guardfile
chap-0.0.9 Guardfile
chap-0.0.8 Guardfile
chap-0.0.7 Guardfile
chap-0.0.6 Guardfile
chap-0.0.5 Guardfile
chap-0.0.4 Guardfile
chap-0.0.3 Guardfile
chap-0.0.2 Guardfile
chap-0.0.1 Guardfile