brundage/thermostat

View on GitHub
Guardfile

Summary

Maintainability
Test Coverage
guard :rspec, all_after_pass: false,
              cmd: 'rspec' do
  watch( 'spec/spec_helper.rb' ) { "spec" }
  watch( %r{^lib/(.+)\.rb$} ) { |m| "spec/cases/#{m[1]}_spec.rb" }
  watch( %r{^spec/cases/.+_spec\.rb$} )
end