Method: ActiveCleaner#write_attribute_after_cleaning
- Defined in:
- lib/active_cleaner.rb
#write_attribute_after_cleaning(attr_name, value) ⇒ Object
Method used by the cleaners to write the value of an attribute.
81 82 83 |
# File 'lib/active_cleaner.rb', line 81 def write_attribute_after_cleaning(attr_name, value) send(:"#{attr_name}=", value) end |