Sha256: 9cdac6f934416698db6db758d93830d2736b5e18613dd1ab5c4226d5ced92356

Contents?: true

Size: 388 Bytes

Versions: 1

Compression:

Stored size: 388 Bytes

Contents

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

guard 'bundler' do
  watch('Gemfile')
  watch(/^.+\.gemspec/)
end

guard :rspec, cmd: 'rspec' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { "spec" }
end

group :docs do
  guard 'yard' do
    watch(%r{lib/.+\.rb})
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
proxmox-0.0.4 Guardfile