# File lib/cucumber/hooks.rb, line 81 def initialize(location) @location = location end
# File lib/cucumber/hooks.rb, line 93 def describe_to(visitor, *args) visitor.after_step_hook(self, *args) end
# File lib/cucumber/hooks.rb, line 89 def match_locations?(queried_locations) queried_locations.any? { |other_location| other_location.match?(location) } end
# File lib/cucumber/hooks.rb, line 85 def name "AfterStep hook" end