Sha256: b9d78eaad1f4f4b36efb81147ba7ea6f63bee5b13e079c8afdd5d639a305142f
Contents?: true
Size: 245 Bytes
Versions: 20
Compression:
Stored size: 245 Bytes
Contents
# frozen_string_literal: true require "bigdecimal" module Refinements module BigDecimals refine BigDecimal do def inspect format "#<BigDecimal:%{id} %{string}>", id: object_id, string: to_s("F") end end end end
Version data entries
20 entries across 20 versions & 1 rubygems