Flowdock
method

format_time

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: YAMLTree
format_time(time) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File ext/psych/lib/psych/visitors/yaml_tree.rb, line 495
      def format_time time
        if time.utc?
          time.strftime("%Y-%m-%d %H:%M:%S.%9N Z")
        else
          time.strftime("%Y-%m-%d %H:%M:%S.%9N %:z")
        end
      end
Register or log in to add new notes.