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



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

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