# frozen_string_literal: true require "bigdecimal" module Refinements # Refinements for big decimals. module BigDecimals refine BigDecimal do def inspect format "#", id: object_id, string: to_s("F") end end end end