# File lib/money/money/arithmetic.rb, line 159
    def /(value)
      if value.is_a?(Money)
        if currency == value.currency
          (cents / BigDecimal.new(value.cents.to_s)).to_f
        else
          (cents / BigDecimal(value.exchange_to(currency).cents.to_s)).to_f
        end
      else
        Money.new(cents / value, currency)
      end
    end