Parent

Class/Module Index [+]

Quicksearch

ActionView::DependencyTracker::ERBTracker

Constants

EXPLICIT_DEPENDENCY
RENDER_DEPENDENCY

Matches:

render partial: "comments/comment", collection: commentable.comments
render "comments/comments"
render 'comments/comments'
render('comments/comments')

render(@topic)         => render("topics/topic")
render(topics)         => render("topics/topic")
render(message.topics) => render("topics/topic")

Public Class Methods

call(name, template) click to toggle source
# File lib/action_view/dependency_tracker.rb, line 45
def self.call(name, template)
  new(name, template).dependencies
end
new(name, template) click to toggle source
# File lib/action_view/dependency_tracker.rb, line 49
def initialize(name, template)
  @name, @template = name, template
end

Public Instance Methods

dependencies() click to toggle source
# File lib/action_view/dependency_tracker.rb, line 53
def dependencies
  render_dependencies + explicit_dependencies
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.