Sha256: af3ece64c37e5f24eead7d1d787b40ed71a827d5598c3695331f904888a49acc

Contents?: true

Size: 587 Bytes

Versions: 13

Compression:

Stored size: 587 Bytes

Contents

guard 'cucumber' do
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})          { 'features' }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
end

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

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
appscrolls-0.11.2 Guardfile
appscrolls-0.11.1 Guardfile
appscrolls-0.11.0 Guardfile
appscrolls-0.10.1 Guardfile
appscrolls-0.10.0 Guardfile
appscrolls-0.9.0 Guardfile
appscrolls-0.8.4 Guardfile
appscrolls-0.8.3 Guardfile
appscrolls-0.8.2 Guardfile
appscrolls-0.8.1 Guardfile
appscrolls-0.8.0 Guardfile
appscrolls-0.7.1 Guardfile
appscrolls-0.7.0 Guardfile