instance method
load!
Ruby on Rails 2.3.18
Since v2.3.18 Last seen in v2.3.18Signature
load!()
No documentation comment.
Source
# File actionpack/lib/action_view/template.rb, line 65
def load!
return if @loaded
@paths = {}
templates_in_path do |template|
template.load!
template.accessible_paths.each do |path|
@paths[path] = template
end
end
@paths.freeze
@loaded = true
end
Defined in actionpack/lib/action_view/template.rb line 65
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Template::EagerPath