class ProgressBar::Time
Constants
- TIME_MOCKING_LIBRARY_METHODS
Attributes
Public Class Methods
Source
# File lib/ruby-progressbar/time.rb, line 11 def initialize(time = ::Time) self.time = time end
Public Instance Methods
Source
# File lib/ruby-progressbar/time.rb, line 15 def now time.__send__(unmocked_time_method) end
Source
# File lib/ruby-progressbar/time.rb, line 19 def unmocked_time_method @unmocked_time_method ||= TIME_MOCKING_LIBRARY_METHODS.find do |method| time.respond_to? method end end