Sha256: 05e3dfaa73343fef7b95d5eca682dbd42b6ff53f31bf294b7d354ebd94f24d7f
Contents?: true
Size: 1.42 KB
Versions: 13
Compression:
Stored size: 1.42 KB
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 # def change(options) opts=options; #{}; 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[:sec]) ? 0 : self.usec) ) end #def change(options) # ::Time.send( # self.utc? ? :utc_time : :local_time, # options[:year] || self.year, # options[:month] || self.month, # options[:day] || self.day, # options[:hour] || self.hour, # options[:min] || (options[:hour] ? 0 : self.min), # options[:sec] || ((options[:hour] || options[:min]) ? 0 : self.sec), # options[:usec] || ((options[:hour] || options[:min] || options[:sec]) ? 0 : self.usec) # ) #end end
Version data entries
13 entries across 13 versions & 2 rubygems