infinum_json_api_setup 0.0.7 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/test.yml +45 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +50 -12
- data/Gemfile +1 -0
- data/Gemfile.lock +1 -0
- data/README.md +8 -0
- data/Rakefile +3 -0
- data/base.gemfile +14 -0
- data/infinum_json_api_setup.gemspec +11 -16
- data/lib/generators/infinum_json_api_setup/templates/config/locales/json_api.en.yml +1 -0
- data/lib/infinum_json_api_setup/json_api/content_negotiation.rb +2 -2
- data/lib/infinum_json_api_setup/json_api/locale_negotiation.rb +45 -0
- data/lib/infinum_json_api_setup/json_api/serializer_options.rb +1 -1
- data/lib/infinum_json_api_setup/rspec/helpers/response_helper.rb +4 -4
- data/lib/infinum_json_api_setup/rspec/matchers/have_empty_data.rb +1 -1
- data/lib/infinum_json_api_setup/rspec/matchers/have_error_pointer.rb +1 -1
- data/lib/infinum_json_api_setup/rspec/matchers/have_resource_count_of.rb +1 -1
- data/lib/infinum_json_api_setup/version.rb +1 -1
- data/lib/infinum_json_api_setup.rb +3 -0
- data/rails.7.1.gemfile +8 -0
- data/rails.7.1.gemfile.lock +361 -0
- data/rails.8.0.gemfile +7 -0
- data/rails.8.0.gemfile.lock +380 -0
- data/spec/dummy/app/controllers/api/v1/base_controller.rb +1 -0
- data/spec/dummy/app/controllers/api/v1/hello_controller.rb +11 -0
- data/spec/dummy/app/controllers/api/v1/locations_controller.rb +7 -13
- data/spec/dummy/app/models/location.rb +1 -1
- data/spec/dummy/config/database.yml +3 -0
- data/spec/dummy/config/environments/production.rb +1 -1
- data/spec/dummy/config/initializers/i18n.rb +3 -0
- data/spec/dummy/config/locales/de.yml +2 -0
- data/spec/dummy/config/locales/json_api.de.yml +22 -0
- data/spec/dummy/config/locales/json_api.en.yml +1 -0
- data/spec/dummy/config/routes.rb +1 -0
- data/spec/infinum_json_api_setup/rspec/helpers/response_helper_spec.rb +234 -0
- data/spec/infinum_json_api_setup/rspec/matchers/have_empty_data_spec.rb +3 -2
- data/spec/rails_helper.rb +2 -6
- data/spec/requests/api/v1/content_negotiation_spec.rb +10 -2
- data/spec/requests/api/v1/error_handling_spec.rb +37 -19
- data/spec/requests/api/v1/locale_negotiation_spec.rb +66 -0
- data/spec/requests/api/v1/responder_spec.rb +1 -1
- data/spec/requests/api/v1/serializer_options_spec.rb +1 -1
- metadata +46 -99
- data/Gemfile +0 -10
- data/Gemfile.lock +0 -268
metadata
CHANGED
|
@@ -1,31 +1,30 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: infinum_json_api_setup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Team Backend @ Infinum
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
13
|
+
name: accept_language
|
|
15
14
|
requirement: !ruby/object:Gem::Requirement
|
|
16
15
|
requirements:
|
|
17
|
-
- - "
|
|
16
|
+
- - "~>"
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0'
|
|
18
|
+
version: '2.0'
|
|
20
19
|
type: :runtime
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
22
|
requirements:
|
|
24
|
-
- - "
|
|
23
|
+
- - "~>"
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0'
|
|
25
|
+
version: '2.0'
|
|
27
26
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
27
|
+
name: jsonapi_parameters
|
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
|
30
29
|
requirements:
|
|
31
30
|
- - ">="
|
|
@@ -39,7 +38,7 @@ dependencies:
|
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
39
|
version: '0'
|
|
41
40
|
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: jsonapi-
|
|
41
|
+
name: jsonapi-query_builder
|
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
|
44
43
|
requirements:
|
|
45
44
|
- - ">="
|
|
@@ -53,21 +52,7 @@ dependencies:
|
|
|
53
52
|
- !ruby/object:Gem::Version
|
|
54
53
|
version: '0'
|
|
55
54
|
- !ruby/object:Gem::Dependency
|
|
56
|
-
name:
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - "~>"
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '0.2'
|
|
62
|
-
type: :runtime
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - "~>"
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '0.2'
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: pagy
|
|
55
|
+
name: jsonapi-serializer
|
|
71
56
|
requirement: !ruby/object:Gem::Requirement
|
|
72
57
|
requirements:
|
|
73
58
|
- - ">="
|
|
@@ -81,21 +66,27 @@ dependencies:
|
|
|
81
66
|
- !ruby/object:Gem::Version
|
|
82
67
|
version: '0'
|
|
83
68
|
- !ruby/object:Gem::Dependency
|
|
84
|
-
name:
|
|
69
|
+
name: json_schemer
|
|
85
70
|
requirement: !ruby/object:Gem::Requirement
|
|
86
71
|
requirements:
|
|
87
72
|
- - ">="
|
|
88
73
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0'
|
|
74
|
+
version: '0.2'
|
|
75
|
+
- - "<"
|
|
76
|
+
- !ruby/object:Gem::Version
|
|
77
|
+
version: '3'
|
|
90
78
|
type: :runtime
|
|
91
79
|
prerelease: false
|
|
92
80
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
81
|
requirements:
|
|
94
82
|
- - ">="
|
|
95
83
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '0'
|
|
84
|
+
version: '0.2'
|
|
85
|
+
- - "<"
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '3'
|
|
97
88
|
- !ruby/object:Gem::Dependency
|
|
98
|
-
name:
|
|
89
|
+
name: ostruct
|
|
99
90
|
requirement: !ruby/object:Gem::Requirement
|
|
100
91
|
requirements:
|
|
101
92
|
- - ">="
|
|
@@ -109,69 +100,27 @@ dependencies:
|
|
|
109
100
|
- !ruby/object:Gem::Version
|
|
110
101
|
version: '0'
|
|
111
102
|
- !ruby/object:Gem::Dependency
|
|
112
|
-
name:
|
|
103
|
+
name: pagy
|
|
113
104
|
requirement: !ruby/object:Gem::Requirement
|
|
114
105
|
requirements:
|
|
115
106
|
- - "~>"
|
|
116
107
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: '0
|
|
118
|
-
type: :
|
|
108
|
+
version: '8.0'
|
|
109
|
+
type: :runtime
|
|
119
110
|
prerelease: false
|
|
120
111
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
112
|
requirements:
|
|
122
113
|
- - "~>"
|
|
123
114
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: '0
|
|
115
|
+
version: '8.0'
|
|
125
116
|
- !ruby/object:Gem::Dependency
|
|
126
|
-
name:
|
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
|
128
|
-
requirements:
|
|
129
|
-
- - ">="
|
|
130
|
-
- !ruby/object:Gem::Version
|
|
131
|
-
version: '0'
|
|
132
|
-
type: :development
|
|
133
|
-
prerelease: false
|
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
-
requirements:
|
|
136
|
-
- - ">="
|
|
137
|
-
- !ruby/object:Gem::Version
|
|
138
|
-
version: '0'
|
|
139
|
-
- !ruby/object:Gem::Dependency
|
|
140
|
-
name: pry-rails
|
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
|
142
|
-
requirements:
|
|
143
|
-
- - ">="
|
|
144
|
-
- !ruby/object:Gem::Version
|
|
145
|
-
version: '0'
|
|
146
|
-
type: :development
|
|
147
|
-
prerelease: false
|
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
-
requirements:
|
|
150
|
-
- - ">="
|
|
151
|
-
- !ruby/object:Gem::Version
|
|
152
|
-
version: '0'
|
|
153
|
-
- !ruby/object:Gem::Dependency
|
|
154
|
-
name: pundit
|
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
|
156
|
-
requirements:
|
|
157
|
-
- - ">="
|
|
158
|
-
- !ruby/object:Gem::Version
|
|
159
|
-
version: '0'
|
|
160
|
-
type: :development
|
|
161
|
-
prerelease: false
|
|
162
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
-
requirements:
|
|
164
|
-
- - ">="
|
|
165
|
-
- !ruby/object:Gem::Version
|
|
166
|
-
version: '0'
|
|
167
|
-
- !ruby/object:Gem::Dependency
|
|
168
|
-
name: rake
|
|
117
|
+
name: rails
|
|
169
118
|
requirement: !ruby/object:Gem::Requirement
|
|
170
119
|
requirements:
|
|
171
120
|
- - ">="
|
|
172
121
|
- !ruby/object:Gem::Version
|
|
173
122
|
version: '0'
|
|
174
|
-
type: :
|
|
123
|
+
type: :runtime
|
|
175
124
|
prerelease: false
|
|
176
125
|
version_requirements: !ruby/object:Gem::Requirement
|
|
177
126
|
requirements:
|
|
@@ -179,27 +128,13 @@ dependencies:
|
|
|
179
128
|
- !ruby/object:Gem::Version
|
|
180
129
|
version: '0'
|
|
181
130
|
- !ruby/object:Gem::Dependency
|
|
182
|
-
name:
|
|
183
|
-
requirement: !ruby/object:Gem::Requirement
|
|
184
|
-
requirements:
|
|
185
|
-
- - "~>"
|
|
186
|
-
- !ruby/object:Gem::Version
|
|
187
|
-
version: '5.0'
|
|
188
|
-
type: :development
|
|
189
|
-
prerelease: false
|
|
190
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
-
requirements:
|
|
192
|
-
- - "~>"
|
|
193
|
-
- !ruby/object:Gem::Version
|
|
194
|
-
version: '5.0'
|
|
195
|
-
- !ruby/object:Gem::Dependency
|
|
196
|
-
name: simplecov
|
|
131
|
+
name: responders
|
|
197
132
|
requirement: !ruby/object:Gem::Requirement
|
|
198
133
|
requirements:
|
|
199
134
|
- - ">="
|
|
200
135
|
- !ruby/object:Gem::Version
|
|
201
136
|
version: '0'
|
|
202
|
-
type: :
|
|
137
|
+
type: :runtime
|
|
203
138
|
prerelease: false
|
|
204
139
|
version_requirements: !ruby/object:Gem::Requirement
|
|
205
140
|
requirements:
|
|
@@ -212,6 +147,7 @@ executables: []
|
|
|
212
147
|
extensions: []
|
|
213
148
|
extra_rdoc_files: []
|
|
214
149
|
files:
|
|
150
|
+
- ".github/workflows/test.yml"
|
|
215
151
|
- ".gitignore"
|
|
216
152
|
- ".overcommit.yml"
|
|
217
153
|
- ".rspec"
|
|
@@ -223,6 +159,7 @@ files:
|
|
|
223
159
|
- Gemfile.lock
|
|
224
160
|
- README.md
|
|
225
161
|
- Rakefile
|
|
162
|
+
- base.gemfile
|
|
226
163
|
- bin/setup
|
|
227
164
|
- infinum_json_api_setup.gemspec
|
|
228
165
|
- lib/generators/infinum_json_api_setup/install_generator.rb
|
|
@@ -232,6 +169,7 @@ files:
|
|
|
232
169
|
- lib/infinum_json_api_setup/json_api/content_negotiation.rb
|
|
233
170
|
- lib/infinum_json_api_setup/json_api/error_handling.rb
|
|
234
171
|
- lib/infinum_json_api_setup/json_api/error_serializer.rb
|
|
172
|
+
- lib/infinum_json_api_setup/json_api/locale_negotiation.rb
|
|
235
173
|
- lib/infinum_json_api_setup/json_api/request_parsing.rb
|
|
236
174
|
- lib/infinum_json_api_setup/json_api/responder.rb
|
|
237
175
|
- lib/infinum_json_api_setup/json_api/serializer_options.rb
|
|
@@ -251,6 +189,10 @@ files:
|
|
|
251
189
|
- lib/infinum_json_api_setup/rspec/matchers/schema_matchers.rb
|
|
252
190
|
- lib/infinum_json_api_setup/rspec/matchers/util/body_parser.rb
|
|
253
191
|
- lib/infinum_json_api_setup/version.rb
|
|
192
|
+
- rails.7.1.gemfile
|
|
193
|
+
- rails.7.1.gemfile.lock
|
|
194
|
+
- rails.8.0.gemfile
|
|
195
|
+
- rails.8.0.gemfile.lock
|
|
254
196
|
- spec/controllers/api/v1/base_controller_spec.rb
|
|
255
197
|
- spec/dummy/Rakefile
|
|
256
198
|
- spec/dummy/app/assets/config/manifest.js
|
|
@@ -258,6 +200,7 @@ files:
|
|
|
258
200
|
- spec/dummy/app/channels/application_cable/channel.rb
|
|
259
201
|
- spec/dummy/app/channels/application_cable/connection.rb
|
|
260
202
|
- spec/dummy/app/controllers/api/v1/base_controller.rb
|
|
203
|
+
- spec/dummy/app/controllers/api/v1/hello_controller.rb
|
|
261
204
|
- spec/dummy/app/controllers/api/v1/locations_controller.rb
|
|
262
205
|
- spec/dummy/app/controllers/application_controller.rb
|
|
263
206
|
- spec/dummy/app/controllers/concerns/.keep
|
|
@@ -291,10 +234,13 @@ files:
|
|
|
291
234
|
- spec/dummy/config/initializers/backtrace_silencers.rb
|
|
292
235
|
- spec/dummy/config/initializers/cors.rb
|
|
293
236
|
- spec/dummy/config/initializers/filter_parameter_logging.rb
|
|
237
|
+
- spec/dummy/config/initializers/i18n.rb
|
|
294
238
|
- spec/dummy/config/initializers/inflections.rb
|
|
295
239
|
- spec/dummy/config/initializers/mime_types.rb
|
|
296
240
|
- spec/dummy/config/initializers/wrap_parameters.rb
|
|
241
|
+
- spec/dummy/config/locales/de.yml
|
|
297
242
|
- spec/dummy/config/locales/en.yml
|
|
243
|
+
- spec/dummy/config/locales/json_api.de.yml
|
|
298
244
|
- spec/dummy/config/locales/json_api.en.yml
|
|
299
245
|
- spec/dummy/config/puma.rb
|
|
300
246
|
- spec/dummy/config/routes.rb
|
|
@@ -306,6 +252,7 @@ files:
|
|
|
306
252
|
- spec/dummy/storage/.keep
|
|
307
253
|
- spec/factories/location.rb
|
|
308
254
|
- spec/factories/location_label.rb
|
|
255
|
+
- spec/infinum_json_api_setup/rspec/helpers/response_helper_spec.rb
|
|
309
256
|
- spec/infinum_json_api_setup/rspec/matchers/have_empty_data_spec.rb
|
|
310
257
|
- spec/infinum_json_api_setup/rspec/matchers/have_error_pointer_spec.rb
|
|
311
258
|
- spec/infinum_json_api_setup/rspec/matchers/have_resource_count_of_spec.rb
|
|
@@ -317,6 +264,7 @@ files:
|
|
|
317
264
|
- spec/rails_helper.rb
|
|
318
265
|
- spec/requests/api/v1/content_negotiation_spec.rb
|
|
319
266
|
- spec/requests/api/v1/error_handling_spec.rb
|
|
267
|
+
- spec/requests/api/v1/locale_negotiation_spec.rb
|
|
320
268
|
- spec/requests/api/v1/responder_spec.rb
|
|
321
269
|
- spec/requests/api/v1/serializer_options_spec.rb
|
|
322
270
|
- spec/spec_helper.rb
|
|
@@ -329,24 +277,23 @@ files:
|
|
|
329
277
|
homepage: https://github.com/infinum/infinum-json-api-setup
|
|
330
278
|
licenses:
|
|
331
279
|
- MIT
|
|
332
|
-
metadata:
|
|
333
|
-
|
|
280
|
+
metadata:
|
|
281
|
+
rubygems_mfa_required: 'true'
|
|
334
282
|
rdoc_options: []
|
|
335
283
|
require_paths:
|
|
336
284
|
- lib
|
|
337
285
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
338
286
|
requirements:
|
|
339
|
-
- - "
|
|
287
|
+
- - ">="
|
|
340
288
|
- !ruby/object:Gem::Version
|
|
341
|
-
version: '2
|
|
289
|
+
version: '3.2'
|
|
342
290
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
343
291
|
requirements:
|
|
344
292
|
- - ">="
|
|
345
293
|
- !ruby/object:Gem::Version
|
|
346
294
|
version: '0'
|
|
347
295
|
requirements: []
|
|
348
|
-
rubygems_version: 3.
|
|
349
|
-
signing_key:
|
|
296
|
+
rubygems_version: 3.6.9
|
|
350
297
|
specification_version: 4
|
|
351
298
|
summary: Infinum JSON:API setup
|
|
352
299
|
test_files: []
|
data/Gemfile
DELETED
data/Gemfile.lock
DELETED
|
@@ -1,268 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
infinum_json_api_setup (0.0.7)
|
|
5
|
-
json_schemer (~> 0.2)
|
|
6
|
-
jsonapi-query_builder
|
|
7
|
-
jsonapi-serializer
|
|
8
|
-
jsonapi_parameters
|
|
9
|
-
pagy
|
|
10
|
-
rails
|
|
11
|
-
responders
|
|
12
|
-
|
|
13
|
-
GEM
|
|
14
|
-
remote: https://rubygems.org/
|
|
15
|
-
specs:
|
|
16
|
-
actioncable (6.1.4.1)
|
|
17
|
-
actionpack (= 6.1.4.1)
|
|
18
|
-
activesupport (= 6.1.4.1)
|
|
19
|
-
nio4r (~> 2.0)
|
|
20
|
-
websocket-driver (>= 0.6.1)
|
|
21
|
-
actionmailbox (6.1.4.1)
|
|
22
|
-
actionpack (= 6.1.4.1)
|
|
23
|
-
activejob (= 6.1.4.1)
|
|
24
|
-
activerecord (= 6.1.4.1)
|
|
25
|
-
activestorage (= 6.1.4.1)
|
|
26
|
-
activesupport (= 6.1.4.1)
|
|
27
|
-
mail (>= 2.7.1)
|
|
28
|
-
actionmailer (6.1.4.1)
|
|
29
|
-
actionpack (= 6.1.4.1)
|
|
30
|
-
actionview (= 6.1.4.1)
|
|
31
|
-
activejob (= 6.1.4.1)
|
|
32
|
-
activesupport (= 6.1.4.1)
|
|
33
|
-
mail (~> 2.5, >= 2.5.4)
|
|
34
|
-
rails-dom-testing (~> 2.0)
|
|
35
|
-
actionpack (6.1.4.1)
|
|
36
|
-
actionview (= 6.1.4.1)
|
|
37
|
-
activesupport (= 6.1.4.1)
|
|
38
|
-
rack (~> 2.0, >= 2.0.9)
|
|
39
|
-
rack-test (>= 0.6.3)
|
|
40
|
-
rails-dom-testing (~> 2.0)
|
|
41
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
42
|
-
actiontext (6.1.4.1)
|
|
43
|
-
actionpack (= 6.1.4.1)
|
|
44
|
-
activerecord (= 6.1.4.1)
|
|
45
|
-
activestorage (= 6.1.4.1)
|
|
46
|
-
activesupport (= 6.1.4.1)
|
|
47
|
-
nokogiri (>= 1.8.5)
|
|
48
|
-
actionview (6.1.4.1)
|
|
49
|
-
activesupport (= 6.1.4.1)
|
|
50
|
-
builder (~> 3.1)
|
|
51
|
-
erubi (~> 1.4)
|
|
52
|
-
rails-dom-testing (~> 2.0)
|
|
53
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
54
|
-
activejob (6.1.4.1)
|
|
55
|
-
activesupport (= 6.1.4.1)
|
|
56
|
-
globalid (>= 0.3.6)
|
|
57
|
-
activemodel (6.1.4.1)
|
|
58
|
-
activesupport (= 6.1.4.1)
|
|
59
|
-
activerecord (6.1.4.1)
|
|
60
|
-
activemodel (= 6.1.4.1)
|
|
61
|
-
activesupport (= 6.1.4.1)
|
|
62
|
-
activestorage (6.1.4.1)
|
|
63
|
-
actionpack (= 6.1.4.1)
|
|
64
|
-
activejob (= 6.1.4.1)
|
|
65
|
-
activerecord (= 6.1.4.1)
|
|
66
|
-
activesupport (= 6.1.4.1)
|
|
67
|
-
marcel (~> 1.0.0)
|
|
68
|
-
mini_mime (>= 1.1.0)
|
|
69
|
-
activesupport (6.1.4.1)
|
|
70
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
71
|
-
i18n (>= 1.6, < 2)
|
|
72
|
-
minitest (>= 5.1)
|
|
73
|
-
tzinfo (~> 2.0)
|
|
74
|
-
zeitwerk (~> 2.3)
|
|
75
|
-
ast (2.4.2)
|
|
76
|
-
builder (3.2.4)
|
|
77
|
-
bundler-audit (0.8.0)
|
|
78
|
-
bundler (>= 1.2.0, < 3)
|
|
79
|
-
thor (~> 1.0)
|
|
80
|
-
childprocess (4.1.0)
|
|
81
|
-
coderay (1.1.3)
|
|
82
|
-
concurrent-ruby (1.1.9)
|
|
83
|
-
crass (1.0.6)
|
|
84
|
-
diff-lcs (1.4.4)
|
|
85
|
-
docile (1.4.0)
|
|
86
|
-
ecma-re-validator (0.3.0)
|
|
87
|
-
regexp_parser (~> 2.0)
|
|
88
|
-
erubi (1.10.0)
|
|
89
|
-
factory_bot (6.2.0)
|
|
90
|
-
activesupport (>= 5.0.0)
|
|
91
|
-
faker (2.18.0)
|
|
92
|
-
i18n (>= 1.6, < 2)
|
|
93
|
-
globalid (0.5.2)
|
|
94
|
-
activesupport (>= 5.0)
|
|
95
|
-
hana (1.3.7)
|
|
96
|
-
i18n (1.8.10)
|
|
97
|
-
concurrent-ruby (~> 1.0)
|
|
98
|
-
iniparse (1.5.0)
|
|
99
|
-
json_schemer (0.2.18)
|
|
100
|
-
ecma-re-validator (~> 0.3)
|
|
101
|
-
hana (~> 1.3)
|
|
102
|
-
regexp_parser (~> 2.0)
|
|
103
|
-
uri_template (~> 0.7)
|
|
104
|
-
jsonapi-query_builder (0.2.1)
|
|
105
|
-
activerecord (>= 5)
|
|
106
|
-
pagy (>= 3.5)
|
|
107
|
-
jsonapi-serializer (2.2.0)
|
|
108
|
-
activesupport (>= 4.2)
|
|
109
|
-
jsonapi_parameters (2.3.0)
|
|
110
|
-
actionpack (>= 4.1.8)
|
|
111
|
-
activesupport (>= 4.1.8)
|
|
112
|
-
loofah (2.12.0)
|
|
113
|
-
crass (~> 1.0.2)
|
|
114
|
-
nokogiri (>= 1.5.9)
|
|
115
|
-
mail (2.7.1)
|
|
116
|
-
mini_mime (>= 0.1.1)
|
|
117
|
-
marcel (1.0.2)
|
|
118
|
-
method_source (1.0.0)
|
|
119
|
-
mini_mime (1.1.2)
|
|
120
|
-
mini_portile2 (2.6.1)
|
|
121
|
-
minitest (5.14.4)
|
|
122
|
-
nio4r (2.5.8)
|
|
123
|
-
nokogiri (1.12.5)
|
|
124
|
-
mini_portile2 (~> 2.6.1)
|
|
125
|
-
racc (~> 1.4)
|
|
126
|
-
overcommit (0.58.0)
|
|
127
|
-
childprocess (>= 0.6.3, < 5)
|
|
128
|
-
iniparse (~> 1.4)
|
|
129
|
-
rexml (~> 3.2)
|
|
130
|
-
pagy (4.11.0)
|
|
131
|
-
parallel (1.20.1)
|
|
132
|
-
parser (3.0.2.0)
|
|
133
|
-
ast (~> 2.4.1)
|
|
134
|
-
pg (1.2.3)
|
|
135
|
-
pry (0.14.1)
|
|
136
|
-
coderay (~> 1.1)
|
|
137
|
-
method_source (~> 1.0)
|
|
138
|
-
pry-rails (0.3.9)
|
|
139
|
-
pry (>= 0.10.4)
|
|
140
|
-
pundit (2.1.0)
|
|
141
|
-
activesupport (>= 3.0.0)
|
|
142
|
-
racc (1.5.2)
|
|
143
|
-
rack (2.2.3)
|
|
144
|
-
rack-test (1.1.0)
|
|
145
|
-
rack (>= 1.0, < 3)
|
|
146
|
-
rails (6.1.4.1)
|
|
147
|
-
actioncable (= 6.1.4.1)
|
|
148
|
-
actionmailbox (= 6.1.4.1)
|
|
149
|
-
actionmailer (= 6.1.4.1)
|
|
150
|
-
actionpack (= 6.1.4.1)
|
|
151
|
-
actiontext (= 6.1.4.1)
|
|
152
|
-
actionview (= 6.1.4.1)
|
|
153
|
-
activejob (= 6.1.4.1)
|
|
154
|
-
activemodel (= 6.1.4.1)
|
|
155
|
-
activerecord (= 6.1.4.1)
|
|
156
|
-
activestorage (= 6.1.4.1)
|
|
157
|
-
activesupport (= 6.1.4.1)
|
|
158
|
-
bundler (>= 1.15.0)
|
|
159
|
-
railties (= 6.1.4.1)
|
|
160
|
-
sprockets-rails (>= 2.0.0)
|
|
161
|
-
rails-dom-testing (2.0.3)
|
|
162
|
-
activesupport (>= 4.2.0)
|
|
163
|
-
nokogiri (>= 1.6)
|
|
164
|
-
rails-html-sanitizer (1.4.2)
|
|
165
|
-
loofah (~> 2.3)
|
|
166
|
-
railties (6.1.4.1)
|
|
167
|
-
actionpack (= 6.1.4.1)
|
|
168
|
-
activesupport (= 6.1.4.1)
|
|
169
|
-
method_source
|
|
170
|
-
rake (>= 0.13)
|
|
171
|
-
thor (~> 1.0)
|
|
172
|
-
rainbow (3.0.0)
|
|
173
|
-
rake (13.0.6)
|
|
174
|
-
regexp_parser (2.1.1)
|
|
175
|
-
responders (3.0.1)
|
|
176
|
-
actionpack (>= 5.0)
|
|
177
|
-
railties (>= 5.0)
|
|
178
|
-
rexml (3.2.5)
|
|
179
|
-
rspec-core (3.10.1)
|
|
180
|
-
rspec-support (~> 3.10.0)
|
|
181
|
-
rspec-expectations (3.10.1)
|
|
182
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
183
|
-
rspec-support (~> 3.10.0)
|
|
184
|
-
rspec-mocks (3.10.2)
|
|
185
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
186
|
-
rspec-support (~> 3.10.0)
|
|
187
|
-
rspec-rails (5.0.1)
|
|
188
|
-
actionpack (>= 5.2)
|
|
189
|
-
activesupport (>= 5.2)
|
|
190
|
-
railties (>= 5.2)
|
|
191
|
-
rspec-core (~> 3.10)
|
|
192
|
-
rspec-expectations (~> 3.10)
|
|
193
|
-
rspec-mocks (~> 3.10)
|
|
194
|
-
rspec-support (~> 3.10)
|
|
195
|
-
rspec-support (3.10.2)
|
|
196
|
-
rubocop (1.20.0)
|
|
197
|
-
parallel (~> 1.10)
|
|
198
|
-
parser (>= 3.0.0.0)
|
|
199
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
200
|
-
regexp_parser (>= 1.8, < 3.0)
|
|
201
|
-
rexml
|
|
202
|
-
rubocop-ast (>= 1.9.1, < 2.0)
|
|
203
|
-
ruby-progressbar (~> 1.7)
|
|
204
|
-
unicode-display_width (>= 1.4.0, < 3.0)
|
|
205
|
-
rubocop-ast (1.11.0)
|
|
206
|
-
parser (>= 3.0.1.1)
|
|
207
|
-
rubocop-infinum (0.5.0)
|
|
208
|
-
rubocop
|
|
209
|
-
rubocop-performance
|
|
210
|
-
rubocop-rails
|
|
211
|
-
rubocop-rspec
|
|
212
|
-
rubocop-performance (1.11.5)
|
|
213
|
-
rubocop (>= 1.7.0, < 2.0)
|
|
214
|
-
rubocop-ast (>= 0.4.0)
|
|
215
|
-
rubocop-rails (2.11.3)
|
|
216
|
-
activesupport (>= 4.2.0)
|
|
217
|
-
rack (>= 1.1)
|
|
218
|
-
rubocop (>= 1.7.0, < 2.0)
|
|
219
|
-
rubocop-rake (0.6.0)
|
|
220
|
-
rubocop (~> 1.0)
|
|
221
|
-
rubocop-rspec (2.4.0)
|
|
222
|
-
rubocop (~> 1.0)
|
|
223
|
-
rubocop-ast (>= 1.1.0)
|
|
224
|
-
ruby-progressbar (1.11.0)
|
|
225
|
-
simplecov (0.21.2)
|
|
226
|
-
docile (~> 1.1)
|
|
227
|
-
simplecov-html (~> 0.11)
|
|
228
|
-
simplecov_json_formatter (~> 0.1)
|
|
229
|
-
simplecov-html (0.12.3)
|
|
230
|
-
simplecov_json_formatter (0.1.3)
|
|
231
|
-
sprockets (4.0.2)
|
|
232
|
-
concurrent-ruby (~> 1.0)
|
|
233
|
-
rack (> 1, < 3)
|
|
234
|
-
sprockets-rails (3.2.2)
|
|
235
|
-
actionpack (>= 4.0)
|
|
236
|
-
activesupport (>= 4.0)
|
|
237
|
-
sprockets (>= 3.0.0)
|
|
238
|
-
thor (1.1.0)
|
|
239
|
-
tzinfo (2.0.4)
|
|
240
|
-
concurrent-ruby (~> 1.0)
|
|
241
|
-
unicode-display_width (2.0.0)
|
|
242
|
-
uri_template (0.7.0)
|
|
243
|
-
websocket-driver (0.7.5)
|
|
244
|
-
websocket-extensions (>= 0.1.0)
|
|
245
|
-
websocket-extensions (0.1.5)
|
|
246
|
-
zeitwerk (2.4.2)
|
|
247
|
-
|
|
248
|
-
PLATFORMS
|
|
249
|
-
ruby
|
|
250
|
-
|
|
251
|
-
DEPENDENCIES
|
|
252
|
-
bundler-audit
|
|
253
|
-
factory_bot (~> 6.2)
|
|
254
|
-
faker (~> 2.18)
|
|
255
|
-
infinum_json_api_setup!
|
|
256
|
-
overcommit (~> 0.58)
|
|
257
|
-
pg
|
|
258
|
-
pry-rails
|
|
259
|
-
pundit
|
|
260
|
-
rake
|
|
261
|
-
rspec-rails (~> 5.0)
|
|
262
|
-
rubocop (~> 1.0)
|
|
263
|
-
rubocop-infinum
|
|
264
|
-
rubocop-rake
|
|
265
|
-
simplecov
|
|
266
|
-
|
|
267
|
-
BUNDLED WITH
|
|
268
|
-
2.1.4
|