dry-initializer/Guardfile

8 lines
193 B
Ruby

# frozen_string_literal: true
guard :rspec, cmd: "bundle exec rspec" do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^spec/(spec_helper|support)}) { "spec" }
watch(%r{^lib/.+}) { "spec" }
end