Created
August 26, 2011 20:20
-
-
Save gregoriokusowski/1174335 to your computer and use it in GitHub Desktop.
Avoids the AR default timestamp records.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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