module Cucumber::RbSupport::RbDsl

def Transform(regexp, &proc)

step definition.
provided proc. The return value of the proc is consequently yielded to the
the pattern contains captures then they will be yielded as arguments to the
matches the pattern passed as the first argument to Transform. Alternatively, if
Registers a proc that will be called with a step definition argument if it
def Transform(regexp, &proc)
  RbDsl.register_rb_transform(regexp, proc)
end