method
resolve_path_directory
rails 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