Sha256: 7ccc1267a32e626f895496ada6c7f98e6a24cf6d5c5b9f4cb8ba2f572bb3caf8
Contents?: true
Size: 645 Bytes
Versions: 3
Compression:
Stored size: 645 Bytes
Contents
# guard 'cucumber' do # watch(%r{^features/.+\.feature$}) # watch(%r{^features/support/.+$}) { 'features' } # watch(%r{^features/step_definitions/(.+)_steps\.rb$}) do |m| # Dir[File.join("**/#{m[1]}.feature")][0] || 'features' # end # end guard :minitest, all_after_pass: true, focus_on_failed: true, env: { 'no_simplecov' => true } do watch(%r{^test/(.*)_test\.rb}) watch(%r{^lib/(.+)\.rb}) do |m| "test/lib/#{m[1]}_test.rb" end watch(%r{^test/test_helper\.rb}) { 'test' } end guard :bundler do watch('Gemfile') watch(/^.+\.gemspec/) end guard 'yard' do watch(%r{docs/.+\.md}) watch(%r{lib/.+\.rb}) end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vedeu-0.3.2 | Guardfile |
vedeu-0.3.1 | Guardfile |
vedeu-0.3.0 | Guardfile |