Class: DateTime

Inherits:
Object
  • Object
show all
Defined in:
lib/common_functions.rb

Class Method Summary collapse

Class Method Details



32
33
34
# File 'lib/common_functions.rb', line 32

def self.print_date(timestamp)
  timestamp.strftime("%F")
end


36
37
38
# File 'lib/common_functions.rb', line 36

def self.print_date_time(timestamp)
  timestamp.strftime("%F %T")
end