Sha256: 0e2c6f19366b6f4b15202df6394072983d0eae08fe0f019c98f9d51b57d3db28

Contents?: true

Size: 296 Bytes

Versions: 9

Compression:

Stored size: 296 Bytes

Contents

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

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

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

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
plucky-0.8.0 Guardfile
plucky-0.7.0 Guardfile
plucky-0.6.6 Guardfile
plucky-0.6.5 Guardfile
plucky-0.6.4 Guardfile
plucky-0.6.3 Guardfile
plucky-0.6.2 Guardfile
plucky-0.6.1 Guardfile
plucky-0.6.0 Guardfile