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