method

build_path

rails latest stable - Class: ActionView::PathResolver

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.0.9) is shown here.

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