From: "headius (Charles Nutter)" Date: 2013-03-20T01:56:42+09:00 Subject: [ruby-core:53550] [CommonRuby - Feature #8096] introduce Time.current_timestamp Issue #8096 has been updated by headius (Charles Nutter). A few more thoughts to keep this alive... Implementation in JRuby: def Time.timestamp java.lang.System.nano_time / 1000 end There's also currentTimeMillis, but I think providing sub-ms precision is a good idea. ��s seems sufficient to me. Definitely would like to see this get into 2.1. ---------------------------------------- Feature #8096: introduce Time.current_timestamp https://bugs.ruby-lang.org/issues/8096#change-37740 Author: vipulnsward (Vipul Amler) Status: Feedback Priority: Low Assignee: Category: Target version: =begin A lot of scenarios and applications require the use of (({Time.now.to_i})) which is used as current_timestamp in systems. The introduction of (({Time.current_timestamp})) {or something with similar with different name} would provide implicit integer timestamp instead of going from (({Time.now})) -> time_object -> to_i -> integer timestamp value So instead of Time.now.to_i # Outputs => 1363274618 one could use Time.current_timestamp # Outputs => 1363274618 =end -- http://bugs.ruby-lang.org/