Class: TableSchema::Types::Number
- Inherits:
-
Base
- Object
- Base
- TableSchema::Types::Number
show all
- Defined in:
- lib/tableschema/types/number.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#cast, #initialize, #test
Methods included from Helpers
#deep_symbolize_keys, #get_class_for_type, #read_file, #type_class_lookup
Class Method Details
.supported_constraints ⇒ Object
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/tableschema/types/number.rb', line 9
def self.supported_constraints
[
'required',
'unique',
'pattern',
'enum',
'minimum',
'maximum',
]
end
|
Instance Method Details
#cast_default(value) ⇒ Object
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/tableschema/types/number.rb', line 25
def cast_default(value)
case value
when type
value
when ::Integer
Float(value)
when ::String
process_string(value)
end
rescue ArgumentError
raise TableSchema::InvalidCast.new("#{value} is not a #{name}")
end
|
5
6
7
|
# File 'lib/tableschema/types/number.rb', line 5
def name
'number'
end
|
20
21
22
|
# File 'lib/tableschema/types/number.rb', line 20
def type
::Float
end
|