Sha256: 0185b2e36dca8b64895b0a1fb992592e9f11bc91dd8e81ca7725ef33fbf474b0

Contents?: true

Size: 392 Bytes

Versions: 24

Compression:

Stored size: 392 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

24 entries across 24 versions & 5 rubygems

Version Path
fragrant-0.0.5 vendor/bundle/ruby/1.9.1/gems/grape-0.2.2/Guardfile
grape-0.2.2 Guardfile
grape-0.2.1 Guardfile
grape-0.2.0 Guardfile