Sha256: 5839be375f47efdb6c1266794871742d278c25a6d6fb56ee9fba5b7121be8c71

Contents?: true

Size: 669 Bytes

Versions: 12

Compression:

Stored size: 669 Bytes

Contents

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

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

guard :cane do
  watch(%r{^lib/.+\.rb$})
end

guard 'rspec',
  all_on_start: true,
  keep_failed: true,
  rvm: ["1.9.3-p392@queuel"] do
  # would like to add "jruby-1.7.3@queuel", "rbx-head@queuel"
  watch(%r{^spec/.+\.rb$})                  { "spec" }
  watch(%r{^lib/queuel/base/(.+)\.rb$})     { |m| ["spec/lib/queuel/iron_mq/#{m[1]}_spec.rb", "spec/lib/queuel/null/#{m[1]}_spec.rb"] }
  watch(%r{^lib/(.+)\.rb$})                 { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')              { "spec" }
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
queuel-0.4.8 Guardfile
queuel-0.4.6 Guardfile
queuel-0.4.5 Guardfile
queuel-0.4.4 Guardfile
queuel-0.4.3 Guardfile
queuel-0.4.2 Guardfile
queuel-0.4.1 Guardfile
queuel-0.4.0 Guardfile
queuel-0.3.1 Guardfile
queuel-0.3.0 Guardfile
queuel-0.2.0 Guardfile
queuel-0.1.0 Guardfile