Object
Not cancelled by default. Overridden in the child class.
# File lib/active_merchant/billing/integrations/return.rb, line 19 def cancelled? false end
# File lib/active_merchant/billing/integrations/return.rb, line 23 def message end
# File lib/active_merchant/billing/integrations/return.rb, line 27 def parse(query_string) return {} if query_string.blank? query_string.split('&').inject({}) do |memo, chunk| next if chunk.empty? key, value = chunk.split('=', 2) next if key.empty? value = value.nil? ? nil : CGI.unescape(value) memo[CGI.unescape(key)] = value memo end end
Generated with the Darkfish Rdoc Generator 2.