Sha256: 0369c2e37276975de88459ee70dddd6df52eeb7ca557f2197479d2611209710d
Contents?: true
Size: 430 Bytes
Versions: 4
Compression:
Stored size: 430 Bytes
Contents
# A sample Guardfile # More info at https://github.com/guard/guard#readme guard 'rspec', :version => 2, :cli => "--color --format Fuubar --profile", keep_failed: false, all_on_start: false, all_after_pass: false do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/active_export/(.+)\.rb$}) { |m| "spec/active_export/#{m[1]}_spec.rb" } watch('lib/active_export.rb') { "spec" } watch('spec/spec_helper.rb') { "spec" } end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
active_export-0.4.0 | Guardfile |
active_export-0.3.0 | Guardfile |
active_export-0.2.0 | Guardfile |
active_export-0.1.0 | Guardfile |