Sha256: d2adb09f5ba0f5a3fdffdbfdb85722523fffacfe8556a2cf124f2f488b3c9f15

Contents?: true

Size: 543 Bytes

Versions: 14

Compression:

Stored size: 543 Bytes

Contents

# frozen_string_literal: true

guard :rspec, cmd: 'bundle exec rspec' do
  require 'guard/rspec/dsl'
  dsl = Guard::RSpec::Dsl.new(self)

  # Feel free to open issues for suggestions and improvements

  # RSpec files
  rspec = dsl.rspec
  watch(rspec.spec_helper) { rspec.spec_dir }
  watch(rspec.spec_support) { rspec.spec_dir }
  watch(rspec.spec_files)

  # Ruby files
  ruby = dsl.ruby
  dsl.watch_spec_files_for(ruby.lib_files)
end

guard :rubocop do
  watch(/.+\.rb$/)
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
junk_drawer-2.1.2 Guardfile
junk_drawer-2.1.1 Guardfile
junk_drawer-2.1.0 Guardfile
junk_drawer-2.0.0 Guardfile
junk_drawer-1.8.0 Guardfile
junk_drawer-1.7.0 Guardfile
junk_drawer-1.6.3 Guardfile
junk_drawer-1.6.2 Guardfile
junk_drawer-1.6.1 Guardfile
junk_drawer-1.6.0 Guardfile
junk_drawer-1.5.0 Guardfile
junk_drawer-1.4.0 Guardfile
junk_drawer-1.3.0 Guardfile
junk_drawer-1.2.1 Guardfile