Sha256: a9ad4edf61723f5e9f0b4c1311778e6789047be0e7e0c379f48a4ede81ca1cd8

Contents?: true

Size: 184 Bytes

Versions: 5

Compression:

Stored size: 184 Bytes

Contents

class String
  def to_big_money(currency = nil)
    BigMoney.new(self, currency)
  end
end

class Numeric
  def to_big_money(currency = nil)
    BigMoney.new(self, currency)
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
mroch-BigMoney-0.1.0 lib/big_money/core_extensions.rb
mroch-BigMoney-0.1.2 lib/big_money/core_extensions.rb
mroch-BigMoney-0.2.1 lib/big_money/core_extensions.rb
shanna-big_money-0.2.1 lib/big_money/core_extensions.rb
shanna-big_money-0.2.2 lib/big_money/core_extensions.rb