Module: Bake::Types::Decimal

Extended by:
Type
Defined in:
lib/bake/types/decimal.rb

Class Method Summary collapse

Methods included from Type

|

Class Method Details

.composite?Boolean

Returns:



15
16
17
# File 'lib/bake/types/decimal.rb', line 15

def self.composite?
	false
end

.parse(input) ⇒ Object



19
20
21
# File 'lib/bake/types/decimal.rb', line 19

def self.parse(input)
	BigDecimal(input)
end