Method: Vcard.decode_date_list
- Defined in:
- lib/vcard.rb
.decode_date_list(v) ⇒ Object
Convert a RFC2425 date-list into an array of dates.
145 146 147 148 149 150 |
# File 'lib/vcard.rb', line 145 def self.decode_date_list(v) # :nodoc: decode_list(v) do |date| date.strip! decode_date(date) if date.length > 0 end.compact end |