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

Version Path
cany-0.5.7 Guardfile
cany-0.5.6 Guardfile
cany-0.5.5 Guardfile
cany-0.5.4 Guardfile
cany-0.5.3 Guardfile
cany-0.5.2 Guardfile
cany-0.5.1 Guardfile
cany-0.5.0 Guardfile
cany-0.4.0 Guardfile
cany-0.3.0 Guardfile
cany-0.2.1 Guardfile
cany-0.2.0 Guardfile
cany-0.1.3 Guardfile
cany-0.1.2 Guardfile
cany-0.1.1 Guardfile
cany-0.1.0 Guardfile