method
template_exempt_from_layout?
v2.1.0 -
Show latest stable
- Class:
ActionController::Base
template_exempt_from_layout?(template_name = default_template_name)private
No documentation available.
# File actionpack/lib/action_controller/base.rb, line 1242
def template_exempt_from_layout?(template_name = default_template_name)
extension = @template && @template.finder.pick_template_extension(template_name)
name_with_extension = !template_name.include?('.') && extension ? "#{template_name}.#{extension}" : template_name
@@exempt_from_layout.any? { |ext| name_with_extension =~ ext }
end