Add a method to obtain the missing name from a NameError.
# File activesupport/lib/active_support/core_ext/name_error.rb, line 4
def missing_name
if /undefined local variable or method/ !~ message
$1 if /((::)?([A-Z]\w*)(::[A-Z]\w*)*)$/ =~ message
end
end