Sha256: 0fa234af7b13e5802b31f5eed9394912f7cce6c99272223aee8cd51470bef9e0

Contents?: true

Size: 242 Bytes

Versions: 4

Compression:

Stored size: 242 Bytes

Contents

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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tiny-rails-0.1.1 Guardfile
tiny-rails-0.1.0 Guardfile
tiny-rails-0.0.2 Guardfile
tiny-rails-0.0.1 Guardfile