module MkTime

Constants

VERSION

Public Class Methods

new(arg) click to toggle source
# File lib/mk_time.rb, line 9
def self.new(arg)
  arg ||= Time.now.strftime("%Y%m%d%H%M%S")
  utc = MkTime::Argument.new(arg).get_utc
  return unless utc
  return MkTime::Calc.new(utc)
end