Sha256: e53121fe4eb8adbe8db58b6cb89499af54f8867c537ab2dc92e5708d35c2e6fe
Contents?: true
Size: 443 Bytes
Versions: 13
Compression:
Stored size: 443 Bytes
Contents
# A sample Guardfile # More info at http://github.com/guard/guard#readme guard 'rspec', :version => 2 do watch('^spec/(.*)_spec.rb') watch('^lib/(.*)\.rb') { |m| "spec/#{m[1]}_spec.rb" } watch('^spec/spec_helper.rb') { "spec" } end guard 'cucumber' do watch('^features/(.*).feature') watch('^features/support') { 'features' } watch('^features/step_definitions') { 'features' } end
Version data entries
13 entries across 13 versions & 1 rubygems