Sha256: 5962b9ec828e071a20ab6c369a96b425fe935cb70993026622376755781577c7
Contents?: true
Size: 356 Bytes
Versions: 21
Compression:
Stored size: 356 Bytes
Contents
# frozen_string_literal: true # More info at https://github.com/guard/guard#readme guard 'bundler' do watch('Gemfile') watch(/^.+\.gemspec/) end guard :rspec, all_after_pass: true, all_on_start: true do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { 'spec' } end
Version data entries
21 entries across 21 versions & 1 rubygems