method
type_cast
rails latest stable - Class:
ActionView::PathSet
type_cast(obj)public
No documentation available.
# File actionpack/lib/action_view/paths.rb, line 3
def self.type_cast(obj)
if obj.is_a?(String)
if Base.cache_template_loading?
Template::EagerPath.new(obj.to_s)
else
ReloadableTemplate::ReloadablePath.new(obj.to_s)
end
else
obj
end
end