Sha256: f5307c4760c4c6c92326afaf59b8257d5905f98bb36a986d7599c02409f71af9

Contents?: true

Size: 923 Bytes

Versions: 10

Compression:

Stored size: 923 Bytes

Contents

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

features_to_run = 'features'

guard 'rspec', :cli => '--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, :all_on_start => false, :cli => '--profile default'  do
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})          { features_to_run }
  watch(%r{^features/step_definitions/(.+)_steps\.rb$}) { |m| Dir[File.join("**/#{m[1]}.feature")][0] || 'features' }
  watch(%r{^lib/.+\.rb$})                   { features_to_run }
  watch(%r{^cucumber.yml$})                 { features_to_run }
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
page-object-0.6.9 Guardfile
page-object-0.6.8 Guardfile
page-object-0.6.7 Guardfile
page-object-0.6.6 Guardfile
page-object-0.6.5 Guardfile
page-object-0.6.4 Guardfile
page-object-0.6.3 Guardfile
page-object-0.6.2 Guardfile
page-object-0.6.1 Guardfile
page-object-0.6 Guardfile