Module: Acclaim::Option::Type::BigDecimal
- Defined in:
- lib/acclaim/option/type/big_decimal.rb
Overview
Handles big decimals given as arguments in the command line.
Class Method Summary collapse
-
.handle(str) ⇒ Object
Returns BigDecimal.new(str).
Class Method Details
.handle(str) ⇒ Object
Returns BigDecimal.new(str).
15 16 17 |
# File 'lib/acclaim/option/type/big_decimal.rb', line 15 def self.handle(str) ::BigDecimal.new str end |