Sha256: 57948634c44db7addc28d14599e1cd6c5584c4c01f7510448fbcd757efb2ad37
Contents?: true
Size: 622 Bytes
Versions: 16
Compression:
Stored size: 622 Bytes
Contents
# # Guardfile -- for RSpec # guard 'rspec', all_after_pass: true, all_on_start: true do watch(%r{^spec/(.+)_spec\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch(%r{^spec/support/(.+)\.rb$}) { "spec" } watch('spec/spec_helper.rb') { "spec" } end guard 'yard' do watch(%r{lib/.+\.rb}) end # load Guardfile.local local_guardfile = File.dirname(__FILE__) + "/Guardfile.local" if File.file?(local_guardfile) self.instance_eval(Bundler.read_file(local_guardfile)) end
Version data entries
16 entries across 16 versions & 1 rubygems