Sha256: f8bcc050571ea31d1c745e5da859e35c0dbf016a4de53859781ceb1aaef68d64

Contents?: true

Size: 389 Bytes

Versions: 11

Compression:

Stored size: 389 Bytes

Contents

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

guard 'rspec', version: 2 do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^spec/support/shared_versioning_examples.rb$}) { |_m| 'spec/' }
  watch('spec/spec_helper.rb')  { 'spec/' }
end

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

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
grape-entity-0.7.1 Guardfile
grape-entity-0.7.0 Guardfile
grape-entity-0.6.1 Guardfile
grape-entity-0.6.0 Guardfile
grape-entity-0.5.2 Guardfile
grape-entity-0.5.1 Guardfile
grape-entity-0.5.0 Guardfile
grape-entity-0.4.8 Guardfile
grape-entity-0.4.7 Guardfile
grape-entity-0.4.6 Guardfile
grape-entity-0.4.5 Guardfile