Sha256: 2903b0b1e3d2bce2891aeb56db14c24bdcd7cfd1d1d70f6d94b4502cc8843db7
Contents?: true
Size: 514 Bytes
Versions: 7
Compression:
Stored size: 514 Bytes
Contents
guard 'rspec', :cmd => 'bundle exec rspec --colour', :all_on_start => false, :all_after_pass => false do watch('spec/spec_helper.rb') { "spec" } watch(%r{^spec/.+_spec\.rb}) watch(%r{^app/(.+)\.rb}) { |m| "spec/app/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb}) { |m| "spec/lib/#{m[1]}_spec.rb" } end guard :rubocop do watch(%r{.+\.gemspec$}) watch(%r{.+\.rb$}) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end
Version data entries
7 entries across 7 versions & 1 rubygems