Sha256: e185b77d59a0477da1e706478badadac244fb7612c8405ea7c132dcf5cfbec5f

Contents?: true

Size: 500 Bytes

Versions: 6

Compression:

Stored size: 500 Bytes

Contents

module GData
  include_package 'com.google.gdata.data.contacts'
  include_package 'com.google.gdata.client.contacts'
  include_package 'com.google.gdata.data.extensions'
end

class Java::ComGoogleGdataClientContacts::ContactsService
  DEFAULT_CONTACTS_URI = 'http://www.google.com/m8/feeds/contacts/default/full'
  
  def find_feed(options)
    super(options.merge({:class => GData::ContactFeed}))
  end
  
  def find_entry(options)
    super(options.merge({:class => GData::ContactEntry}))
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gdata-jruby-client-0.7.5 lib/contacts_service.rb
gdata-jruby-client-0.7.4 lib/contacts_service.rb
gdata-jruby-client-0.7.3 lib/contacts_service.rb
gdata-jruby-client-0.7.2 lib/contacts_service.rb
gdata-jruby-client-0.7.1 lib/contacts_service.rb
gdata-jruby-client-0.7.0 lib/contacts_service.rb