Sha256: 314d5a861651652d77d0846e68219bf6ea0d4e94ee813eaef48d1637d051798a
Contents?: true
Size: 990 Bytes
Versions: 3
Compression:
Stored size: 990 Bytes
Contents
class Time # Returns a new Time where one or more of the elements # have been changed according to the +options+ parameter. # The time options (hour, minute, sec, usec) reset # cascadingly, so if only the hour is passed, then # minute, sec, and usec is set to 0. If the hour and # minute is passed, then sec and usec is set to 0. # # t = Time.now #=> Sat Dec 01 14:10:15 -0500 2007 # t.change(:hour => 11) #=> Sat Dec 01 11:00:00 -0500 2007 # # CREDIT: David Hansson (?) def change(options) opts={}; options.each_pair{ |k,v| opts[k] = v.to_i } self.class.send( self.utc? ? :utc : :local, opts[:year] || self.year, opts[:month] || self.month, opts[:day] || self.day, opts[:hour] || self.hour, opts[:min] || (opts[:hour] ? 0 : self.min), opts[:sec] || ((opts[:hour] || opts[:min]) ? 0 : self.sec), opts[:usec] || ((opts[:hour] || opts[:min] || opts[:usec]) ? 0 : self.usec) ) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
facets-2.2.0 | lib/core/facets/time/change.rb |
facets-2.2.1 | lib/core/facets/time/change.rb |
facets-2.3.0 | lib/core/facets/time/change.rb |