ruby-changes:14484
From: akr <ko1@a...>
Date: Thu, 14 Jan 2010 04:49:50 +0900 (JST)
Subject: [ruby-changes:14484] Ruby:r26321 (trunk): update rdoc.
akr 2010-01-14 04:49:39 +0900 (Thu, 14 Jan 2010) New Revision: 26321 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26321 Log: update rdoc. Modified files: trunk/time.c Index: time.c =================================================================== --- time.c (revision 26320) +++ time.c (revision 26321) @@ -1453,6 +1453,20 @@ * * Time.new(2008,6,21, 13,30,0, "+09:00") #=> 2008-06-21 13:30:00 +0900 * + * # A trip for RubyConf 2007 + * t1 = Time.new(2007,11,1,15,25,0, "+09:00") # JST (Narita) + * t2 = Time.new(2007,11,1,12, 5,0, "-05:00") # CDT (Minneapolis) + * t3 = Time.new(2007,11,1,13,25,0, "-05:00") # CDT (Minneapolis) + * t4 = Time.new(2007,11,1,16,53,0, "-04:00") # EDT (Charlotte) + * t5 = Time.new(2007,11,5, 9,24,0, "-05:00") # EST (Charlotte) + * t6 = Time.new(2007,11,5,11,21,0, "-05:00") # EST (Detroit) + * t7 = Time.new(2007,11,5,13,45,0, "-05:00") # EST (Detroit) + * t8 = Time.new(2007,11,6,17,10,0, "+09:00") # JST (Narita) + * p((t2-t1)/3600.0) #=> 10.666666666666666 + * p((t4-t3)/3600.0) #=> 2.466666666666667 + * p((t6-t5)/3600.0) #=> 1.95 + * p((t8-t7)/3600.0) #=> 13.416666666666666 + * */ static VALUE -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/