Sha256: 6acf6b233946571a4d30ba00eaf45ce1c284f51cf4b288c1dbf49196483be24e

Contents?: true

Size: 367 Bytes

Versions: 4

Compression:

Stored size: 367 Bytes

Contents

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

guard 'rspec', :version => 2 do
  watch('^spec/(.*)_spec.rb')
  watch('^lib/vcr.rb')                                { "spec/vcr_spec.rb" }
  watch('^lib/vcr/(.*)\.rb')                          { |m| "spec/#{m[1]}_spec.rb" }
  watch('^spec/spec_helper.rb')                       { "spec" }
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vcr-1.3.3 Guardfile
vcr-1.3.2 Guardfile
vcr-1.3.1 Guardfile
vcr-1.3.0 Guardfile