method
type_cast
v2.2.1 -
Show 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.warn_cache_misses && defined?(Rails) && Rails.initialized?
Base.logger.debug "[PERFORMANCE] Processing view path during a " +
"request. This an expense disk operation that should be done at " +
"boot. You can manually process this view path with " +
"ActionView::Base.process_view_paths(#{obj.inspect}) and set it " +
"as your view path"
end
Path.new(obj)
else
obj
end
end