diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-09-08 13:23:52 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-09-08 13:23:52 -0500 |
commit | decf4a164d2b00f0be3fc8331df0f0cbe16e7e94 (patch) | |
tree | 00a16985ce16d74fd22aa46a3bd432d6b0eb67a9 | |
parent | 56652a6bf589e3f92f7faaa2fec89ef70d740d1b (diff) | |
download | rails-decf4a164d2b00f0be3fc8331df0f0cbe16e7e94.tar.gz rails-decf4a164d2b00f0be3fc8331df0f0cbe16e7e94.tar.bz2 rails-decf4a164d2b00f0be3fc8331df0f0cbe16e7e94.zip |
add :nodoc: to AR::Store::IndifferentCoder [ci skip]
-rw-r--r-- | activerecord/lib/active_record/store.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/store.rb b/activerecord/lib/active_record/store.rb index b4013ecc1e..c13fd01654 100644 --- a/activerecord/lib/active_record/store.rb +++ b/activerecord/lib/active_record/store.rb @@ -81,7 +81,7 @@ module ActiveRecord attribute end - class IndifferentCoder + class IndifferentCoder # :nodoc: def initialize(coder_or_class_name) @coder = if coder_or_class_name.respond_to?(:load) && coder_or_class_name.respond_to?(:dump) |