Sha256: 349954b6d86c422dd7022893f903aae617857bd95fb9a49776141217891b73ba

Contents?: true

Size: 403 Bytes

Versions: 2

Compression:

Stored size: 403 Bytes

Contents

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

guard 'rspec', :version => 2, :cli => '-c -f doc' 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$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^spec/support/(.+)\.rb$})     { "spec" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubycas-client-2.3.9 Guardfile
rubycas-client-2.3.9.rc1 Guardfile