Sha256: 929ea91dd4c096acc52585ba6f08cce32c8d0cc01d97fc6f99b17ed3b0b37526

Contents?: true

Size: 779 Bytes

Versions: 23

Compression:

Stored size: 779 Bytes

Contents

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

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

guard 'ctags-bundler' do
  watch(%r{^(app|lib|spec/support)/.*\.rb$})  { ["app", "lib", "spec/support"] }
  watch('Gemfile.lock')
end

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

  # Rails example
  watch(%r{^lib/(.+)\.rb$})                           { |m| "spec/#{m[1]}_spec.rb" }
  watch(%r{^lib/(.*)(\.erb|\.haml)$})                 { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
  watch(%r{^spec/support/(.+)\.rb$})                  { "spec" }
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
shelr-0.16.3 Guardfile
shelr-0.16.2 Guardfile
shelr-0.16.1 Guardfile
shelr-0.16.0 Guardfile
shelr-0.15.2 Guardfile
shelr-0.15.1 Guardfile
shelr-0.15.0 Guardfile
shelr-0.14.1 Guardfile
shelr-0.14.0 Guardfile
shelr-0.13.3 Guardfile
shelr-0.13.2 Guardfile
shelr-0.13.1 Guardfile
shelr-0.13.0 Guardfile
shelr-0.12.9 Guardfile
shelr-0.12.8 Guardfile
shelr-0.12.7 Guardfile
shelr-0.12.6 Guardfile
shelr-0.12.5 Guardfile
shelr-0.12.4 Guardfile
shelr-0.12.3 Guardfile