method

surreptitiously_touch

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: TouchLater
surreptitiously_touch(attr_names) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/touch_later.rb, line 54
      def surreptitiously_touch(attr_names)
        attr_names.each do |attr_name|
          _write_attribute(attr_name, @_touch_time)
          clear_attribute_change(attr_name)
        end
      end
Register or log in to add new notes.