method
new
new(source, identifier, handler, details)
public
Hide source
# File actionpack/lib/action_view/template.rb, line 112 def initialize(source, identifier, handler, details) @source = source @identifier = identifier @handler = handler @original_encoding = nil @method_names = {} format = details[:format] || :html @formats = Array.wrap(format).map { |f| f.is_a?(Mime::Type) ? f.ref : f } @virtual_path = details[:virtual_path].try(:sub, ".#{format}", "") end