Sha256: 827cdec30a73be416be189f216266b59ced9508b42ead21540783fc93e5f076a
Contents?: true
Size: 374 Bytes
Versions: 3
Compression:
Stored size: 374 Bytes
Contents
# frozen_string_literal: true # More info at https://github.com/guard/guard#readme guard "rspec" do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)/(.+)\.rb$}) { |m| "spec/#{m[1]}/#{m[2]}_spec.rb" } watch("spec/spec_helper.rb") { "spec" } watch(%r{^spec/support/.+\.rb$}) { "spec" } end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
imap_guard-2.0.1 | Guardfile |
imap_guard-2.0.0 | Guardfile |
imap_guard-1.2.0 | Guardfile |