Sha256: 8ce12728abcd172366273b0966d081991904b2e4f685832ed143a4a12657eae3

Contents?: true

Size: 476 Bytes

Versions: 5

Compression:

Stored size: 476 Bytes

Contents

# frozen_string_literal: true
guard :rspec, cmd: 'bundle exec rspec', failed_mode: :focus do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^spec/factories/(.+)\.rb$}) { |m| "spec/kirico/models/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
end

guard :bundler do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

guard :rubocop, all_on_start: true, cli: ['-D', '--format', 'clang'] do
  watch(/.+\.rb$/)
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jpostcode-0.1.6 Guardfile
jpostcode-0.1.5 Guardfile
jpostcode-0.1.3 Guardfile
jpostcode-0.1.2 Guardfile
jpostcode-0.1.1 Guardfile