Is there any method available to calculate percentage in rails or ruby ??
EDIT:
I am looking for a function like ..
100000.percent(10)
will return me 10000
.
100000
is value ..(value is BigDecimal
)
10 %
..
result = 100000 * 10 / 100
result = 10000
..