method
namespaced_class_path
v3.1.0 -
Show latest stable
- Class:
Rails::Generators::NamedBase
namespaced_class_path()protected
No documentation available.
# File railties/lib/rails/generators/named_base.rb, line 87
def namespaced_class_path
@namespaced_class_path ||= begin
namespace_path = namespace.name.split("::").map {|m| m.underscore }
namespace_path + @class_path
end
end