module Qtpay::Utils

Public Class Methods

stringify_keys(hash) click to toggle source
# File lib/qtpay/utils.rb, line 3
def self.stringify_keys(hash)
  new_hash = {}
  hash.each do |key, value|
    new_hash[(key.to_s rescue key) || key] = value
  end
  new_hash
end
to_cents(dollars) click to toggle source
# File lib/qtpay/utils.rb, line 11
def self.to_cents(dollars)
  (dollars.to_d * 100).ceil

end
to_dollars(cents) click to toggle source
# File lib/qtpay/utils.rb, line 16
def self.to_dollars(cents)
  cents.to_d / 100.0
end