houndci fixes

This commit is contained in:
Gopesh Tulsyan 2014-05-23 21:40:54 +05:30
parent 6b075370b5
commit 98030936fa

View file

@ -4,9 +4,7 @@ class SupporterLevel < ActiveRecord::Base
monetize :price_cents, with_model_currency: :price_currency
attr_accessible :conference, :title, :url, :description, :price_currency, :amount, :price_cents
validate :convert_money_to_cents
private
def convert_money_to_cents
self.price_cents = (self.amount.to_d * 100).to_i
end