Sha256: 546fbb6d91a1a946671b743818514b8c22d94aad79a115338531f72e803c3141
Contents?: true
Size: 1002 Bytes
Versions: 2
Compression:
Stored size: 1002 Bytes
Contents
# Defines extensions applied to ActionController::Base to support our time travel module TimecopControllerMethods def self.included(base) base.class_eval do around_filter :handle_timecop_offset end end # to be used as an around_filter def handle_timecop_offset # Establish now if !session[:timecop_adjusted_time].nil? puts "***** Time traveling to #{session[:timecop_adjusted_time].to_s}" Timecop.travel(session[:timecop_adjusted_time]) else Timecop.return end # Run the intended action yield # we want to continue to slide time forward, even if it's only 3 seconds at a time. # this ensures that subsequent calls during the same "time travel" actually pass time if !session[:timecop_adjusted_time].nil? puts "====== Resetting session to: #{Time.now + 3}" session[:timecop_adjusted_time] = Time.now + 3 # slide it forward a couple of seconds end end private :handle_timecop_offset end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
jtrupiano-timecop-console-0.1.0 | lib/timecop-console/timecop_controller_methods.rb |
timecop-console-0.1.0 | lib/timecop-console/timecop_controller_methods.rb |