class method
self.new
Ruby on Rails 2.2.3
Since v2.2.3Signature
self.new(template_path, load_paths = [])
No documentation comment.
Parameters
-
template_pathreq -
load_pathsopt = []
Source
# File actionpack/lib/action_view/template.rb, line 12
def initialize(template_path, load_paths = [])
template_path = template_path.dup
@base_path, @name, @format, @extension = split(template_path)
@base_path.to_s.gsub!(/\/$/, '') # Push to split method
@load_path, @filename = find_full_path(template_path, load_paths)
# Extend with partial super powers
extend RenderablePartial if @name =~ /^_/
end
Defined in actionpack/lib/action_view/template.rb line 12
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionView::Template