Flowdock
method

inherited_with_layout

Importance_0
v1.1.6 - Show latest stable - 0 notes - Class: ActionController::Layout::ClassMethods
inherited_with_layout(child) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_controller/layout.rb, line 183
        def inherited_with_layout(child)
          inherited_without_layout(child)
          child.send :include, Reloadable
          layout_match = child.name.underscore.sub(/_controller$/, '').sub(/^controllers\//, '')
          child.layout(layout_match) unless layout_list.grep(%r{layouts/#{layout_match}\.[a-z][0-9a-z]*$}).empty?
        end
Register or log in to add new notes.