Sha256: 78585ae9e4ab1e6737c60c293e3e3b7661127bb6ce1284efdc54e6cfaf6adf5c
Contents?: true
Size: 536 Bytes
Versions: 8
Compression:
Stored size: 536 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/fontrobot/(.+)\.rb$}) { |m| "spec/fontrobot/#{m[1]}_spec.rb" } watch('lib/fontrobot.rb') { 'spec/fontrobot/fontrobot_spec.rb' } watch('lib/fontrobot/core.rb') { 'spec/fontrobot/fontrobot_spec.rb' } watch('spec/spec_helper.rb') { 'spec' } end
Version data entries
8 entries across 8 versions & 1 rubygems