Class: TableSchema::Types::Time
- Inherits:
-
Base
- Object
- Base
- TableSchema::Types::Time
show all
- Defined in:
- lib/tableschema/types/time.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, #type_class_lookup
Class Method Details
.supported_constraints ⇒ Object
9
10
11
12
13
14
15
16
17
18
|
# File 'lib/tableschema/types/time.rb', line 9
def self.supported_constraints
[
'required',
'unique',
'pattern',
'enum',
'minimum',
'maximum',
]
end
|
Instance Method Details
#cast_any(value) ⇒ Object
33
34
35
36
37
38
39
40
41
|
# File 'lib/tableschema/types/time.rb', line 33
def cast_any(value)
return value if value.is_a?(type)
begin
return ::Tod::TimeOfDay.parse(value)
rescue ArgumentError
raise TableSchema::InvalidTimeType.new("#{value} is not a valid time")
end
end
|
#cast_default(value) ⇒ Object
28
29
30
31
|
# File 'lib/tableschema/types/time.rb', line 28
def cast_default(value)
@format_string = iso8601
cast_fmt(value)
end
|
#cast_fmt(value) ⇒ Object
43
44
45
46
47
48
49
50
51
52
|
# File 'lib/tableschema/types/time.rb', line 43
def cast_fmt(value)
return value if value.is_a?(type)
begin
time = ::Time.strptime(value, @format_string)
return time.to_time_of_day
rescue ArgumentError, TypeError
raise TableSchema::InvalidTimeType.new("#{value} is not a valid time")
end
end
|
24
25
26
|
# File 'lib/tableschema/types/time.rb', line 24
def iso8601
'%H:%M:%S'
end
|
5
6
7
|
# File 'lib/tableschema/types/time.rb', line 5
def name
'time'
end
|
20
21
22
|
# File 'lib/tableschema/types/time.rb', line 20
def type
::Tod::TimeOfDay
end
|