Sha256: 30f64a407027307e4ef0b6046601b98912473cf256ba3911b973088e0c772949

Contents?: true

Size: 441 Bytes

Versions: 8

Compression:

Stored size: 441 Bytes

Contents

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

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

  ruby = dsl.ruby
  dsl.watch_spec_files_for(ruby.lib_files)
end

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
twitter-cache-0.2.5 Guardfile
twitter-cache-0.2.4 Guardfile
twitter-cache-0.2.3 Guardfile
twitter-cache-0.2.2 Guardfile
twitter-cache-0.2.1 Guardfile
twitter-cache-0.2.0 Guardfile
twitter-cache-0.1.1 Guardfile
twitter-cache-0.1.0 Guardfile