Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gregoriokusowski
Created August 26, 2011 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gregoriokusowski/1174335 to your computer and use it in GitHub Desktop.
Save gregoriokusowski/1174335 to your computer and use it in GitHub Desktop.
Avoids the AR default timestamp records.
# how to use(and abuse) it:
# chronno_trigger_ftw! { my_model_instance.update_attributes(:updated_at => my_custom_date) }
def chronno_trigger_ftw!(&block)
Customer.record_timestamps = false
yield
Customer.record_timestamps = true
end
# a threadsafe with ensure block:
def skipping_timestamps &block
begin
class << self
def record_timestamps; false; end
end
yield
ensure
class << self
remove_method :record_timestamps
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment