Object
Not cancelled by default. Overridden in the child class.
# File lib/active_merchant/billing/integrations/return.rb, line 19 19: def cancelled? 20: false 21: end
# File lib/active_merchant/billing/integrations/return.rb, line 23 23: def message 24: 25: end
# File lib/active_merchant/billing/integrations/return.rb, line 27 27: def parse(query_string) 28: return {} if query_string.blank? 29: 30: query_string.split('&').inject({}) do |memo, chunk| 31: next if chunk.empty? 32: key, value = chunk.split('=', 2) 33: next if key.empty? 34: value = value.nil? ? nil : CGI.unescape(value) 35: memo[CGI.unescape(key)] = value 36: memo 37: end 38: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.