Method: Command::Diff#version_string_to_time
- Defined in:
- lib/command/diff.rb
#version_string_to_time(string) ⇒ Object
130 131 132 133 |
# File 'lib/command/diff.rb', line 130 def version_string_to_time(string) ymd, hms = string.split("@") Helper.date_string_to_time("#{ymd} #{hms.tr(".", ":")}") end |