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

Version Path
exceptionally_beautiful-0.1.5 Guardfile
exceptionally_beautiful-0.1.4 Guardfile
exceptionally_beautiful-0.1.3 Guardfile
exceptionally_beautiful-0.1.2 Guardfile
exceptionally_beautiful-0.1.1 Guardfile
exceptionally_beautiful-0.1.0 Guardfile
exceptionally_beautiful-0.0.1 Guardfile