method
resolve_path_directory
v7.0.0 -
Show latest stable
- Class:
ActionView::RenderParser
resolve_path_directory(path)private
No documentation available.
# File actionview/lib/action_view/render_parser.rb, line 26
def resolve_path_directory(path)
if path.include?("/")
path
else
"#{directory}/#{path}"
end
end