Just wondering if I'm going crazy before logging a bug (I couldn't find one in Jira). (Or maybe if it was intentional)
It looks like Time#round doesn't exist in JRuby?
jruby-1.7.0.preview1 :002 > Time.instance_methods.grep /round/
=> []
In MRI:
1.9.3p194 :006 > Time.instance_methods.sort.grep /round/
=> [:round]
Wasn't sure I was doing something strange, or if it was just me.
Thanks!
Mark