Sha256: 265765c21fdbb762a5529258c027801bf96cb6fd12b9b434f4418281a74e8e47
Contents?: true
Size: 409 Bytes
Versions: 17
Compression:
Stored size: 409 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :notification => true do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/moip-assinaturas/(.+)\.rb$}) { |m| "spec/moip-assinaturas/#{m[1]}_spec.rb" } watch('lib/moip-assinaturas/client.rb') { "spec" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
17 entries across 17 versions & 1 rubygems