Sha256: 4db11b2860c5ce2bcee7ee85e92bc1752a83156cc360f5af3a7c1e93719c9787
Contents?: true
Size: 524 Bytes
Versions: 1
Compression:
Stored size: 524 Bytes
Contents
# frozen_string_literal: true guard :bundler do watch('Gemfile') watch('super-identity.gemspec') end 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 do watch(/.+\.rb$/) watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
super-identity-0.1.0 | Guardfile |