diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2013-01-06 05:00:54 -0800 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2013-01-06 05:00:54 -0800 |
commit | f18078475efce9eeef27d64044058539517b0260 (patch) | |
tree | 9c6245a12f9dd4ed8b3f5e018fc9a0f3b415164c /actionpack/lib/abstract_controller | |
parent | 7843e009d2bc8d088437ff6f43e47ba113de9dee (diff) | |
parent | 7a439d23de4c7c187b0deda8e02138b3dccf0181 (diff) | |
download | rails-f18078475efce9eeef27d64044058539517b0260.tar.gz rails-f18078475efce9eeef27d64044058539517b0260.tar.bz2 rails-f18078475efce9eeef27d64044058539517b0260.zip |
Merge pull request #8777 from goshakkk/delegate-class
Delegate to :class rather than 'self.class'
Diffstat (limited to 'actionpack/lib/abstract_controller')
-rw-r--r-- | actionpack/lib/abstract_controller/layouts.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/layouts.rb b/actionpack/lib/abstract_controller/layouts.rb index 73799e8085..91864f2a35 100644 --- a/actionpack/lib/abstract_controller/layouts.rb +++ b/actionpack/lib/abstract_controller/layouts.rb @@ -209,7 +209,7 @@ module AbstractController _write_layout_method end - delegate :_layout_conditions, :to => "self.class" + delegate :_layout_conditions, to: :class module ClassMethods def inherited(klass) # :nodoc: |