aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-03-06 17:49:39 +0100
committerXavier Noria <fxn@hashref.com>2011-03-06 17:49:39 +0100
commit6ce844a3c1d9c1de4ae54cbe73e0dbd0acbe688a (patch)
treea6d7804bfaff6a51da4020290baa82440ab76f49 /activesupport/lib
parent8bbc5b4f5fd0ccc0b496cbdb2abb07d24b84aaba (diff)
downloadrails-6ce844a3c1d9c1de4ae54cbe73e0dbd0acbe688a.tar.gz
rails-6ce844a3c1d9c1de4ae54cbe73e0dbd0acbe688a.tar.bz2
rails-6ce844a3c1d9c1de4ae54cbe73e0dbd0acbe688a.zip
removes Examples headers introduced in 9b96de6
Example headers are discouraged in the API guidelines. Code just flows with the text. They may be good in places where there's a lot of stuff and structure may add clarity
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/configurable.rb14
1 files changed, 4 insertions, 10 deletions
diff --git a/activesupport/lib/active_support/configurable.rb b/activesupport/lib/active_support/configurable.rb
index 7bac3dbc91..8c56a21ef7 100644
--- a/activesupport/lib/active_support/configurable.rb
+++ b/activesupport/lib/active_support/configurable.rb
@@ -41,9 +41,6 @@ module ActiveSupport
# Allows you to add shortcut so that you don't have to refer to attribute through config.
# Also look at the example for config to contrast.
#
- #
- # ==== Example
- #
# class User
# include ActiveSupport::Configurable
# config_accessor :allowed_access
@@ -67,24 +64,21 @@ module ActiveSupport
end
# Reads and writes attributes from a configuration <tt>OrderedHash</tt>.
- #
#
- # ==== Example
+ # require 'active_support/configurable'
#
- # require 'active_support/configurable'
- #
# class User
# include ActiveSupport::Configurable
- # end
+ # end
#
# user = User.new
- #
+ #
# user.config.allowed_access = true
# user.config.level = 1
#
# user.config.allowed_access # => true
# user.config.level # => 1
- #
+ #
def config
@_config ||= self.class.config.inheritable_copy
end