method
build_path
v3.0.9 -
Show latest stable
- Class:
ActionView::PathResolver
build_path(name, prefix, partial, details)private
No documentation available.
# File actionpack/lib/action_view/template/resolver.rb, line 58
def build_path(name, prefix, partial, details)
path = ""
path << "#{prefix}/" unless prefix.empty?
path << (partial ? "_#{name}" : name)
path
end