Sha256: 12fa6716fe161f84adfa304c3661716168a89b0cbe193becc125d88ebdab6928

Contents?: true

Size: 358 Bytes

Versions: 1

Compression:

Stored size: 358 Bytes

Contents

module RiCal
  module CoreExtensions #:nodoc:
    module Array #:nodoc:
      module Conversions
        # return the concatenation of the elements representation in rfc 2445 format
        def to_rfc2445_string # :doc:
          join(",")
        end
      end
    end
  end
end

class Array #:nodoc:
  include RiCal::CoreExtensions::Array::Conversions
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
friflaj_ri_cal-0.9.0 lib/ri_cal/core_extensions/array.rb