Sha256: c693db3692e8889705b28e69653c012a713fa9a53c7e2f23d6cc39fea5958295

Contents?: true

Size: 1.45 KB

Versions: 5

Compression:

Stored size: 1.45 KB

Contents

=begin
  Copyright (C) 2005 Jeff Rose

  This library is free software; you can redistribute it and/or modify it
  under the same terms as the ruby language itself, see the file COPYING for
  details.
=end

require 'date'

### Add some to_ical methods to classes

# class Object
#   def to_ical
#     raise(NotImplementedError, "This object does not implement the to_ical method!")
#   end
# end

module Icalendar
  module TzidSupport
    attr_accessor :icalendar_tzid
  end
end

require 'uri/generic'

class String
  def to_ical
    self
  end
end

class Fixnum
  def to_ical
    "#{self}"
  end
end

class Bignum
  def to_ical
    "#{self}"
  end
end

class Float
  def to_ical
    "#{self}"
  end
end

# From the spec: "Values in a list of values MUST be separated by a COMMA
# character (US-ASCII decimal 44)."
class Array
  def to_ical
    map{|elem| elem.to_ical}.join ','
  end
end

module URI
  class Generic
    def to_ical
      "#{self}"
    end
  end
end

class DateTime < Date
  attr_accessor :ical_params
  include Icalendar::TzidSupport

  def to_ical
    s = strftime '%Y%m%dT%H%M%S'

    # UTC time gets a Z suffix
    if icalendar_tzid == "UTC"
      s << "Z"
    end

    s
  end
end

class Date
  attr_accessor :ical_params
  def to_ical(utc = false)
    strftime '%Y%m%d'
  end
end

class Time
  attr_accessor :ical_params
  def to_ical(utc = false)
    s = strftime '%H%M%S'

    # UTC time gets a Z suffix
    if utc
      s << "Z"
    end

    s
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
icalendar-1.2.3 lib/icalendar/conversions.rb
icalendar-1.2.2 lib/icalendar/conversions.rb
icalendar-1.2.1 lib/icalendar/conversions.rb
icalendar-1.2.0 lib/icalendar/conversions.rb
icalendar-1.2 lib/icalendar/conversions.rb