Sha256: 8a9eddf56d8931a024ca0b6f74d9631bf02afbbe1a2d129aa7a7c676d15d9c29

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

=begin
  Copyright (C) 2008 Sam Roberts

  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

#:main:README
#:title:vPim - vCard and iCalendar support for Ruby
module Vpim
  # Exception used to indicate that data being decoded is invalid, the message
  # should describe what is invalid.
  class InvalidEncodingError < StandardError; end

  # Exception used to indicate that data being decoded is unsupported, the message
  # should describe what is unsupported.
  #
  # If its unsupported, its likely because I didn't anticipate it being useful
  # to support this, and it likely it could be supported on request.
  class UnsupportedError < StandardError; end

  # Exception used to indicate that encoding failed, probably because the
  # object would not result in validly encoded data. The message should
  # describe what is unsupported.
  class Unencodeable < StandardError; end
end

require "vcard/attachment"
require "vcard/dirinfo"
require "vcard/enumerator"
require "vcard/field"
require "vcard/rfc2425"
require "vcard/vcard"

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
qoobaa-vcard-0.1.0 lib/vcard.rb
qoobaa-vcard-0.1.1 lib/vcard.rb
vcard-0.1.1 lib/vcard.rb