Class: NCore::BigMoney

Inherits:
BigDecimal
  • Object
show all
Defined in:
lib/ncore/attributes.rb

Instance Method Summary collapse

Instance Method Details

#to_sObject



148
149
150
151
152
153
154
# File 'lib/ncore/attributes.rb', line 148

def to_s
  if (self % BigDecimal.new('0.01')) == 0
    '%.2f' % self
  else
    super
  end
end