Sha256: e6e0945c48a9ddf86951d15213ecc64a2eac96b73d09074f6c752b489ceef6fd

Contents?: true

Size: 403 Bytes

Versions: 14

Compression:

Stored size: 403 Bytes

Contents

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

guard 'rspec', cmd: 'bundle exec rspec' 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

14 entries across 14 versions & 1 rubygems

Version Path
grape-appsignal-0.4.1 Guardfile
grape-appsignal-0.4.0 Guardfile
grape-appsignal-0.3.1 Guardfile
grape-appsignal-0.2.2 Guardfile
grape-appsignal-0.2.1 Guardfile
grape-appsignal-0.2.0 Guardfile
grape-appsignal-0.1.2 Guardfile
grape-appsignal-0.1.1 Guardfile
grape-appsignal-0.1.0 Guardfile
grape-appsignal-0.0.5 Guardfile
grape-appsignal-0.0.4 Guardfile
grape-appsignal-0.0.3 Guardfile
grape-appsignal-0.0.2 Guardfile
grape-appsignal-0.0.1 Guardfile