module Einvoice::Utils
Public Instance Methods
Source
# File lib/einvoice/utils.rb, line 5 def camelize(hash) hash.deep_transform_keys { |k| k.to_s.camelize } end
Source
# File lib/einvoice/utils.rb, line 9 def encode_xml(hash) ::Gyoku.xml(hash, key_converter: :none) end