Class: Time
- Inherits:
-
Object
- Object
- Time
- Defined in:
- lib/chronic.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.construct(year, month = 1, day = 1, hour = 0, minute = 0, second = 0) ⇒ Object
102 103 104 105 |
# File 'lib/chronic.rb', line 102 def self.construct(year, month = 1, day = 1, hour = 0, minute = 0, second = 0) warn "Chronic.construct will be deprecated in version 0.7.0. Please use Chronic.construct instead" Chronic.construct(year, month, day, hour, minute, second) end |