Sha256: 682d8c3d0cd7f4b2d6ebc6caaf4a36328a03d759428b2477764f74499ff6cf14

Contents?: true

Size: 316 Bytes

Versions: 8

Compression:

Stored size: 316 Bytes

Contents

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

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

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

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
nominatim-0.0.6 Guardfile
parallel588_nominatim-0.0.7 Guardfile
nominatim-0.0.5 Guardfile
nominatim-0.0.4 Guardfile
nominatim-0.0.3 Guardfile
nominatim-0.0.2 Guardfile
nominatim-0.0.1 Guardfile
georuby-ext-0.0.1 Guardfile