aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-12 23:51:16 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2013-04-12 23:51:47 -0500
commit8f199d8e01afa3968bfca1dd30ea58b3c1090402 (patch)
treef6610cb2ea9fa7bff2e86d6f352a65d541e3b864 /activerecord
parent9cb12265d8a08c219c82e4e4d305a6d60b0af35c (diff)
downloadrails-8f199d8e01afa3968bfca1dd30ea58b3c1090402.tar.gz
rails-8f199d8e01afa3968bfca1dd30ea58b3c1090402.tar.bz2
rails-8f199d8e01afa3968bfca1dd30ea58b3c1090402.zip
fix :nodoc: mark on AR::AttributeMethods::Serialization [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/attribute_methods/serialization.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/serialization.rb b/activerecord/lib/active_record/attribute_methods/serialization.rb
index ae49fd4b88..7f1ebab4cd 100644
--- a/activerecord/lib/active_record/attribute_methods/serialization.rb
+++ b/activerecord/lib/active_record/attribute_methods/serialization.rb
@@ -93,10 +93,10 @@ module ActiveRecord
# This is only added to the model when serialize is called, which
# ensures we do not make things slower when serialization is not used.
- module Behavior #:nodoc:
+ module Behavior # :nodoc:
extend ActiveSupport::Concern
- module ClassMethods
+ module ClassMethods # :nodoc:
def initialize_attributes(attributes, options = {})
serialized = (options.delete(:serialized) { true }) ? :serialized : :unserialized
super(attributes, options)