Sha256: 1610ce5015307f9b5f4733afe16b7fd9fce4800d2b05ee2b838d119b9905e5e4

Contents?: true

Size: 287 Bytes

Versions: 3

Compression:

Stored size: 287 Bytes

Contents

module FullContact
  class Client
    module Person
      # Returns extended information for a given email
      #
       def person(email)
        response = get('person', :email => email)
        format.to_s.downcase == 'xml' ? response['person'] : response
      end
  	end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fullcontact-0.2.0 lib/fullcontact/client/person.rb
fullcontact-0.1.4 lib/fullcontact/client/person.rb
fullcontact-0.1.3 lib/fullcontact/client/person.rb