method

resolve_path_directory

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: RenderParser
resolve_path_directory(path) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionview/lib/action_view/render_parser.rb, line 26
      def resolve_path_directory(path)
        if path.include?("/")
          path
        else
          "#{directory}/#{path}"
        end
      end
Register or log in to add new notes.