Module Jabber::Vcard
In: lib/xmpp4r/vcard/iq/vcard.rb
lib/xmpp4r/vcard/helper/vcard.rb

Methods

get   set  

Classes and Modules

Class Jabber::Vcard::Helper
Class Jabber::Vcard::IqVcard

Public Class methods

Quickly initialize a Vcard helper and get a vCard. See Vcard#get

[Source]

    # File lib/xmpp4r/vcard/helper/vcard.rb, line 73
73:       def Vcard.get(stream, jid=nil)
74:         Vcard.new(stream).get(jid)
75:       end

Quickly initialize a Vcard helper and set your vCard. See Vcard#set

[Source]

    # File lib/xmpp4r/vcard/helper/vcard.rb, line 80
80:       def Vcard.set(stream, iqvcard)
81:         Vcard.new(stream).set(iqvcard)
82:       end

[Validate]