Sha256: 186771134a0ff9f957a120044a716122367dff62df09439b7edb676c658c6e33
Contents?: true
Size: 526 Bytes
Versions: 2
Compression:
Stored size: 526 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'spork', :rspec_env => { 'RAILS_ENV' => 'test' } do watch('Gemfile') watch('Guardfile') watch('Gemfile.lock') watch('lib/stair_master.rb') watch('spec/spec_helper.rb') { :rspec } end guard :rspec, :all_after_pass => false, :all_on_start => false, :cli => '--drb' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^app/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/digital_opera/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stair_master-0.0.3 | Guardfile |
stair_master-0.0.2 | Guardfile |