Sha256: 313ce81742ea464f442b6a25af94a0cbcd1f4798255e5119ed019da2551c3cfa

Contents?: true

Size: 846 Bytes

Versions: 16

Compression:

Stored size: 846 Bytes

Contents

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


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

guard 'cucumber', notification: true, all_after_pass: false, cli: '--profile focus'  do
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})          { "features" }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
  watch(%r{^lib/.+\.rb$})                   { "features" }
  watch(%r{^cucumber.yml$})                 { "features" }
end

Version data entries

16 entries across 16 versions & 3 rubygems

Version Path
page-object-1.2.0 Guardfile
page-object-1.1.1 Guardfile
page_object-1.1.3 Guardfile
page_object-1.1.2 Guardfile
page_object-1.1.1 Guardfile
page-object-1.1.0 Guardfile
page-object-1.0.3 Guardfile
meeane-page-object-0.1.11 Guardfile
page-object-1.0.2 Guardfile
page-object-1.0.1 Guardfile
page-object-1.0 Guardfile
page-object-0.9.8 Guardfile
page-object-0.9.7 Guardfile
page-object-0.9.6 Guardfile
page-object-0.9.5 Guardfile
page-object-0.9.4 Guardfile