Module: Acclaim::Option::Type::DateTime
- Defined in:
- lib/acclaim/option/type/date_time.rb
Overview
Handles dates and times given as arguments in the command line.
Class Method Summary collapse
-
.handle(str) ⇒ Object
Parses a
DateTime
from the string.
Class Method Details
.handle(str) ⇒ Object
Parses a DateTime
from the string.
14 15 16 |
# File 'lib/acclaim/option/type/date_time.rb', line 14 def self.handle(str) ::DateTime.parse str end |