Sha256: 1f656bbc98ad0fa7f14d43761f75b2f33f01b18062644579ec4ba5dd9c219635

Contents?: true

Size: 533 Bytes

Versions: 5

Compression:

Stored size: 533 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

guard 'rspec', :version => 2, :cli => '--color --format doc' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
  watch(%r{^spec/support/(.+)\.rb$})  { "spec" }
end


guard 'bundler' do
  watch('Gemfile')
  # Uncomment next line if Gemfile contain `gemspec' command
  # watch(/^.+\.gemspec/)
end

guard 'yard' do
  watch(%r{lib/.+\.rb})
  watch('README.markdown')
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wikilink-converter-0.2.4 Guardfile
wikilink-converter-0.2.3 Guardfile
wikilink-converter-0.2.2 Guardfile
wikilink-converter-0.2.1 Guardfile
wikilink-converter-0.1.0 Guardfile