0.0
No commit activity in last 3 years
No release in over 3 years
Easy Money gem integration for rails 3.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 2.6.0
~> 1.3.3

Runtime

~> 3.7.1
 Project Readme

Counterfeit

This gem helps you count somebody's money in your Rails application. It is basically a nice rails-wrapper for Money gem.

Installation

Gemfile:

gem 'counterfeit'

Console:

bundle install

Usage

In your migrations:

create_table(:products) do |t|
  t.integer :price_in_cents, :default => 0, :null => false
  t.string  :price_currency, :limit => 3,   :null => false
end

or

create_table(:products) do |t|
  t.money :price
end

In your models:

class Product < ActiveRecord::Base
  has_counterfeit :price
end

You can specify default currency like this:

has_counterfeit :price, :currency => 'EUR'

Now lets play a little:

product = Product.new
product.price
# => #<Money cents:0 currency:USD>
product.price = 500
product.price
# => #<Money cents:50000 currency:USD>
product.price.exchange_to('EUR')
# => #<Money cents:35491 currency:EUR>
user = User.new
user.balance = Money.new(100000, 'RUB')
user.balance > product.price
# => false
# need moar moneez

You can get more info on the money gem page here: https://github.com/RubyMoney/money

License

Counterfeit is released under the MIT license.