Sha256: 2e2afd6bfbee8a663a3a4ee6da757790018abe823d0331f2044fd38eb0ebe933

Contents?: true

Size: 295 Bytes

Versions: 7

Compression:

Stored size: 295 Bytes

Contents

#!/usr/bin/env ruby
#^syntax detection

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

guard 'rspec' do
  watch(%r{^compositor\.gemspec}) { "spec"}
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$}) { "spec" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
compositor-2.0.1 Guardfile
compositor-2.0.0 Guardfile
compositor-1.0.1 Guardfile
compositor-1.0.0 Guardfile
compositor-0.1.4 Guardfile
compositor-0.1.3 Guardfile
compositor-0.1.1 Guardfile