Sha256: 977e3a417fa009a6861a4dd06ab28c373a9202501593b3eb4da8467eb00b9f12

Contents?: true

Size: 334 Bytes

Versions: 1

Compression:

Stored size: 334 Bytes

Contents

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rainmaker-0.1.5 lib/rainmaker/client/person.rb