Sha256: 8957f9765d041e0eb58ff952982fa913c5eb871b66db6cd7c84d58b722fdbeaf

Contents?: true

Size: 504 Bytes

Versions: 5

Compression:

Stored size: 504 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" }

  # Turnip features and steps
  watch(%r{^spec/acceptance/(.+)\.feature$})
  watch(%r{^spec/acceptance/steps/(.+)_steps\.rb$})   { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'spec/acceptance' }
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
reloadlive-1.0.4 Guardfile
reloadlive-1.0.3 Guardfile
reloadlive-1.0.2 Guardfile
reloadlive-1.0.1 Guardfile
reloadlive-1.0.0 Guardfile