angus-sdoc 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/angus/base.rb +1 -1
- data/lib/angus/definitions/glossary.rb +1 -1
- data/lib/angus/definitions/glossary_term.rb +2 -2
- data/lib/angus/definitions/message.rb +1 -1
- data/lib/angus/definitions/message_field.rb +1 -1
- data/lib/angus/definitions/proxy_operation.rb +1 -1
- data/lib/angus/definitions/representation.rb +1 -1
- data/lib/angus/definitions/representation_field.rb +17 -12
- data/lib/angus/definitions/request_element.rb +20 -16
- data/lib/angus/definitions/response_element.rb +7 -4
- data/lib/angus/definitions/service.rb +1 -1
- data/lib/angus/definitions/uri_element.rb +1 -1
- data/lib/angus/definitions_reader.rb +7 -7
- data/lib/angus/exceptions/base.rb +1 -1
- data/lib/angus/exceptions/invalid_service_message.rb +2 -2
- data/lib/angus/sdoc/html_formatter.rb +1 -1
- data/lib/angus/sdoc/json_formatter.rb +47 -44
- data/lib/angus/sdoc/templates/doc.en.erb +6 -1
- data/lib/angus/sdoc/templates/doc.es.erb +7 -1
- data/lib/angus/sdoc/version.rb +1 -1
- data/lib/angus/sdoc.rb +1 -1
- data/lib/angus-sdoc.rb +1 -1
- metadata +41 -28
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9f8ca0e037913ac03e2a659e4414b3443836939bacbd681343bf762fa199a0c0
|
4
|
+
data.tar.gz: 99dbb0ed5a0f1a9baebb1c2a32938c88d564a41cdb8533ff26ec7c00491a858c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5b8ef213b828c9a37ce60bfc021fc3e836ccec7a79a98d3a0fcb34755b8ce33f651f557d65aba6cd96210f41e27f276b03aa0c6ba168b4eee2bd17eaf18ecfa
|
7
|
+
data.tar.gz: b6176bd9bba8546a226bfeb186e6c6d1934883e26c21ca07d79a61abe6ba5c3796e9486af5d23c02f1dabf82cb11ce5c57a064817160216e3614aecc18060529
|
data/lib/angus/base.rb
CHANGED
@@ -26,7 +26,7 @@ module Angus
|
|
26
26
|
# @param [GlossaryTerm] other The object to be compared.
|
27
27
|
#
|
28
28
|
# @return [Boolean] true if all the attributes are equal and false otherwise.
|
29
|
-
def ==
|
29
|
+
def ==(other)
|
30
30
|
other.kind_of?(Definitions::GlossaryTerm) &&
|
31
31
|
self.short_name == other.short_name && self.long_name == other.long_name &&
|
32
32
|
self.description == other.description
|
@@ -34,4 +34,4 @@ module Angus
|
|
34
34
|
|
35
35
|
end
|
36
36
|
end
|
37
|
-
end
|
37
|
+
end
|
@@ -1,7 +1,6 @@
|
|
1
1
|
module Angus
|
2
2
|
module SDoc
|
3
3
|
class Definitions::RepresentationField
|
4
|
-
|
5
4
|
# @!attribute [rw] name
|
6
5
|
# @return [String] the name of the representation field.
|
7
6
|
attr_accessor :name
|
@@ -24,15 +23,21 @@ module Angus
|
|
24
23
|
# This attribute is used when the representation is a list of objects.
|
25
24
|
attr_accessor :elements_type
|
26
25
|
|
26
|
+
# @!attribute [rw] optional
|
27
|
+
# @return [Boolean] true if the element is optional
|
28
|
+
attr_accessor :optional
|
29
|
+
|
27
30
|
# @note if the elements_type attribute is different from nil, it means that the
|
28
31
|
# representation field is a list of objects. In that case, the type parameter
|
29
32
|
# is not considered.
|
30
|
-
def initialize(name = nil, description = nil, required = nil, type = nil, elements_type = nil
|
31
|
-
|
32
|
-
self.
|
33
|
-
self.
|
34
|
-
self.
|
35
|
-
self.
|
33
|
+
def initialize(name = nil, description = nil, required = nil, type = nil, elements_type = nil,
|
34
|
+
optional = nil)
|
35
|
+
self.name = name
|
36
|
+
self.description = description
|
37
|
+
self.required = required
|
38
|
+
self.type = type
|
39
|
+
self.elements_type = elements_type
|
40
|
+
self.optional = optional
|
36
41
|
end
|
37
42
|
|
38
43
|
# Check if an object is equals to the current instance.
|
@@ -40,12 +45,12 @@ module Angus
|
|
40
45
|
# @param [RepresentationField] other The object to be compared.
|
41
46
|
#
|
42
47
|
# @return [Boolean] true if all the attributes are equal and false otherwise.
|
43
|
-
def ==
|
48
|
+
def ==(other)
|
44
49
|
other.kind_of?(Definitions::RepresentationField) &&
|
45
|
-
|
46
|
-
|
50
|
+
name == other.name && description == other.description &&
|
51
|
+
required == other.required && type == other.type &&
|
52
|
+
elements_type == other.elements_type && optional == other.optional
|
47
53
|
end
|
48
|
-
|
49
54
|
end
|
50
55
|
end
|
51
|
-
end
|
56
|
+
end
|
@@ -30,16 +30,21 @@ module Angus
|
|
30
30
|
# @return [String] the elements type of the request element.
|
31
31
|
attr_accessor :elements_type
|
32
32
|
|
33
|
+
# @!attribute [rw] optional
|
34
|
+
# @return [Boolean] true if the element is optional
|
35
|
+
attr_accessor :optional
|
36
|
+
|
33
37
|
|
34
38
|
def initialize(name = nil, description = nil, required = nil, type = nil,
|
35
|
-
constraints = nil, valid_values = nil, elements_type = nil)
|
36
|
-
self.name= name if name
|
37
|
-
self.description= description if description
|
38
|
-
self.required= required if required
|
39
|
-
self.type= type if type
|
40
|
-
self.constraints= constraints if constraints
|
41
|
-
self.valid_values= valid_values if valid_values
|
42
|
-
self.elements_type= elements_type if elements_type
|
39
|
+
constraints = nil, valid_values = nil, elements_type = nil, optional = nil)
|
40
|
+
self.name = name if name
|
41
|
+
self.description = description if description
|
42
|
+
self.required = required if required
|
43
|
+
self.type = type if type
|
44
|
+
self.constraints = constraints if constraints
|
45
|
+
self.valid_values = valid_values if valid_values
|
46
|
+
self.elements_type = elements_type if elements_type
|
47
|
+
self.optional = optional if optional
|
43
48
|
end
|
44
49
|
|
45
50
|
# Check if an object is equals to the current instance.
|
@@ -47,15 +52,14 @@ module Angus
|
|
47
52
|
# @param [RequestElement] other The object to be compared.
|
48
53
|
#
|
49
54
|
# @return [Boolean] true if all the attributes are equal and false otherwise.
|
50
|
-
def ==
|
55
|
+
def ==(other)
|
51
56
|
other.instance_of?(Definitions::RequestElement) &&
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
+
name == other.name && description == other.description &&
|
58
|
+
required == other.required && type == other.type &&
|
59
|
+
constraints == other.constraints &&
|
60
|
+
valid_values == other.valid_values &&
|
61
|
+
elements_type == other.elements_type && optional == other.optional
|
57
62
|
end
|
58
|
-
|
59
63
|
end
|
60
64
|
end
|
61
|
-
end
|
65
|
+
end
|
@@ -1,7 +1,6 @@
|
|
1
1
|
module Angus
|
2
2
|
module SDoc
|
3
3
|
class Definitions::ResponseElement
|
4
|
-
|
5
4
|
# @!attribute [rw] name
|
6
5
|
# @return [String] the name of the response element.
|
7
6
|
attr_accessor :name
|
@@ -26,16 +25,20 @@ module Angus
|
|
26
25
|
# @return [String] the elements type of the response element.
|
27
26
|
attr_accessor :elements_type
|
28
27
|
|
28
|
+
# @!attribute [rw] optional
|
29
|
+
# @return [Boolean] true if the element is optional
|
30
|
+
attr_accessor :optional
|
31
|
+
|
29
32
|
def initialize(name = nil, description = nil, required = nil, type = nil, default = nil,
|
30
|
-
elements_type = nil)
|
33
|
+
elements_type = nil, optional = nil)
|
31
34
|
@name = name
|
32
35
|
@description = description
|
33
36
|
@required = required
|
34
37
|
@type = type
|
35
38
|
@default = default
|
36
39
|
@elements_type = elements_type
|
40
|
+
@optional = optional
|
37
41
|
end
|
38
|
-
|
39
42
|
end
|
40
43
|
end
|
41
|
-
end
|
44
|
+
end
|
@@ -1,12 +1,11 @@
|
|
1
1
|
module Angus
|
2
2
|
module SDoc
|
3
3
|
class DefinitionsReader
|
4
|
-
|
5
|
-
|
6
|
-
|
4
|
+
OPERATIONS = 'operations'.freeze
|
5
|
+
CONFIGURATIONS =
|
6
|
+
%w[service proxy_operations representations glossary messages optional].freeze
|
7
7
|
|
8
8
|
class << self
|
9
|
-
|
10
9
|
# Returns the tree of objects for the service.
|
11
10
|
#
|
12
11
|
# @param [String] base_path The base path of the YML files.
|
@@ -214,6 +213,7 @@ module Angus
|
|
214
213
|
field.type = field_hash['type']
|
215
214
|
field.required = field_hash['required']
|
216
215
|
field.elements_type = field_hash['elements_type']
|
216
|
+
field.optional = field_hash['optional']
|
217
217
|
field
|
218
218
|
end
|
219
219
|
|
@@ -273,6 +273,7 @@ module Angus
|
|
273
273
|
request_element.constraints = element_hash['constraints']
|
274
274
|
request_element.valid_values = element_hash['valid_values']
|
275
275
|
request_element.elements_type = element_hash['elements_type']
|
276
|
+
request_element.optional = element_hash['optional']
|
276
277
|
|
277
278
|
request_element
|
278
279
|
end
|
@@ -306,6 +307,7 @@ module Angus
|
|
306
307
|
response_element.type = element_hash['type']
|
307
308
|
response_element.default = element_hash['default']
|
308
309
|
response_element.elements_type = element_hash['elements_type']
|
310
|
+
response_element.optional = element_hash['optional']
|
309
311
|
|
310
312
|
response_element
|
311
313
|
end
|
@@ -329,9 +331,7 @@ module Angus
|
|
329
331
|
Angus::SDoc::Definitions::Glossary.new(glossary_hash)
|
330
332
|
end
|
331
333
|
private :build_glossary
|
332
|
-
|
333
334
|
end
|
334
|
-
|
335
335
|
end
|
336
336
|
end
|
337
|
-
end
|
337
|
+
end
|
@@ -1 +1 @@
|
|
1
|
-
require_relative 'invalid_service_message'
|
1
|
+
require_relative 'invalid_service_message'
|
@@ -48,8 +48,8 @@ module Angus
|
|
48
48
|
# @option return [String] :description
|
49
49
|
def glossary_term_for_json(glossary_term_definition)
|
50
50
|
{
|
51
|
-
:
|
52
|
-
:
|
51
|
+
long_name: glossary_term_definition.long_name,
|
52
|
+
description: glossary_term_definition.description
|
53
53
|
}
|
54
54
|
end
|
55
55
|
|
@@ -65,10 +65,10 @@ module Angus
|
|
65
65
|
# @option return [Integer] :status_code
|
66
66
|
def message_for_json(message_definition)
|
67
67
|
{
|
68
|
-
:
|
69
|
-
:
|
70
|
-
:
|
71
|
-
:
|
68
|
+
key: message_definition.key,
|
69
|
+
description: message_definition.description,
|
70
|
+
level: message_definition.level,
|
71
|
+
status_code: message_definition.status_code
|
72
72
|
}
|
73
73
|
end
|
74
74
|
|
@@ -88,17 +88,17 @@ module Angus
|
|
88
88
|
# @option return [Array<(see .message_for_json)>] :messages
|
89
89
|
def operation_for_json(operation_definition)
|
90
90
|
data = {
|
91
|
-
:
|
92
|
-
:
|
93
|
-
:
|
94
|
-
:
|
91
|
+
name: operation_definition.name,
|
92
|
+
description: operation_definition.description,
|
93
|
+
path: operation_definition.path,
|
94
|
+
method: operation_definition.http_method
|
95
95
|
}
|
96
96
|
|
97
97
|
if operation_definition.uri_elements && !operation_definition.uri_elements.empty?
|
98
98
|
uri_elements = operation_definition.uri_elements.map do |uri_element|
|
99
99
|
uri_element_for_json(uri_element)
|
100
100
|
end
|
101
|
-
data.merge!({ :
|
101
|
+
data.merge!({ uri: uri_elements })
|
102
102
|
end
|
103
103
|
|
104
104
|
if operation_definition.request_elements && !operation_definition.request_elements.empty?
|
@@ -106,7 +106,7 @@ module Angus
|
|
106
106
|
request_element_for_json(request_element)
|
107
107
|
end
|
108
108
|
|
109
|
-
data.merge!({ :
|
109
|
+
data.merge!({ request: request_elements })
|
110
110
|
end
|
111
111
|
|
112
112
|
if operation_definition.response_elements && !operation_definition.response_elements.empty?
|
@@ -114,7 +114,7 @@ module Angus
|
|
114
114
|
response_element_for_json(response_element)
|
115
115
|
end
|
116
116
|
|
117
|
-
data.merge!({:
|
117
|
+
data.merge!({ response: response_elements })
|
118
118
|
end
|
119
119
|
|
120
120
|
if operation_definition.messages && !operation_definition.messages.empty?
|
@@ -122,7 +122,7 @@ module Angus
|
|
122
122
|
message_for_json(message)
|
123
123
|
end
|
124
124
|
|
125
|
-
data.merge!({:messages
|
125
|
+
data.merge!({ messages: messages })
|
126
126
|
end
|
127
127
|
|
128
128
|
data
|
@@ -139,9 +139,9 @@ module Angus
|
|
139
139
|
# @option return [String] :service
|
140
140
|
def proxy_operation_for_json(proxy_operation_definition)
|
141
141
|
{
|
142
|
-
:
|
143
|
-
:
|
144
|
-
:
|
142
|
+
path: proxy_operation_definition.path,
|
143
|
+
method: proxy_operation_definition.http_method,
|
144
|
+
service: proxy_operation_definition.service_name
|
145
145
|
}
|
146
146
|
end
|
147
147
|
|
@@ -170,17 +170,18 @@ module Angus
|
|
170
170
|
# @option return [String] :elements_type
|
171
171
|
def representation_field_for_json(representation_field_definition)
|
172
172
|
data = {
|
173
|
-
:
|
174
|
-
:
|
175
|
-
:
|
173
|
+
field: representation_field_definition.name,
|
174
|
+
description: representation_field_definition.description,
|
175
|
+
required: representation_field_definition.required,
|
176
|
+
optional: representation_field_definition.optional
|
176
177
|
}
|
177
178
|
|
178
179
|
if representation_field_definition.type
|
179
|
-
data.merge!({:
|
180
|
+
data.merge!({ type: representation_field_definition.type })
|
180
181
|
end
|
181
182
|
|
182
183
|
if representation_field_definition.elements_type
|
183
|
-
data.merge!({:
|
184
|
+
data.merge!({ elements_type: representation_field_definition.elements_type })
|
184
185
|
end
|
185
186
|
|
186
187
|
data
|
@@ -199,17 +200,18 @@ module Angus
|
|
199
200
|
# @option return [String] :elements_type
|
200
201
|
def request_element_for_json(request_element_definition)
|
201
202
|
data = {
|
202
|
-
:
|
203
|
-
:
|
204
|
-
:
|
203
|
+
element: request_element_definition.name,
|
204
|
+
description: request_element_definition.description,
|
205
|
+
required: request_element_definition.required,
|
206
|
+
optional: request_element_definition.optional
|
205
207
|
}
|
206
208
|
|
207
209
|
if request_element_definition.type
|
208
|
-
data.merge!({:
|
210
|
+
data.merge!({ type: request_element_definition.type })
|
209
211
|
end
|
210
212
|
|
211
213
|
if request_element_definition.elements_type
|
212
|
-
data.merge!({:
|
214
|
+
data.merge!({ elements_type: request_element_definition.elements_type })
|
213
215
|
end
|
214
216
|
|
215
217
|
data
|
@@ -228,17 +230,18 @@ module Angus
|
|
228
230
|
# @option return [String] :elements_type
|
229
231
|
def response_element_for_json(response_element_definition)
|
230
232
|
data = {
|
231
|
-
:
|
232
|
-
:
|
233
|
-
:
|
233
|
+
element: response_element_definition.name,
|
234
|
+
description: response_element_definition.description,
|
235
|
+
required: response_element_definition.required,
|
236
|
+
optional: response_element_definition.optional
|
234
237
|
}
|
235
238
|
|
236
239
|
if response_element_definition.type
|
237
|
-
data.merge!({:
|
240
|
+
data.merge!({ type: response_element_definition.type })
|
238
241
|
end
|
239
242
|
|
240
243
|
if response_element_definition.elements_type
|
241
|
-
data.merge!({:
|
244
|
+
data.merge!({ elements_type: response_element_definition.elements_type })
|
242
245
|
end
|
243
246
|
|
244
247
|
data
|
@@ -282,16 +285,16 @@ module Angus
|
|
282
285
|
end
|
283
286
|
|
284
287
|
{
|
285
|
-
:
|
286
|
-
:
|
287
|
-
:
|
288
|
-
:
|
288
|
+
service: {
|
289
|
+
service: service_definition.name,
|
290
|
+
code_name: service_definition.code_name,
|
291
|
+
version: service_definition.version
|
289
292
|
},
|
290
|
-
:
|
291
|
-
:
|
292
|
-
:
|
293
|
-
:
|
294
|
-
:
|
293
|
+
operations: operations,
|
294
|
+
proxy_operations: proxy_operations,
|
295
|
+
representations: representations,
|
296
|
+
messages: messages,
|
297
|
+
glossary: glossary_for_json(service_definition.glossary)
|
295
298
|
}
|
296
299
|
end
|
297
300
|
|
@@ -305,8 +308,8 @@ module Angus
|
|
305
308
|
# @option return [String] :description
|
306
309
|
def uri_element_for_json(uri_element_definition)
|
307
310
|
{
|
308
|
-
:
|
309
|
-
:
|
311
|
+
element: uri_element_definition.name,
|
312
|
+
description: uri_element_definition.description
|
310
313
|
}
|
311
314
|
end
|
312
315
|
|
@@ -314,4 +317,4 @@ module Angus
|
|
314
317
|
|
315
318
|
end
|
316
319
|
end
|
317
|
-
end
|
320
|
+
end
|
@@ -122,6 +122,7 @@
|
|
122
122
|
<td>Name</td>
|
123
123
|
<td>Description</td>
|
124
124
|
<td>Required?</td>
|
125
|
+
<td>Optional?</td>
|
125
126
|
</tr>
|
126
127
|
</thead>
|
127
128
|
<tbody>
|
@@ -144,6 +145,7 @@
|
|
144
145
|
<% end %>
|
145
146
|
</td>
|
146
147
|
<td><%= element.required %></td>
|
148
|
+
<td><%= element.optional %></td>
|
147
149
|
</tr>
|
148
150
|
<% end %>
|
149
151
|
</tbody>
|
@@ -158,6 +160,7 @@
|
|
158
160
|
<td>Name</td>
|
159
161
|
<td>Description</td>
|
160
162
|
<td>Required?</td>
|
163
|
+
<td>Optional?</td>
|
161
164
|
</tr>
|
162
165
|
</thead>
|
163
166
|
<tbody>
|
@@ -176,6 +179,7 @@
|
|
176
179
|
<% end %>
|
177
180
|
</td>
|
178
181
|
<td><%= element.required %></td>
|
182
|
+
<td><%= element.optional %></td>
|
179
183
|
</tr>
|
180
184
|
<% end %>
|
181
185
|
</tbody>
|
@@ -219,6 +223,7 @@
|
|
219
223
|
<td>Name</td>
|
220
224
|
<td>Description</td>
|
221
225
|
<td>Required?</td>
|
226
|
+
<td>Optional?</td>
|
222
227
|
</tr>
|
223
228
|
</thead>
|
224
229
|
<tbody>
|
@@ -234,6 +239,7 @@
|
|
234
239
|
<% end %>
|
235
240
|
</td>
|
236
241
|
<td><%= field.required %></td>
|
242
|
+
<td><%= field.optional %></td>
|
237
243
|
</tr>
|
238
244
|
<% end %>
|
239
245
|
</tbody>
|
@@ -295,4 +301,3 @@
|
|
295
301
|
|
296
302
|
</body>
|
297
303
|
</html>
|
298
|
-
|
@@ -121,6 +121,7 @@
|
|
121
121
|
<td>Nombre</td>
|
122
122
|
<td>Descripción</td>
|
123
123
|
<td>Requerido</td>
|
124
|
+
<td>Opcional</td>
|
124
125
|
</tr>
|
125
126
|
</thead>
|
126
127
|
<tbody>
|
@@ -143,6 +144,7 @@
|
|
143
144
|
<% end %>
|
144
145
|
</td>
|
145
146
|
<td><%= element.required %></td>
|
147
|
+
<td><%= element.optional %></td>
|
146
148
|
</tr>
|
147
149
|
<% end %>
|
148
150
|
</tbody>
|
@@ -157,6 +159,7 @@
|
|
157
159
|
<td>Nombre</td>
|
158
160
|
<td>Descripción</td>
|
159
161
|
<td>Requerido</td>
|
162
|
+
<td>Opcional</td>
|
160
163
|
</tr>
|
161
164
|
</thead>
|
162
165
|
<tbody>
|
@@ -175,6 +178,7 @@
|
|
175
178
|
<% end %>
|
176
179
|
</td>
|
177
180
|
<td><%= element.required %></td>
|
181
|
+
<td><%= element.optional %></td>
|
178
182
|
</tr>
|
179
183
|
<% end %>
|
180
184
|
</tbody>
|
@@ -218,6 +222,7 @@
|
|
218
222
|
<td>Nombre de Atributo</td>
|
219
223
|
<td>Descripción</td>
|
220
224
|
<td>Requerido</td>
|
225
|
+
<td>Opcional</td>
|
221
226
|
</tr>
|
222
227
|
</thead>
|
223
228
|
<tbody>
|
@@ -233,6 +238,7 @@
|
|
233
238
|
<% end %>
|
234
239
|
</td>
|
235
240
|
<td><%= field.required %></td>
|
241
|
+
<td><%= field.optional %></td>
|
236
242
|
</tr>
|
237
243
|
<% end %>
|
238
244
|
</tbody>
|
@@ -293,4 +299,4 @@
|
|
293
299
|
<% end %>
|
294
300
|
|
295
301
|
</body>
|
296
|
-
</html>
|
302
|
+
</html>
|
data/lib/angus/sdoc/version.rb
CHANGED
data/lib/angus/sdoc.rb
CHANGED
data/lib/angus-sdoc.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
require_relative 'angus/sdoc'
|
1
|
+
require_relative 'angus/sdoc'
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: angus-sdoc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pablo Ifran
|
8
8
|
- Adrian Gomez
|
9
9
|
- Gianfranco Zas
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2025-01-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|
@@ -30,32 +30,32 @@ dependencies:
|
|
30
30
|
name: yard
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
|
-
- -
|
33
|
+
- - ">="
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: 0
|
35
|
+
version: '0'
|
36
36
|
type: :development
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
|
-
- -
|
40
|
+
- - ">="
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: 0
|
42
|
+
version: '0'
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: rspec
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
|
-
- - "
|
47
|
+
- - ">="
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '
|
49
|
+
version: '0'
|
50
50
|
type: :development
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
53
53
|
requirements:
|
54
|
-
- - "
|
54
|
+
- - ">="
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
56
|
+
version: '0'
|
57
57
|
- !ruby/object:Gem::Dependency
|
58
|
-
name:
|
58
|
+
name: rspec-its
|
59
59
|
requirement: !ruby/object:Gem::Requirement
|
60
60
|
requirements:
|
61
61
|
- - ">="
|
@@ -68,6 +68,20 @@ dependencies:
|
|
68
68
|
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: factory_bot
|
73
|
+
requirement: !ruby/object:Gem::Requirement
|
74
|
+
requirements:
|
75
|
+
- - "!="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 6.4.5
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: !ruby/object:Gem::Requirement
|
81
|
+
requirements:
|
82
|
+
- - "!="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
version: 6.4.5
|
71
85
|
- !ruby/object:Gem::Dependency
|
72
86
|
name: json_expressions
|
73
87
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,44 +100,44 @@ dependencies:
|
|
86
100
|
name: simplecov
|
87
101
|
requirement: !ruby/object:Gem::Requirement
|
88
102
|
requirements:
|
89
|
-
- -
|
103
|
+
- - ">="
|
90
104
|
- !ruby/object:Gem::Version
|
91
|
-
version: 0
|
105
|
+
version: '0'
|
92
106
|
type: :development
|
93
107
|
prerelease: false
|
94
108
|
version_requirements: !ruby/object:Gem::Requirement
|
95
109
|
requirements:
|
96
|
-
- -
|
110
|
+
- - ">="
|
97
111
|
- !ruby/object:Gem::Version
|
98
|
-
version: 0
|
112
|
+
version: '0'
|
99
113
|
- !ruby/object:Gem::Dependency
|
100
114
|
name: simplecov-rcov
|
101
115
|
requirement: !ruby/object:Gem::Requirement
|
102
116
|
requirements:
|
103
|
-
- -
|
117
|
+
- - ">="
|
104
118
|
- !ruby/object:Gem::Version
|
105
|
-
version: 0
|
119
|
+
version: '0'
|
106
120
|
type: :development
|
107
121
|
prerelease: false
|
108
122
|
version_requirements: !ruby/object:Gem::Requirement
|
109
123
|
requirements:
|
110
|
-
- -
|
124
|
+
- - ">="
|
111
125
|
- !ruby/object:Gem::Version
|
112
|
-
version: 0
|
126
|
+
version: '0'
|
113
127
|
- !ruby/object:Gem::Dependency
|
114
128
|
name: simplecov-rcov-text
|
115
129
|
requirement: !ruby/object:Gem::Requirement
|
116
130
|
requirements:
|
117
|
-
- -
|
131
|
+
- - ">="
|
118
132
|
- !ruby/object:Gem::Version
|
119
|
-
version: 0
|
133
|
+
version: '0'
|
120
134
|
type: :development
|
121
135
|
prerelease: false
|
122
136
|
version_requirements: !ruby/object:Gem::Requirement
|
123
137
|
requirements:
|
124
|
-
- -
|
138
|
+
- - ">="
|
125
139
|
- !ruby/object:Gem::Version
|
126
|
-
version: 0
|
140
|
+
version: '0'
|
127
141
|
- !ruby/object:Gem::Dependency
|
128
142
|
name: ci_reporter
|
129
143
|
requirement: !ruby/object:Gem::Requirement
|
@@ -178,7 +192,7 @@ homepage: https://github.com/Moove-it/angus-sdoc
|
|
178
192
|
licenses:
|
179
193
|
- MIT
|
180
194
|
metadata: {}
|
181
|
-
post_install_message:
|
195
|
+
post_install_message:
|
182
196
|
rdoc_options: []
|
183
197
|
require_paths:
|
184
198
|
- lib
|
@@ -193,9 +207,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
193
207
|
- !ruby/object:Gem::Version
|
194
208
|
version: '0'
|
195
209
|
requirements: []
|
196
|
-
|
197
|
-
|
198
|
-
signing_key:
|
210
|
+
rubygems_version: 3.2.3
|
211
|
+
signing_key:
|
199
212
|
specification_version: 4
|
200
213
|
summary: Expose service API documentation.
|
201
214
|
test_files: []
|