Module: TwilioLookups::Util

Included in:
REST::BaseClient, REST::Lookups::PhoneNumbers
Defined in:
lib/twilio-lookups/util.rb,
lib/twilio-lookups/util/client_config.rb

Defined Under Namespace

Classes: ClientConfig

Instance Method Summary collapse

Instance Method Details

#get_string(obj) ⇒ Object



7
8
9
10
11
12
13
# File 'lib/twilio-lookups/util.rb', line 7

def get_string(obj)
  if obj.respond_to?(:strftime)
    obj.strftime('%Y-%m-%d')
  else
    obj.to_s
  end
end

#url_encode(hash) ⇒ Object



3
4
5
# File 'lib/twilio-lookups/util.rb', line 3

def url_encode(hash)
  hash.to_a.map {|p| p.map {|e| CGI.escape get_string(e)}.join '='}.join '&'
end