Sha256: eb1a1210140f36da5b1a6f91f5125c3351fdb8d80031caea54fd4a6aa98377e7
Contents?: true
Size: 1.7 KB
Versions: 4
Compression:
Stored size: 1.7 KB
Contents
# frozen_string_literal: true require 'bigdecimal' class Money module Helpers module_function DECIMAL_ZERO = BigDecimal(0).freeze MAX_DECIMAL = 21 STRIPE_SUBUNIT_OVERRIDE = { 'ISK' => 100, }.freeze def value_to_decimal(num) value = case num when Money num.value when BigDecimal num when nil, 0, '' DECIMAL_ZERO when Integer BigDecimal(num) when Float BigDecimal(num, Float::DIG) when Rational BigDecimal(num, MAX_DECIMAL) when String decimal = BigDecimal(num, exception: false) return decimal if decimal Money.deprecate("using Money.new('#{num}') is deprecated and will raise an ArgumentError in the next major release") DECIMAL_ZERO else raise ArgumentError, "could not parse as decimal #{num.inspect}" end return DECIMAL_ZERO if value.sign == BigDecimal::SIGN_NEGATIVE_ZERO value end def value_to_currency(currency) case currency when Money::Currency, Money::NullCurrency currency when nil, '' default = Money.current_currency || Money.default_currency raise(ArgumentError, 'missing currency') if default.nil? || default == '' value_to_currency(default) when 'xxx', 'XXX' Money::NULL_CURRENCY when String begin Currency.find!(currency) rescue Money::Currency::UnknownCurrency => error Money.deprecate(error.message) Money::NULL_CURRENCY end else raise ArgumentError, "could not parse as currency #{currency.inspect}" end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
shopify-money-0.16.0 | lib/money/helpers.rb |
shopify-money-0.15.0 | lib/money/helpers.rb |
shopify-money-0.14.8 | lib/money/helpers.rb |
shopify-money-0.14.7 | lib/money/helpers.rb |