aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/configurable.rb
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2015-01-20 21:03:27 +0900
committerAkira Matsuda <ronnie@dio.jp>2015-02-06 01:12:07 +0900
commitc2bfe6cbc8cab9caeab418472a1e12a3ed3e75e2 (patch)
tree16a67a976f0f9c6dc1378994f92aa9f4d69f6dba /activesupport/lib/active_support/configurable.rb
parent63f959d21b6b60fbb1571115fa9f54e64b503a79 (diff)
downloadrails-c2bfe6cbc8cab9caeab418472a1e12a3ed3e75e2.tar.gz
rails-c2bfe6cbc8cab9caeab418472a1e12a3ed3e75e2.tar.bz2
rails-c2bfe6cbc8cab9caeab418472a1e12a3ed3e75e2.zip
Privatize config_accessor as with attr_accessor
Diffstat (limited to 'activesupport/lib/active_support/configurable.rb')
-rw-r--r--activesupport/lib/active_support/configurable.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/configurable.rb b/activesupport/lib/active_support/configurable.rb
index 3dd44e32d8..8256c325af 100644
--- a/activesupport/lib/active_support/configurable.rb
+++ b/activesupport/lib/active_support/configurable.rb
@@ -122,6 +122,7 @@ module ActiveSupport
send("#{name}=", yield) if block_given?
end
end
+ private :config_accessor
end
# Reads and writes attributes from a configuration <tt>OrderedHash</tt>.