module Cucumber::Constantize

def constantize_name(constant, name)

def constantize_name(constant, name)
  if constant.const_defined?(name, false)
    constant.const_get(name, false)
  else
    constant.const_missing(name)
  end
end