Method: Vcard.decode_date_to_date
- Defined in:
- lib/vcard.rb
.decode_date_to_date(v) ⇒ Object
Convert a RFC 2425 date into a Date object.
67 68 69 |
# File 'lib/vcard.rb', line 67 def self.decode_date_to_date(v) Date.new(*decode_date(v)) end |