class String

Public Instance Methods

hashify() click to toggle source
# File lib/ecpay_invoice/core_ext/string.rb, line 2
def hashify
  Hash[self.force_encoding("UTF-8").split("&").map! { |i| i.split("=") }]
end