Sha256: 9930b43d7f34545986f90d46520a7e18d80625038a7dbda7a5650d7060552db1
Contents?: true
Size: 544 Bytes
Versions: 12
Compression:
Stored size: 544 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'spork' do watch('Gemfile.lock') watch('spec/spec_helper.rb') { :rspec } end guard 'rspec', :cli => '--color --drb' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/fontcustom/(.+)\.rb$}) { |m| "spec/fontcustom/#{m[1]}_spec.rb" } watch('lib/fontcustom.rb') { 'spec/fontcustom/fontcustom_spec.rb' } watch('lib/fontcustom/core.rb') { 'spec/fontcustom/fontcustom_spec.rb' } watch('spec/spec_helper.rb') { 'spec' } end
Version data entries
12 entries across 12 versions & 2 rubygems