Flowdock
method

partial_path

Importance_0
v3.1.0 - Show latest stable - 0 notes - Class: PartialRenderer
partial_path(object = @object) private

No documentation

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

Hide source
# File actionpack/lib/action_view/renderer/partial_renderer.rb, line 357
    def partial_path(object = @object)
      @partial_names[object.class.name] ||= begin
        object = object.to_model if object.respond_to?(:to_model)
        object.class.model_name.partial_path.dup.tap do |partial|
          path = @lookup_context.prefixes.first
          merge_path_into_partial(path, partial)
        end
      end
    end
Register or log in to add new notes.