Sha256: 4c76b394a09e348b712dffd4dca86c5f19d2fdc0deb7703cc4af80133d01c957

Contents?: true

Size: 374 Bytes

Versions: 3

Compression:

Stored size: 374 Bytes

Contents

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

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

guard :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

3 entries across 3 versions & 1 rubygems

Version Path
proxmox-0.0.3 Guardfile
proxmox-0.0.2 Guardfile
proxmox-0.0.1 Guardfile