module Cucumber::Glue::Dsl

def AfterAll(name: nil, &proc)

Use it for your final clean-ups
Registers a proc that will run after the execution of the scenarios.
def AfterAll(name: nil, &proc)
  Dsl.register_rb_hook('after_all', [], proc, name: name)
end