Sha256: c359df1f7a8c10b1500a83c6aa30f421c882808535ce5034598835ea1cae16a0

Contents?: true

Size: 540 Bytes

Versions: 9

Compression:

Stored size: 540 Bytes

Contents

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, cmd: 'bundle exec rubocop' do
  watch(/.+\.rb$/)
  watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
activerecord-shard_for-0.7.0 Guardfile
activerecord-shard_for-0.6.1 Guardfile
activerecord-shard_for-0.6.0 Guardfile
activerecord-shard_for-0.5.0 Guardfile
activerecord-shard_for-0.4.1 Guardfile
activerecord-shard_for-0.4.0 Guardfile
activerecord-shard_for-0.3.0 Guardfile
activerecord-shard_for-0.2.1 Guardfile
activerecord-shard_for-0.2.0 Guardfile