module MkGreenwich

Constants

VERSION

Public Class Methods

new(arg) click to toggle source
# File lib/mk_greenwich.rb, line 12
def self.new(arg)
  arg ||= Time.now.strftime("%Y%m%d%H%M%S")
  ut = MkGreenwich::Argument.new(arg).get_utc
  return unless ut
  return MkGreenwich::Greenwich.new(ut)
end