Sha256: f37a11b3f59fbb1877d96c3fac665483fe1a8827e44778869c8bacd6a5c1d0ff

Contents?: true

Size: 374 Bytes

Versions: 2

Compression:

Stored size: 374 Bytes

Contents

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

guard 'rspec', all_after_pass: true, failed_mode: :focus, all_on_start: true, cmd: '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" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
inline_encryption-2.0.1 Guardfile
inline_encryption-2.0.0 Guardfile