aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGosha Arinich <me@goshakkk.name>2013-01-06 12:43:30 +0300
committerGosha Arinich <me@goshakkk.name>2013-01-06 12:43:30 +0300
commit7a439d23de4c7c187b0deda8e02138b3dccf0181 (patch)
tree267bcf762c5b03ba6d0a4211d4955a0028d8285c
parentbdffd1e884593adc40fb30bd7c05661a668fc897 (diff)
downloadrails-7a439d23de4c7c187b0deda8e02138b3dccf0181.tar.gz
rails-7a439d23de4c7c187b0deda8e02138b3dccf0181.tar.bz2
rails-7a439d23de4c7c187b0deda8e02138b3dccf0181.zip
delegate to :class rather than 'self.class'
-rw-r--r--actionpack/lib/abstract_controller/layouts.rb2
-rw-r--r--actionpack/lib/action_view/template/resolver.rb2
-rw-r--r--guides/source/active_support_core_extensions.md2
-rw-r--r--railties/lib/rails/engine.rb2
-rw-r--r--railties/lib/rails/railtie.rb2
5 files changed, 5 insertions, 5 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:
diff --git a/actionpack/lib/action_view/template/resolver.rb b/actionpack/lib/action_view/template/resolver.rb
index 8b23029bbc..1a1083bf00 100644
--- a/actionpack/lib/action_view/template/resolver.rb
+++ b/actionpack/lib/action_view/template/resolver.rb
@@ -118,7 +118,7 @@ module ActionView
private
- delegate :caching?, :to => "self.class"
+ delegate :caching?, to: :class
# This is what child classes implement. No defaults are needed
# because Resolver guarantees that the arguments are present and
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index dd589ff8e3..7f03363b23 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -920,7 +920,7 @@ When interpolated into a string, the `:to` option should become an expression th
delegate :logger, to: :Rails
# delegates to the receiver's class
-delegate :table_name, to: 'self.class'
+delegate :table_name, to: :class
```
WARNING: If the `:prefix` option is `true` this is less generic, see below.
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb
index 725295004f..3ba62039de 100644
--- a/railties/lib/rails/engine.rb
+++ b/railties/lib/rails/engine.rb
@@ -410,7 +410,7 @@ module Rails
self.isolated = false
delegate :middleware, :root, :paths, to: :config
- delegate :engine_name, :isolated?, to: "self.class"
+ delegate :engine_name, :isolated?, to: :class
def initialize
@_all_autoload_paths = nil
diff --git a/railties/lib/rails/railtie.rb b/railties/lib/rails/railtie.rb
index 5b454e7f20..9437e9c406 100644
--- a/railties/lib/rails/railtie.rb
+++ b/railties/lib/rails/railtie.rb
@@ -172,7 +172,7 @@ module Rails
end
end
- delegate :railtie_name, to: "self.class"
+ delegate :railtie_name, to: :class
def config
@config ||= Railtie::Configuration.new