Sha256: ba4289dddafe57c6d80faae54d22435c3690ce28a087ecaa5c9855110ca71003

Contents?: true

Size: 304 Bytes

Versions: 2

Compression:

Stored size: 304 Bytes

Contents

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
applix-0.4.10 Guardfile
applix-0.4.9 Guardfile