class ActiveTouch::Configuration
Attributes
async[RW]
ignored_attributes[RW]
queue[RW]
timestamp_attribute[RW]
touch_in_transaction[RW]
touch_updates[RW]
Public Class Methods
new()
click to toggle source
# File lib/active_touch/configuration.rb, line 18 def initialize @async = false @ignored_attributes = [:updated_at] @queue = 'default' @timestamp_attribute = :updated_at @touch_in_transaction = true @touch_updates = {} end