class AdtekioAdnetworks::Postbacks::Jumptap

Public Instance Methods

compute_params() click to toggle source
# File lib/adtekio_adnetworks/postbacks/jumptap.rb, line 14
def compute_params
  if event.adid
    { :idfa => event.adid }
  elsif event.uuid
    { :hid => event.uuid }
  else
    { :hid_sha1 => sha1(params[:mid]) }
  end.merge( {:app => event.bundleid, :event => "download" })
end