------ art_1749_14607818.1201314009050 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit Content-Disposition: inline Well, it looks like the Temporal mixin is ready to go. Should I submit the patch to the ruby-core tracker on RubyForge, or is it already officially up for consideration in it's current location? 2008/1/25 Martin Duerst <duerst / it.aoyama.ac.jp>: > At 11:38 08/01/25, Jim Cropcho wrote: > >Does anyone think that it is a good idea to include similar methods for > japanese/east asian languages? > > I don't think so. Ruby doesn't localize it's method names. > If things are clear in simple English (as they are in your case), > it should be fine. > > Regards, Martin. > > > >I'm not too familiar with japanese/localization in ruby-core. Would that > go in the same module, or a different one? > > > >Any naming scheme that helps visualize is good. How can we make this work > best for the great number of locales? > > > >2008/1/24 Jim Cropcho <<mailto:jim.cropcho / gmail.com> > jim.cropcho / gmail.com >: > >>Here is the newest patch. It creates a module called Temporal which > contains functionality useful to classes which define temporal objects, such > as dates and times. However, its intended scope is *not* limited to object > comparison. It is handy in this regard, though, because it addresses > differences between languages, as several in this thread have noted. > >> > >>The module is added to the compilation configuration, and unit tests are > included, all of which pass. The module is included in the classes Time and > Date (and DateTime, via extension). > >> > >>The module does not include the methods past? and present?, as intended, > because the means of determining "now" is different even at the conceptual > level between temporal classes. For example, "now" to Time is the number of > microseconds after epoch, but "now" to Date is the current calendar date. It > is my opinion that past?/future? functionality should be implemented at the > class level. > >> > >>Please give my concept and source code consideration for being entered > into the ruby core, and suggest modifications/additions at will. > >> > >> > >>Jim Cropcho > >> > >>2008/1/23 Jim Cropcho < <mailto:jim.cropcho / gmail.com> > jim.cropcho / gmail.com>: > >> > >>>A new thought: > >>> > >>>> The way that the <