Sha256: 842f6c3b5dd99e65153cec9ebbb102d90502ade3b6c2b1ae197b300426ea8fa9

Contents?: true

Size: 334 Bytes

Versions: 1

Compression:

Stored size: 334 Bytes

Contents

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

guard :rspec, all_on_start: true, cli: '--format nested --debug --color' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
  watch('lib/applix.rb')  { "spec" }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
applix-0.4.11 Guardfile