diff options
author | Tony Miller <mcfiredrill@gmail.com> | 2015-09-17 12:42:03 +0900 |
---|---|---|
committer | Tony Miller <mcfiredrill@gmail.com> | 2015-09-19 12:23:40 +0900 |
commit | e1de8bcdac124eb9ad8a29e430dbc234abdfe456 (patch) | |
tree | 97540b0eb2e0a7ba883d486c732910ba6f33437c /activerecord/lib | |
parent | 94e8b3ac75df5b964e820a7244d3383e193d5898 (diff) | |
download | rails-e1de8bcdac124eb9ad8a29e430dbc234abdfe456.tar.gz rails-e1de8bcdac124eb9ad8a29e430dbc234abdfe456.tar.bz2 rails-e1de8bcdac124eb9ad8a29e430dbc234abdfe456.zip |
nodoc raw_write_attribute
Is this supposed to be public API? If so, I can document it instead.
:memo:
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/write.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/attribute_methods/write.rb b/activerecord/lib/active_record/attribute_methods/write.rb index 07d5e7d38e..bbf2a51a0e 100644 --- a/activerecord/lib/active_record/attribute_methods/write.rb +++ b/activerecord/lib/active_record/attribute_methods/write.rb @@ -45,7 +45,7 @@ module ActiveRecord write_attribute_with_type_cast(attr_name, value, true) end - def raw_write_attribute(attr_name, value) + def raw_write_attribute(attr_name, value) # :nodoc: write_attribute_with_type_cast(attr_name, value, false) end |