method
load!
rails latest stable - Class:
ActionView::Template::EagerPath
load!()public
No documentation available.
# 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