Sha256: 6a593f233c4f262f61e7711c125392eab02e78b0fd8f86c581a695d0707cf174

Contents?: true

Size: 452 Bytes

Versions: 2

Compression:

Stored size: 452 Bytes

Contents

guard 'spork', :rspec_env => { 'RAILS_ENV' => 'test' } do
  watch('spec/spec_helper.rb') { :rspec }
end

guard 'rspec', :cli => "--color --drb", :keep_failed => true, :all_after_pass => true, :focus_on_failed => true do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^app/controllers/(.+)\.rb$})     { |m| "spec/controllers/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
secure_headers-0.1.1 Guardfile
secure_headers-0.1.0 Guardfile