global

def self.deprecate(message)

def self.deprecate(message)
  if ACTIVE_SUPPORT_DEFINED
    active_support_deprecator.warn("[Shopify/Money] #{message}\n", caller_stack)
  else
    Kernel.warn("DEPRECATION WARNING: [Shopify/Money] #{message}\n")
  end
end