Sha256: 2c36552c2e78abe7833a5ea07eb9f29e2e2d3f0ed74d22e6268e63f760001393

Contents?: true

Size: 516 Bytes

Versions: 1

Compression:

Stored size: 516 Bytes

Contents

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

guard 'rspec', :all_after_pass => true, :focus_on_failed => true, :all_on_start => true, :cli => "--drb" 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

guard 'spork', :test_unit => false do
  watch('Gemfile')
  watch('Gemfile.lock')
  watch('spec/spec_helper.rb') { :rspec }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
inline_encryption-0.0.6 Guardfile