Sha256: 30e1ffb6f9e81e6e3d7d9baf2e5c1510d16f4a92e19b57b7dff22e6b1a035bd3
Contents?: true
Size: 239 Bytes
Versions: 28
Compression:
Stored size: 239 Bytes
Contents
# frozen_string_literal: true require 'bigdecimal' module ErpIntegration module Types class Decimal attr_reader :object def initialize(decimal_str) @object = BigDecimal(decimal_str) end end end end
Version data entries
28 entries across 28 versions & 1 rubygems