Sha256: d144ed629dc78fcfe0077f647a15e1dfdbf880cf2c352d67ac4aa58fe272bd39
Contents?: true
Size: 636 Bytes
Versions: 2
Compression:
Stored size: 636 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme # guard 'spork', :rspec_env => { 'RAILS_ENV' => 'test' } do # watch('spec/dummy/config/application.rb') # watch('spec/dummy/config/environment.rb') # watch('spec/dummy/config/environments/test.rb') # watch(%r{^spec/dummy/config/initializers/.+\.rb$}) # watch('Gemfile.lock') # watch('spec/dummy/spec/spec_helper.rb') { :rspec } # end guard 'rspec', :cmd => 'rspec --color --drb --format d' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| puts m; "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
bitfinex_api-0.0.1 | Guardfile |
bitfinex-0.0.1 | Guardfile |