class Psych::Visitors::YAMLTree

def format_time time, utc = time.utc?

def format_time time, utc = time.utc?
  if utc
    time.strftime("%Y-%m-%d %H:%M:%S.%9N Z")
  else
    time.strftime("%Y-%m-%d %H:%M:%S.%9N %:z")
  end
end