Class: Time

Inherits:
Object show all
Defined in:
lib/dango/framework_base.rb

Overview

Timeクラスの表示形式修正

Class Method Summary collapse

Class Method Details

.now_to_sObject



46
47
48
49
50
# File 'lib/dango/framework_base.rb', line 46

def self.now_to_s
#    self.strftime("%Y-%m-%d %H:%M:%S")
  now = self.now
  now.strftime("%Y-%m-%d %H:%M:%S.") << "%06d" % now.usec
end