r2-oas 0.2.0 → 0.3.4

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.
Files changed (64) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +41 -0
  3. data/GEMSPEC.md +19 -22
  4. data/README.ja.md +61 -0
  5. data/README.md +60 -0
  6. data/lib/r2-oas.rb +2 -4
  7. data/lib/r2-oas/app_configuration.rb +1 -1
  8. data/lib/r2-oas/deploy/client.rb +33 -6
  9. data/lib/r2-oas/lib/core_ext/hash/deep_merge.rb +44 -0
  10. data/lib/r2-oas/lib/core_ext/object/blank.rb +135 -0
  11. data/lib/r2-oas/schema/editor.rb +13 -2
  12. data/lib/r2-oas/schema/ui.rb +0 -1
  13. data/lib/r2-oas/task_logging.rb +0 -4
  14. data/lib/r2-oas/tasks/common.rake +0 -1
  15. data/lib/r2-oas/tasks/tool.rake +9 -2
  16. data/lib/r2-oas/version.rb +1 -1
  17. data/r2-oas.gemspec +12 -13
  18. metadata +61 -78
  19. data/.github/ISSUE_TEMPLATE.md +0 -12
  20. data/.github/PULL_REQUEST_TEMPLATE.md +0 -12
  21. data/.gitignore +0 -12
  22. data/.rspec +0 -3
  23. data/.rubocop.yml +0 -7
  24. data/.rubocop_todo.yml +0 -249
  25. data/.travis.yml +0 -24
  26. data/CODE_OF_CONDUCT.md +0 -74
  27. data/Gemfile +0 -12
  28. data/Gemfile.lock +0 -224
  29. data/Rakefile +0 -8
  30. data/bin/console +0 -12
  31. data/bin/setup +0 -8
  32. data/docs/.nojekyll +0 -0
  33. data/docs/README.md +0 -173
  34. data/docs/_sidebar.md +0 -23
  35. data/docs/attention/if_clash.md +0 -19
  36. data/docs/index.html +0 -29
  37. data/docs/schema/3.0.0.md +0 -155
  38. data/docs/setting/COC.md +0 -14
  39. data/docs/setting/CORS.md +0 -22
  40. data/docs/setting/configure.md +0 -176
  41. data/docs/usage/analyze_docs.md +0 -875
  42. data/docs/usage/clean_docs.md +0 -19
  43. data/docs/usage/deploy_docs.md +0 -839
  44. data/docs/usage/display_paths_list.md +0 -35
  45. data/docs/usage/display_paths_stats.md +0 -54
  46. data/docs/usage/edit_docs.md +0 -218
  47. data/docs/usage/generate_docs.md +0 -412
  48. data/docs/usage/monitor_docs.md +0 -219
  49. data/docs/usage/use_hook_methods.md +0 -236
  50. data/docs/usage/use_hook_to_generate_docs.md +0 -235
  51. data/docs/usage/use_schema_namespace.md +0 -181
  52. data/docs/usage/use_tag_namespace.md +0 -180
  53. data/docs/usage/view_docs.md +0 -262
  54. data/lib/r2-oas/deploy/swagger-ui/dist/favicon-16x16.png +0 -0
  55. data/lib/r2-oas/deploy/swagger-ui/dist/favicon-32x32.png +0 -0
  56. data/lib/r2-oas/deploy/swagger-ui/dist/oauth2-redirect.html +0 -68
  57. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-bundle.js +0 -134
  58. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-bundle.js.map +0 -1
  59. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-standalone-preset.js +0 -22
  60. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-standalone-preset.js.map +0 -1
  61. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.css +0 -4
  62. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.css.map +0 -1
  63. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.js +0 -9
  64. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.js.map +0 -1
data/.gitignore DELETED
@@ -1,12 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- # rspec failure tracking
11
- .rspec_status
12
- /example*
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
@@ -1,7 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- AllCops:
4
- TargetRubyVersion: 2.3
5
- Exclude:
6
- - 'example*/**/*'
7
- - 'vendor/**/*'
@@ -1,249 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2019-06-29 18:42:52 +0900 using RuboCop version 0.72.0.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
8
-
9
- # Offense count: 6135
10
- # Cop supports --auto-correct.
11
- # Configuration parameters: AutoCorrect, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
12
- # URISchemes: http, https
13
- Metrics/LineLength:
14
- Max: 2088
15
-
16
- Metrics/AbcSize:
17
- # The ABC size is a calculated magnitude, so this number can be a Fixnum or
18
- # a Float.
19
- Max: 20
20
- Exclude:
21
- - "lib/r2-oas/schema/v3/generator/schema_generator.rb"
22
- - "lib/r2-oas/schema/v3/analyzer.rb"
23
- - "lib/r2-oas/schema/v3/generator/components/request_body_generator.rb"
24
- - "lib/r2-oas/schema/v3/manager/pathname_manager.rb"
25
- - "lib/r2-oas/schema/v3/manager/diff/base_hash_diff_manager.rb"
26
- - "lib/r2-oas/routing/components/request_component.rb"
27
- - "spec/r2-oas/schema/v3/object/components/schema_object_spec.rb"
28
- - "spec/support/helpers/config_helper.rb"
29
- - "lib/r2-oas/schema/v3/generator/doc_generator.rb"
30
-
31
- Style/Documentation:
32
- Enabled: false
33
-
34
- Style/GuardClause:
35
- Enabled: false
36
-
37
- Metrics/BlockLength:
38
- Exclude:
39
- - "r2-oas.gemspec"
40
- - "lib/r2-oas/tasks/main.rake"
41
- - "lib/r2-oas/tasks/tool.rake"
42
- - "spec/r2-oas/routing/adjustor_spec.rb"
43
- - "spec/r2-oas/routing/components/request_component_spec.rb"
44
- - "spec/r2-oas/schema/v3/object/paths_object_spec.rb"
45
- - "spec/r2-oas/schema/v3/object/external_document_object_spec.rb"
46
- - "spec/r2-oas/schema/v3/manager/pathname_manager_spec.rb"
47
- - "spec/r2-oas/schema/v3/manager/diff/base_hash_diff_manager_spec.rb"
48
- - "spec/r2-oas/schema/v3/manager/file/base_file_manager_spec.rb"
49
- - "spec/r2-oas/routing/parser_spec.rb"
50
- - "spec/r2-oas/routing/components/path_component_spec.rb"
51
- - "spec/r2-oas/schema/v3/object/components/request_body_object_spec.rb"
52
- - "spec/r2-oas/schema/v3/object/components/schema_object_spec.rb"
53
- - "spec/r2-oas/schema/v3/object/path_item_object_spec.rb"
54
- - "spec/r2-oas/configuration/paths_config_spec.rb"
55
- - "spec/r2-oas/tasks/main_spec.rb"
56
- - "spec/r2-oas/tasks/tool_spec.rb"
57
- - "spec/r2-oas/configuration_spec.rb"
58
- - "spec/r2-oas/schema/v3/generator_spec.rb"
59
- - "spec/r2-oas/schema/v3/builder_spec.rb"
60
- - "spec/r2-oas/schema/v3/analyzer_spec.rb"
61
- - "spec/support/helpers/config_helper.rb"
62
- - "spec/r2-oas/schema/v3/object/components_object_spec.rb"
63
- - "spec/r2-oas/schema/v3/object/base_object_spec.rb"
64
- - "spec/r2-oas/schema/v3/manager/diff/base_array_diff_manager_spec.rb"
65
- - "spec/r2-oas/schema/v3/manager/file/include_ref_base_file_manager_spec.rb"
66
- - "spec/r2-oas/schema/v3/generator/base_generator_spec.rb"
67
- - "spec/r2-oas/schema/v3/builder/base_builder_spec.rb"
68
- - "spec/r2-oas/schema/v3/object/openapi_object_spec.rb"
69
- - "spec/r2-oas/schema/v3/object/info_object_spec.rb"
70
-
71
- Lint/AmbiguousOperator:
72
- Exclude:
73
- - "lib/r2-oas/app_configuration/swagger.rb"
74
- - "lib/r2-oas/app_configuration/tool/paths/stats.rb"
75
- - "lib/r2-oas/app_configuration/swagger/ui.rb"
76
- - "lib/r2-oas/app_configuration/swagger/editor.rb"
77
- - "lib/r2-oas/app_configuration/tool.rb"
78
- - "lib/r2-oas/configuration.rb"
79
- - "lib/r2-oas/app_configuration/server.rb"
80
- - "lib/r2-oas/schema/v3/object/base_object.rb"
81
- - "lib/r2-oas/base.rb"
82
- - "lib/r2-oas/routing/parser.rb"
83
- - "lib/r2-oas/app_configuration.rb"
84
- - "lib/r2-oas/pluggable_configuration.rb"
85
-
86
- Metrics/MethodLength:
87
- Exclude:
88
- - "lib/r2-oas/logger/stdout_logger.rb"
89
- - "lib/r2-oas/routing/adjustor.rb"
90
- - "lib/r2-oas/routing/parser.rb"
91
- - "lib/r2-oas/hooks/hook.rb"
92
- - "lib/r2-oas/task_logging.rb"
93
- - "lib/r2-oas/schema/ui.rb"
94
- - "lib/r2-oas/schema/editor.rb"
95
- - "lib/r2-oas/shared/sortable.rb"
96
- - "lib/r2-oas/app_configuration.rb"
97
- - "lib/r2-oas/schema/v3/analyzer/path_analyzer.rb"
98
- - "lib/r2-oas/schema/v3/analyzer/base_analyzer.rb"
99
- - "lib/r2-oas/schema/v3/analyzer/components/request_bodies_analyzer.rb"
100
- - "lib/r2-oas/schema/v3/analyzer/components/schemas_analyzer.rb"
101
- - "lib/r2-oas/schema/v3/analyzer/tag_analyzer.rb"
102
- - "lib/r2-oas/schema/v3/analyzer.rb"
103
- - "lib/r2-oas/schema/v3/object/paths_object.rb"
104
- - "lib/r2-oas/schema/v3/object/components_object.rb"
105
- - "lib/r2-oas/schema/v3/object/path_item_object.rb"
106
- - "lib/r2-oas/schema/v3/object/info_object.rb"
107
- - "lib/r2-oas/schema/v3/manager/diff/base_array_diff_manager.rb"
108
- - "lib/r2-oas/schema/v3/manager/diff/base_hash_diff_manager.rb"
109
- - "lib/r2-oas/schema/v3/manager/file/components/request_body_file_manager.rb"
110
- - "lib/r2-oas/schema/v3/manager/file/path_item_file_manager.rb"
111
- - "lib/r2-oas/schema/v3/manager/file/include_ref_base_file_manager.rb"
112
- - "lib/r2-oas/schema/v3/manager/pathname_manager.rb"
113
- - "lib/r2-oas/schema/v3/generator/path_generator.rb"
114
- - "lib/r2-oas/schema/v3/generator/components/request_body_generator.rb"
115
- - "lib/r2-oas/schema/v3/generator/schema_generator.rb"
116
- - "lib/r2-oas/schema/v3/generator/components/schema_generator.rb"
117
- - "lib/r2-oas/schema/v3/generator/doc_generator.rb"
118
- - "lib/r2-oas/schema/v3/builder/doc_builder.rb"
119
- - "lib/r2-oas/schema/v3/object/components/request_body_object.rb"
120
- - "lib/r2-oas/schema/v3/squeezer/path_squeezer.rb"
121
- - "lib/r2-oas/schema/v3/generator/components/object_generator.rb"
122
- - "lib/r2-oas/routing/components/request_component.rb"
123
- - "spec/support/helpers/config_helper.rb"
124
- - "lib/r2-oas/schema/v3/analyzer/components/object_analyzer.rb"
125
- - "lib/r2-oas/store.rb"
126
-
127
- Metrics/CyclomaticComplexity:
128
- Exclude:
129
- - "lib/r2-oas/logger/stdout_logger.rb"
130
- - "lib/r2-oas/schema/v3/manager/pathname_manager.rb"
131
- - "lib/r2-oas/schema/v3/generator/doc_generator.rb"
132
-
133
- Naming/ConstantName:
134
- Exclude:
135
- - "lib/r2-oas/logger/stdout_logger.rb"
136
-
137
- Naming/PredicateName:
138
- Exclude:
139
- - "lib/r2-oas/hooks/hook.rb"
140
- - "lib/r2-oas/plugins/schema/v3/object/hookable_base_object.rb"
141
-
142
- Style/DoubleNegation:
143
- Exclude:
144
- - "lib/r2-oas/hooks/hook.rb"
145
-
146
- Style/MultilineBlockChain:
147
- Exclude:
148
- - "lib/r2-oas/routing/parser.rb"
149
-
150
- Naming/MemoizedInstanceVariableName:
151
- Exclude:
152
- - "lib/r2-oas/configuration.rb"
153
-
154
- Naming/AccessorMethodName:
155
- Exclude:
156
- - "lib/r2-oas/configuration.rb"
157
- - "lib/r2-oas/app_configuration.rb"
158
- - "lib/r2-oas/pluggable_configuration.rb"
159
-
160
- Style/AsciiComments:
161
- Exclude:
162
- - "lib/r2-oas/logger/stdout_logger.rb"
163
- - "lib/r2-oas/schema/v3/analyzer/path_analyzer.rb"
164
-
165
- Lint/UnderscorePrefixedVariableName:
166
- Exclude:
167
- - "lib/r2-oas/logger/stdout_logger.rb"
168
- - "lib/r2-oas/schema/v3/object/components/request_body_object.rb"
169
-
170
- Lint/UselessAccessModifier:
171
- Exclude:
172
- - "lib/r2-oas/pluggable_configuration.rb"
173
-
174
- Style/IdenticalConditionalBranches:
175
- Exclude:
176
- - "lib/r2-oas/schema/editor.rb"
177
-
178
- Style/ClassVars:
179
- Exclude:
180
- - "lib/r2-oas/plugins/schema/v3/object/hookable_base_object.rb"
181
-
182
- Style/AccessModifierDeclarations:
183
- Exclude:
184
- - "lib/r2-oas/app_configuration.rb"
185
-
186
- Style/NumericPredicate:
187
- Exclude:
188
- - "lib/r2-oas/schema/v3/generator/base_generator.rb"
189
- - "lib/r2-oas/schema/v3/builder/base_builder.rb"
190
-
191
- Metrics/ClassLength:
192
- Exclude:
193
- - "lib/r2-oas/schema/v3/object/path_item_object.rb"
194
-
195
- Metrics/ParameterLists:
196
- Exclude:
197
- - "lib/r2-oas/schema/v3/object/path_item_object.rb"
198
- - "lib/r2-oas/schema/v3/object/components/schema_object.rb"
199
- - "spec/r2-oas/schema/v3/object/components/schema_object_spec.rb"
200
-
201
- Layout/EndAlignment:
202
- Exclude:
203
- - "lib/r2-oas/shared/sortable.rb"
204
- - "lib/r2-oas/schema/v3/generator/doc_generator.rb"
205
- - "lib/r2-oas/schema/v3/builder/doc_builder.rb"
206
-
207
- Security/YAMLLoad:
208
- Exclude:
209
- - "lib/r2-oas/schema/editor.rb"
210
-
211
- Naming/FileName:
212
- Exclude:
213
- - "spec/r2-oas_spec.rb"
214
- - "lib/r2-oas.rb"
215
-
216
- Naming/MethodName:
217
- Exclude:
218
- - "spec/support/helpers/create_helper.rb"
219
- - "spec/support/helpers/path_helper.rb"
220
-
221
- Naming/HeredocDelimiterNaming:
222
- Exclude:
223
- - "spec/r2-oas/configuration/paths_config_spec.rb"
224
- - "r2-oas.gemspec"
225
-
226
- Style/ClassAndModuleChildren:
227
- Exclude:
228
- - "spec/dummy_app/controllers/api/v1/tasks_controller.rb"
229
-
230
- Lint/RequireParentheses:
231
- Exclude:
232
- - "spec/r2-oas/schema/v3/object/components/schema_object_spec.rb"
233
-
234
- Style/IfUnlessModifier:
235
- Exclude:
236
- - "lib/r2-oas/schema/editor.rb"
237
-
238
- Security/MarshalLoad:
239
- Enabled: false
240
-
241
- Metrics/PerceivedComplexity:
242
- Exclude:
243
- - "lib/r2-oas/schema/v3/generator/doc_generator.rb"
244
-
245
- Lint/UselessAssignment:
246
- Enabled: false
247
-
248
- Style/NestedParenthesizedCalls:
249
- Enabled: false
@@ -1,24 +0,0 @@
1
- ---
2
- sudo: false
3
-
4
- language: ruby
5
-
6
- cache: bundler
7
-
8
- rvm:
9
- - 2.5.1
10
- - 2.5.7
11
- - 2.6.5
12
-
13
- before_install: gem install bundler -v 1.17.3
14
-
15
- gemfile:
16
- - Gemfile
17
- bundler_args: "--without development --deployment"
18
-
19
- install:
20
- - bundle install
21
-
22
- script:
23
- - bundle exec rubocop --fail-level=W
24
- - bundle exec rspec spec --exclude-pattern "spec/r2-oas/tasks/tool_spec.rb,spec/r2-oas/tool/paths/stats_spec.rb"
@@ -1,74 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at te108186@gmail.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile DELETED
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- source 'https://rubygems.org'
4
-
5
- git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
-
7
- # Specify your gem's dependencies in r2-oas.gemspec
8
- gemspec
9
-
10
- group :test do
11
- gem 'sqlite3'
12
- end
@@ -1,224 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- r2-oas (0.2.0)
5
- docker-api (~> 1.34.2)
6
- easy_diff (~> 1.0.0)
7
- eventmachine (~> 1.2.0)
8
- key_flatten (~> 1.0.0)
9
- paint
10
- rails (>= 4.2.5)
11
- terminal-table (~> 1.6.0)
12
- watir (~> 6.16.5)
13
-
14
- GEM
15
- remote: https://rubygems.org/
16
- specs:
17
- actioncable (6.0.2.2)
18
- actionpack (= 6.0.2.2)
19
- nio4r (~> 2.0)
20
- websocket-driver (>= 0.6.1)
21
- actionmailbox (6.0.2.2)
22
- actionpack (= 6.0.2.2)
23
- activejob (= 6.0.2.2)
24
- activerecord (= 6.0.2.2)
25
- activestorage (= 6.0.2.2)
26
- activesupport (= 6.0.2.2)
27
- mail (>= 2.7.1)
28
- actionmailer (6.0.2.2)
29
- actionpack (= 6.0.2.2)
30
- actionview (= 6.0.2.2)
31
- activejob (= 6.0.2.2)
32
- mail (~> 2.5, >= 2.5.4)
33
- rails-dom-testing (~> 2.0)
34
- actionpack (6.0.2.2)
35
- actionview (= 6.0.2.2)
36
- activesupport (= 6.0.2.2)
37
- rack (~> 2.0, >= 2.0.8)
38
- rack-test (>= 0.6.3)
39
- rails-dom-testing (~> 2.0)
40
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
41
- actiontext (6.0.2.2)
42
- actionpack (= 6.0.2.2)
43
- activerecord (= 6.0.2.2)
44
- activestorage (= 6.0.2.2)
45
- activesupport (= 6.0.2.2)
46
- nokogiri (>= 1.8.5)
47
- actionview (6.0.2.2)
48
- activesupport (= 6.0.2.2)
49
- builder (~> 3.1)
50
- erubi (~> 1.4)
51
- rails-dom-testing (~> 2.0)
52
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
53
- activejob (6.0.2.2)
54
- activesupport (= 6.0.2.2)
55
- globalid (>= 0.3.6)
56
- activemodel (6.0.2.2)
57
- activesupport (= 6.0.2.2)
58
- activerecord (6.0.2.2)
59
- activemodel (= 6.0.2.2)
60
- activesupport (= 6.0.2.2)
61
- activestorage (6.0.2.2)
62
- actionpack (= 6.0.2.2)
63
- activejob (= 6.0.2.2)
64
- activerecord (= 6.0.2.2)
65
- marcel (~> 0.3.1)
66
- activesupport (6.0.2.2)
67
- concurrent-ruby (~> 1.0, >= 1.0.2)
68
- i18n (>= 0.7, < 2)
69
- minitest (~> 5.1)
70
- tzinfo (~> 1.1)
71
- zeitwerk (~> 2.2)
72
- ast (2.4.0)
73
- builder (3.2.4)
74
- childprocess (3.0.0)
75
- coderay (1.1.2)
76
- concurrent-ruby (1.1.6)
77
- coveralls (0.8.23)
78
- json (>= 1.8, < 3)
79
- simplecov (~> 0.16.1)
80
- term-ansicolor (~> 1.3)
81
- thor (>= 0.19.4, < 2.0)
82
- tins (~> 1.6)
83
- crass (1.0.6)
84
- diff-lcs (1.3)
85
- docile (1.3.2)
86
- docker-api (1.34.2)
87
- excon (>= 0.47.0)
88
- multi_json
89
- easy_diff (1.0.0)
90
- erubi (1.9.0)
91
- eventmachine (1.2.7)
92
- excon (0.73.0)
93
- globalid (0.4.2)
94
- activesupport (>= 4.2.0)
95
- i18n (1.8.2)
96
- concurrent-ruby (~> 1.0)
97
- jaro_winkler (1.5.3)
98
- json (2.2.0)
99
- key_flatten (1.0.0)
100
- loofah (2.5.0)
101
- crass (~> 1.0.2)
102
- nokogiri (>= 1.5.9)
103
- mail (2.7.1)
104
- mini_mime (>= 0.1.1)
105
- marcel (0.3.3)
106
- mimemagic (~> 0.3.2)
107
- method_source (0.9.2)
108
- mimemagic (0.3.4)
109
- mini_mime (1.0.2)
110
- mini_portile2 (2.4.0)
111
- minitest (5.14.0)
112
- multi_json (1.14.1)
113
- nio4r (2.5.2)
114
- nokogiri (1.10.9)
115
- mini_portile2 (~> 2.4.0)
116
- paint (2.2.0)
117
- parallel (1.17.0)
118
- parser (2.6.3.0)
119
- ast (~> 2.4.0)
120
- pry (0.12.2)
121
- coderay (~> 1.1.0)
122
- method_source (~> 0.9.0)
123
- rack (2.2.2)
124
- rack-test (1.1.0)
125
- rack (>= 1.0, < 3)
126
- rails (6.0.2.2)
127
- actioncable (= 6.0.2.2)
128
- actionmailbox (= 6.0.2.2)
129
- actionmailer (= 6.0.2.2)
130
- actionpack (= 6.0.2.2)
131
- actiontext (= 6.0.2.2)
132
- actionview (= 6.0.2.2)
133
- activejob (= 6.0.2.2)
134
- activemodel (= 6.0.2.2)
135
- activerecord (= 6.0.2.2)
136
- activestorage (= 6.0.2.2)
137
- activesupport (= 6.0.2.2)
138
- bundler (>= 1.3.0)
139
- railties (= 6.0.2.2)
140
- sprockets-rails (>= 2.0.0)
141
- rails-dom-testing (2.0.3)
142
- activesupport (>= 4.2.0)
143
- nokogiri (>= 1.6)
144
- rails-html-sanitizer (1.3.0)
145
- loofah (~> 2.3)
146
- railties (6.0.2.2)
147
- actionpack (= 6.0.2.2)
148
- activesupport (= 6.0.2.2)
149
- method_source
150
- rake (>= 0.8.7)
151
- thor (>= 0.20.3, < 2.0)
152
- rainbow (3.0.0)
153
- rake (13.0.1)
154
- regexp_parser (1.7.0)
155
- rspec (3.8.0)
156
- rspec-core (~> 3.8.0)
157
- rspec-expectations (~> 3.8.0)
158
- rspec-mocks (~> 3.8.0)
159
- rspec-core (3.8.0)
160
- rspec-support (~> 3.8.0)
161
- rspec-expectations (3.8.2)
162
- diff-lcs (>= 1.2.0, < 2.0)
163
- rspec-support (~> 3.8.0)
164
- rspec-mocks (3.8.0)
165
- diff-lcs (>= 1.2.0, < 2.0)
166
- rspec-support (~> 3.8.0)
167
- rspec-support (3.8.0)
168
- rubocop (0.72.0)
169
- jaro_winkler (~> 1.5.1)
170
- parallel (~> 1.10)
171
- parser (>= 2.6)
172
- rainbow (>= 2.2.2, < 4.0)
173
- ruby-progressbar (~> 1.7)
174
- unicode-display_width (>= 1.4.0, < 1.7)
175
- ruby-progressbar (1.10.1)
176
- rubyzip (2.3.0)
177
- selenium-webdriver (3.142.7)
178
- childprocess (>= 0.5, < 4.0)
179
- rubyzip (>= 1.2.2)
180
- simplecov (0.16.1)
181
- docile (~> 1.1)
182
- json (>= 1.8, < 3)
183
- simplecov-html (~> 0.10.0)
184
- simplecov-html (0.10.2)
185
- sprockets (4.0.0)
186
- concurrent-ruby (~> 1.0)
187
- rack (> 1, < 3)
188
- sprockets-rails (3.2.1)
189
- actionpack (>= 4.0)
190
- activesupport (>= 4.0)
191
- sprockets (>= 3.0.0)
192
- sqlite3 (1.4.1)
193
- term-ansicolor (1.7.1)
194
- tins (~> 1.0)
195
- terminal-table (1.6.0)
196
- thor (1.0.1)
197
- thread_safe (0.3.6)
198
- tins (1.21.1)
199
- tzinfo (1.2.7)
200
- thread_safe (~> 0.1)
201
- unicode-display_width (1.6.0)
202
- watir (6.16.5)
203
- regexp_parser (~> 1.2)
204
- selenium-webdriver (~> 3.6)
205
- websocket-driver (0.7.1)
206
- websocket-extensions (>= 0.1.0)
207
- websocket-extensions (0.1.4)
208
- zeitwerk (2.3.0)
209
-
210
- PLATFORMS
211
- ruby
212
-
213
- DEPENDENCIES
214
- bundler (~> 1.17)
215
- coveralls
216
- pry
217
- r2-oas!
218
- rake (~> 13.0)
219
- rspec (~> 3.0)
220
- rubocop
221
- sqlite3
222
-
223
- BUNDLED WITH
224
- 1.17.3