Sha256: 316b07475bd9e2cb1e68876a8e38db90d4feaedafd046813792ee5804dd5256e
Contents?: true
Size: 453 Bytes
Versions: 7
Compression:
Stored size: 453 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/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/support/(.+)\.rb$}) { "spec" } watch('config/routes.rb') { "spec/routing" } watch('app/controllers/application_controller.rb') { "spec/controllers" } end
Version data entries
7 entries across 7 versions & 1 rubygems
Version | Path |
---|---|
poms-0.0.10 | Guardfile |
poms-0.0.9 | Guardfile |
poms-0.0.8 | Guardfile |
poms-0.0.6 | Guardfile |
poms-0.0.5 | Guardfile |
poms-0.0.4 | Guardfile |
poms-0.0.3 | Guardfile |