Sha256: c799ac889fb4d96ba8d90e7feb5487f9c9acacb2bddd24ddcc64e926d4000635

Contents?: true

Size: 388 Bytes

Versions: 4

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

4 entries across 4 versions & 2 rubygems

Version Path
ruby-proxmox-1.0.2 Guardfile
ruby-proxmox-1.0.1 Guardfile
ruby-proxmox-1.0.0 Guardfile
proxmox-0.0.5 Guardfile