trailer_vote-media_types 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/trailer_vote/media_types/configuration.rb +9 -36
- data/lib/trailer_vote/media_types/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8061b62a4950238365bd389e9cba3cd36c6bc24903be48d664e500c84293b044
|
4
|
+
data.tar.gz: 6a1cec320aa400dda3f8c6760ec2c691cbb29271f1b643f29923c4475a3ea564
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4e7dae957f6a8ce0a9b8b2955e1309170e07322c3c0d3e7b18c486f9c96fb2a35a568a047e6adbb60a3755e4f844bac57a21b5b3c91f0e53ce801d005c667a75
|
7
|
+
data.tar.gz: '08f279987af51d315041dc8217d3ab44dc31a8f1ceff59de18cb5e01209b5664c0c1d36145de0ff0a32eefb574ca1c57ba65fe72abf5e209b664835487ac9bdf'
|
data/Gemfile.lock
CHANGED
@@ -23,22 +23,15 @@ module TrailerVote
|
|
23
23
|
link :products
|
24
24
|
link :product_lookup
|
25
25
|
link :persona do
|
26
|
-
attribute :href, Types.makeFormattedUrl(:uuid)
|
27
26
|
attribute :templated, TrueClass
|
28
27
|
end
|
29
28
|
link :lookup do
|
30
|
-
attribute :href, Types.makeFormattedUrl(:authority, :identifier)
|
31
29
|
attribute :templated, TrueClass
|
32
30
|
end
|
33
|
-
link :analytics
|
34
|
-
|
35
|
-
end
|
36
|
-
link :telemetrics do
|
37
|
-
attribute :href, Types::InfluxDbConnectionUrl
|
38
|
-
end
|
31
|
+
link :analytics
|
32
|
+
link :telemetrics
|
39
33
|
link :issues
|
40
34
|
link :persona_config do
|
41
|
-
attribute :href, Types.makeFormattedUrl(:persona)
|
42
35
|
attribute :templated, TrueClass
|
43
36
|
end
|
44
37
|
attribute :customer_config
|
@@ -53,18 +46,12 @@ module TrailerVote
|
|
53
46
|
link :products
|
54
47
|
link :product_lookup
|
55
48
|
link :persona do
|
56
|
-
attribute :href, Types.makeFormattedUrl(:uuid)
|
57
49
|
attribute :templated, TrueClass
|
58
50
|
end
|
59
|
-
link :analytics
|
60
|
-
|
61
|
-
end
|
62
|
-
link :telemetrics do
|
63
|
-
attribute :href, Types::InfluxDbConnectionUrl
|
64
|
-
end
|
51
|
+
link :analytics
|
52
|
+
link :telemetrics
|
65
53
|
link :issues
|
66
54
|
link :persona_config do
|
67
|
-
attribute :href, Types.makeFormattedUrl(:persona)
|
68
55
|
attribute :templated, TrueClass
|
69
56
|
end
|
70
57
|
attribute :customer_config
|
@@ -79,15 +66,10 @@ module TrailerVote
|
|
79
66
|
link :products
|
80
67
|
link :product_lookup
|
81
68
|
link :persona do
|
82
|
-
attribute :href, Types.makeFormattedUrl(:uuid)
|
83
69
|
attribute :templated, TrueClass
|
84
70
|
end
|
85
|
-
link :analytics
|
86
|
-
|
87
|
-
end
|
88
|
-
link :telemetrics do
|
89
|
-
attribute :href, Types::InfluxDbConnectionUrl
|
90
|
-
end
|
71
|
+
link :analytics
|
72
|
+
link :telemetrics
|
91
73
|
link :issues
|
92
74
|
end
|
93
75
|
end
|
@@ -99,15 +81,10 @@ module TrailerVote
|
|
99
81
|
link :products
|
100
82
|
link :product_lookup
|
101
83
|
link :persona do
|
102
|
-
attribute :href, Types.makeFormattedUrl(:uuid)
|
103
84
|
attribute :templated, TrueClass
|
104
85
|
end
|
105
|
-
link :analytics
|
106
|
-
|
107
|
-
end
|
108
|
-
link :telemetrics do
|
109
|
-
attribute :href, Types::InfluxDbConnectionUrl
|
110
|
-
end
|
86
|
+
link :analytics
|
87
|
+
link :telemetrics
|
111
88
|
link :issues
|
112
89
|
end
|
113
90
|
end
|
@@ -117,16 +94,12 @@ module TrailerVote
|
|
117
94
|
link :place
|
118
95
|
link :products
|
119
96
|
link :feedback do
|
120
|
-
attribute :href, Types.makeFormattedUrl(:uuid)
|
121
97
|
attribute :templated, TrueClass
|
122
98
|
end
|
123
99
|
link :persona do
|
124
|
-
attribute :href, Types.makeFormattedUrl(:uuid)
|
125
100
|
attribute :templated, TrueClass
|
126
101
|
end
|
127
|
-
link :analytics
|
128
|
-
attribute :href, AllowNil(Types::InfluxDbConnectionUrl)
|
129
|
-
end
|
102
|
+
link :analytics
|
130
103
|
end
|
131
104
|
end
|
132
105
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trailer_vote-media_types
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Derk-Jan Karrenbeld
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-04-
|
11
|
+
date: 2020-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: media_types
|
@@ -244,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
244
244
|
- !ruby/object:Gem::Version
|
245
245
|
version: '0'
|
246
246
|
requirements: []
|
247
|
-
rubygems_version: 3.0.
|
247
|
+
rubygems_version: 3.0.6
|
248
248
|
signing_key:
|
249
249
|
specification_version: 4
|
250
250
|
summary: Holds the defined media types for the TrailerVote ecosystem
|