r2-oas 0.1.3 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +49 -0
  3. data/GEMSPEC.md +20 -0
  4. data/README.ja.md +63 -2
  5. data/README.md +62 -2
  6. data/lib/r2-oas.rb +3 -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/errors.rb +1 -0
  10. data/lib/r2-oas/lib/core_ext/hash/deep_merge.rb +44 -0
  11. data/lib/r2-oas/lib/core_ext/object/blank.rb +135 -0
  12. data/lib/r2-oas/lib/three-way-merge/twm.rb +83 -0
  13. data/lib/r2-oas/schema/builder.rb +23 -0
  14. data/lib/r2-oas/schema/editor.rb +13 -2
  15. data/lib/r2-oas/schema/generator.rb +1 -1
  16. data/lib/r2-oas/schema/manager/file_manager.rb +26 -0
  17. data/lib/r2-oas/schema/ui.rb +0 -1
  18. data/lib/r2-oas/schema/v3/analyzer/base_analyzer.rb +1 -6
  19. data/lib/r2-oas/schema/v3/builder.rb +28 -0
  20. data/lib/r2-oas/schema/v3/builder/base_builder.rb +60 -0
  21. data/lib/r2-oas/schema/v3/builder/doc_builder.rb +43 -0
  22. data/lib/r2-oas/schema/v3/generator.rb +1 -5
  23. data/lib/r2-oas/schema/v3/generator/base_generator.rb +30 -1
  24. data/lib/r2-oas/schema/v3/generator/components/object_generator.rb +6 -25
  25. data/lib/r2-oas/schema/v3/generator/components/request_body_generator.rb +6 -6
  26. data/lib/r2-oas/schema/v3/generator/doc_generator.rb +84 -19
  27. data/lib/r2-oas/schema/v3/generator/path_generator.rb +7 -19
  28. data/lib/r2-oas/schema/v3/generator/schema_generator.rb +5 -25
  29. data/lib/r2-oas/schema/v3/manager/file/base_file_manager.rb +3 -4
  30. data/lib/r2-oas/schema/v3/manager/pathname_manager.rb +6 -1
  31. data/lib/r2-oas/store.rb +118 -0
  32. data/lib/r2-oas/task_logging.rb +6 -4
  33. data/lib/r2-oas/tasks/common.rake +0 -1
  34. data/lib/r2-oas/tasks/main.rake +66 -73
  35. data/lib/r2-oas/tasks/tool.rake +32 -28
  36. data/lib/r2-oas/version.rb +1 -1
  37. metadata +85 -69
  38. data/.github/ISSUE_TEMPLATE.md +0 -12
  39. data/.github/PULL_REQUEST_TEMPLATE.md +0 -12
  40. data/.gitignore +0 -12
  41. data/.rspec +0 -3
  42. data/.rubocop.yml +0 -7
  43. data/.rubocop_todo.yml +0 -228
  44. data/.travis.yml +0 -22
  45. data/CODE_OF_CONDUCT.md +0 -74
  46. data/Gemfile +0 -12
  47. data/Gemfile.lock +0 -222
  48. data/Rakefile +0 -8
  49. data/bin/console +0 -12
  50. data/bin/setup +0 -8
  51. data/docs/.nojekyll +0 -0
  52. data/docs/README.md +0 -173
  53. data/docs/_sidebar.md +0 -23
  54. data/docs/attention/if_clash.md +0 -19
  55. data/docs/index.html +0 -28
  56. data/docs/schema/3.0.0.md +0 -155
  57. data/docs/setting/COC.md +0 -14
  58. data/docs/setting/CORS.md +0 -22
  59. data/docs/setting/configure.md +0 -163
  60. data/docs/usage/analyze_docs.md +0 -875
  61. data/docs/usage/clean_docs.md +0 -19
  62. data/docs/usage/deploy_docs.md +0 -839
  63. data/docs/usage/display_paths_list.md +0 -35
  64. data/docs/usage/display_paths_stats.md +0 -54
  65. data/docs/usage/edit_docs.md +0 -218
  66. data/docs/usage/generate_docs.md +0 -256
  67. data/docs/usage/monitor_docs.md +0 -219
  68. data/docs/usage/use_hook_methods.md +0 -236
  69. data/docs/usage/use_hook_to_generate_docs.md +0 -235
  70. data/docs/usage/use_schema_namespace.md +0 -183
  71. data/docs/usage/use_tag_namespace.md +0 -182
  72. data/docs/usage/view_docs.md +0 -262
  73. data/lib/r2-oas/deploy/swagger-ui/dist/favicon-16x16.png +0 -0
  74. data/lib/r2-oas/deploy/swagger-ui/dist/favicon-32x32.png +0 -0
  75. data/lib/r2-oas/deploy/swagger-ui/dist/oauth2-redirect.html +0 -68
  76. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-bundle.js +0 -134
  77. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-bundle.js.map +0 -1
  78. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-standalone-preset.js +0 -22
  79. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui-standalone-preset.js.map +0 -1
  80. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.css +0 -4
  81. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.css.map +0 -1
  82. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.js +0 -9
  83. data/lib/r2-oas/deploy/swagger-ui/dist/swagger-ui.js.map +0 -1
  84. data/r2-oas.gemspec +0 -42
@@ -1,7 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- AllCops:
4
- TargetRubyVersion: 2.3
5
- Exclude:
6
- - 'example*/**/*'
7
- - 'vendor/**/*'
@@ -1,228 +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
-
30
- Style/Documentation:
31
- Enabled: false
32
-
33
- Style/GuardClause:
34
- Enabled: false
35
-
36
- Metrics/BlockLength:
37
- Exclude:
38
- - "r2-oas.gemspec"
39
- - "lib/r2-oas/tasks/main.rake"
40
- - "lib/r2-oas/tasks/tool.rake"
41
- - "spec/r2-oas/routing/adjustor_spec.rb"
42
- - "spec/r2-oas/routing/components/request_component_spec.rb"
43
- - "spec/r2-oas/schema/v3/object/paths_object_spec.rb"
44
- - "spec/r2-oas/schema/v3/object/external_document_object_spec.rb"
45
- - "spec/r2-oas/schema/v3/manager/pathname_manager_spec.rb"
46
- - "spec/r2-oas/schema/v3/manager/diff/base_hash_diff_manager_spec.rb"
47
- - "spec/r2-oas/schema/v3/manager/file/base_file_manager_spec.rb"
48
- - "spec/r2-oas/routing/parser_spec.rb"
49
- - "spec/r2-oas/routing/components/path_component_spec.rb"
50
- - "spec/r2-oas/schema/v3/object/components/request_body_object_spec.rb"
51
- - "spec/r2-oas/schema/v3/object/components/schema_object_spec.rb"
52
- - "spec/r2-oas/schema/v3/object/path_item_object_spec.rb"
53
- - "spec/r2-oas/configuration/paths_config_spec.rb"
54
- - "spec/r2-oas/tasks/main_spec.rb"
55
- - "spec/r2-oas/tasks/tool_spec.rb"
56
- - "spec/r2-oas/configuration_spec.rb"
57
- - "spec/r2-oas/schema/v3/generator_spec.rb"
58
- - "spec/r2-oas/schema/v3/analyzer_spec.rb"
59
- - "spec/support/helpers/config_helper.rb"
60
- - "spec/r2-oas/schema/v3/object/components_object_spec.rb"
61
- - "spec/r2-oas/schema/v3/object/base_object_spec.rb"
62
- - "spec/r2-oas/schema/v3/manager/diff/base_array_diff_manager_spec.rb"
63
- - "spec/r2-oas/schema/v3/manager/file/include_ref_base_file_manager_spec.rb"
64
- - "spec/r2-oas/schema/v3/generator/base_generator_spec.rb"
65
- - "spec/r2-oas/schema/v3/object/openapi_object_spec.rb"
66
- - "spec/r2-oas/schema/v3/object/info_object_spec.rb"
67
-
68
- Lint/AmbiguousOperator:
69
- Exclude:
70
- - "lib/r2-oas/app_configuration/swagger.rb"
71
- - "lib/r2-oas/app_configuration/tool/paths/stats.rb"
72
- - "lib/r2-oas/app_configuration/swagger/ui.rb"
73
- - "lib/r2-oas/app_configuration/swagger/editor.rb"
74
- - "lib/r2-oas/app_configuration/tool.rb"
75
- - "lib/r2-oas/configuration.rb"
76
- - "lib/r2-oas/app_configuration/server.rb"
77
- - "lib/r2-oas/schema/v3/object/base_object.rb"
78
- - "lib/r2-oas/base.rb"
79
- - "lib/r2-oas/routing/parser.rb"
80
- - "lib/r2-oas/app_configuration.rb"
81
- - "lib/r2-oas/pluggable_configuration.rb"
82
-
83
- Metrics/MethodLength:
84
- Exclude:
85
- - "lib/r2-oas/logger/stdout_logger.rb"
86
- - "lib/r2-oas/routing/adjustor.rb"
87
- - "lib/r2-oas/routing/parser.rb"
88
- - "lib/r2-oas/hooks/hook.rb"
89
- - "lib/r2-oas/task_logging.rb"
90
- - "lib/r2-oas/schema/ui.rb"
91
- - "lib/r2-oas/schema/editor.rb"
92
- - "lib/r2-oas/shared/sortable.rb"
93
- - "lib/r2-oas/app_configuration.rb"
94
- - "lib/r2-oas/schema/v3/analyzer/path_analyzer.rb"
95
- - "lib/r2-oas/schema/v3/analyzer/base_analyzer.rb"
96
- - "lib/r2-oas/schema/v3/analyzer/components/request_bodies_analyzer.rb"
97
- - "lib/r2-oas/schema/v3/analyzer/components/schemas_analyzer.rb"
98
- - "lib/r2-oas/schema/v3/analyzer/tag_analyzer.rb"
99
- - "lib/r2-oas/schema/v3/analyzer.rb"
100
- - "lib/r2-oas/schema/v3/object/paths_object.rb"
101
- - "lib/r2-oas/schema/v3/object/components_object.rb"
102
- - "lib/r2-oas/schema/v3/object/path_item_object.rb"
103
- - "lib/r2-oas/schema/v3/object/info_object.rb"
104
- - "lib/r2-oas/schema/v3/manager/diff/base_array_diff_manager.rb"
105
- - "lib/r2-oas/schema/v3/manager/diff/base_hash_diff_manager.rb"
106
- - "lib/r2-oas/schema/v3/manager/file/components/request_body_file_manager.rb"
107
- - "lib/r2-oas/schema/v3/manager/file/path_item_file_manager.rb"
108
- - "lib/r2-oas/schema/v3/manager/file/include_ref_base_file_manager.rb"
109
- - "lib/r2-oas/schema/v3/manager/pathname_manager.rb"
110
- - "lib/r2-oas/schema/v3/generator/path_generator.rb"
111
- - "lib/r2-oas/schema/v3/generator/components/request_body_generator.rb"
112
- - "lib/r2-oas/schema/v3/generator/schema_generator.rb"
113
- - "lib/r2-oas/schema/v3/generator/components/schema_generator.rb"
114
- - "lib/r2-oas/schema/v3/generator/doc_generator.rb"
115
- - "lib/r2-oas/schema/v3/object/components/request_body_object.rb"
116
- - "lib/r2-oas/schema/v3/squeezer/path_squeezer.rb"
117
- - "lib/r2-oas/schema/v3/generator/components/object_generator.rb"
118
- - "lib/r2-oas/routing/components/request_component.rb"
119
- - "spec/support/helpers/config_helper.rb"
120
- - "lib/r2-oas/schema/v3/analyzer/components/object_analyzer.rb"
121
-
122
- Metrics/CyclomaticComplexity:
123
- Exclude:
124
- - "lib/r2-oas/logger/stdout_logger.rb"
125
- - "lib/r2-oas/schema/v3/manager/pathname_manager.rb"
126
-
127
- Naming/ConstantName:
128
- Exclude:
129
- - "lib/r2-oas/logger/stdout_logger.rb"
130
-
131
- Naming/PredicateName:
132
- Exclude:
133
- - "lib/r2-oas/hooks/hook.rb"
134
- - "lib/r2-oas/plugins/schema/v3/object/hookable_base_object.rb"
135
-
136
- Style/DoubleNegation:
137
- Exclude:
138
- - "lib/r2-oas/hooks/hook.rb"
139
-
140
- Style/MultilineBlockChain:
141
- Exclude:
142
- - "lib/r2-oas/routing/parser.rb"
143
-
144
- Naming/MemoizedInstanceVariableName:
145
- Exclude:
146
- - "lib/r2-oas/configuration.rb"
147
-
148
- Naming/AccessorMethodName:
149
- Exclude:
150
- - "lib/r2-oas/configuration.rb"
151
- - "lib/r2-oas/app_configuration.rb"
152
- - "lib/r2-oas/pluggable_configuration.rb"
153
-
154
- Style/AsciiComments:
155
- Exclude:
156
- - "lib/r2-oas/logger/stdout_logger.rb"
157
- - "lib/r2-oas/schema/v3/analyzer/path_analyzer.rb"
158
-
159
- Lint/UnderscorePrefixedVariableName:
160
- Exclude:
161
- - "lib/r2-oas/logger/stdout_logger.rb"
162
- - "lib/r2-oas/schema/v3/object/components/request_body_object.rb"
163
-
164
- Lint/UselessAccessModifier:
165
- Exclude:
166
- - "lib/r2-oas/pluggable_configuration.rb"
167
-
168
- Style/IdenticalConditionalBranches:
169
- Exclude:
170
- - "lib/r2-oas/schema/editor.rb"
171
-
172
- Style/ClassVars:
173
- Exclude:
174
- - "lib/r2-oas/plugins/schema/v3/object/hookable_base_object.rb"
175
-
176
- Style/AccessModifierDeclarations:
177
- Exclude:
178
- - "lib/r2-oas/app_configuration.rb"
179
-
180
- Style/NumericPredicate:
181
- Exclude:
182
- - "lib/r2-oas/schema/v3/generator/base_generator.rb"
183
-
184
- Metrics/ClassLength:
185
- Exclude:
186
- - "lib/r2-oas/schema/v3/object/path_item_object.rb"
187
-
188
- Metrics/ParameterLists:
189
- Exclude:
190
- - "lib/r2-oas/schema/v3/object/path_item_object.rb"
191
- - "lib/r2-oas/schema/v3/object/components/schema_object.rb"
192
- - "spec/r2-oas/schema/v3/object/components/schema_object_spec.rb"
193
-
194
- Layout/EndAlignment:
195
- Exclude:
196
- - "lib/r2-oas/shared/sortable.rb"
197
- - "lib/r2-oas/schema/v3/generator/doc_generator.rb"
198
-
199
- Security/YAMLLoad:
200
- Exclude:
201
- - "lib/r2-oas/schema/editor.rb"
202
-
203
- Naming/FileName:
204
- Exclude:
205
- - "spec/r2-oas_spec.rb"
206
- - "lib/r2-oas.rb"
207
-
208
- Naming/MethodName:
209
- Exclude:
210
- - "spec/support/helpers/create_helper.rb"
211
- - "spec/support/helpers/path_helper.rb"
212
-
213
- Naming/HeredocDelimiterNaming:
214
- Exclude:
215
- - "spec/r2-oas/configuration/paths_config_spec.rb"
216
- - "r2-oas.gemspec"
217
-
218
- Style/ClassAndModuleChildren:
219
- Exclude:
220
- - "spec/dummy_app/controllers/api/v1/tasks_controller.rb"
221
-
222
- Lint/RequireParentheses:
223
- Exclude:
224
- - "spec/r2-oas/schema/v3/object/components/schema_object_spec.rb"
225
-
226
- Style/IfUnlessModifier:
227
- Exclude:
228
- - "lib/r2-oas/schema/editor.rb"
@@ -1,22 +0,0 @@
1
- ---
2
- sudo: false
3
-
4
- language: ruby
5
-
6
- cache: bundler
7
-
8
- rvm:
9
- - 2.3.3
10
-
11
- before_install: gem install bundler -v 1.17.3
12
-
13
- gemfile:
14
- - Gemfile
15
- bundler_args: "--without development --deployment"
16
-
17
- install:
18
- - bundle install
19
-
20
- script:
21
- - bundle exec rubocop --fail-level=W
22
- - 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,222 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- r2-oas (0.1.3)
5
- docker-api (~> 1.34.2)
6
- easy_diff (~> 1.0.0)
7
- eventmachine (~> 1.2.0)
8
- paint
9
- rails (>= 4.2.5)
10
- terminal-table (~> 1.6.0)
11
- watir (~> 6.16.5)
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- actioncable (6.0.2.2)
17
- actionpack (= 6.0.2.2)
18
- nio4r (~> 2.0)
19
- websocket-driver (>= 0.6.1)
20
- actionmailbox (6.0.2.2)
21
- actionpack (= 6.0.2.2)
22
- activejob (= 6.0.2.2)
23
- activerecord (= 6.0.2.2)
24
- activestorage (= 6.0.2.2)
25
- activesupport (= 6.0.2.2)
26
- mail (>= 2.7.1)
27
- actionmailer (6.0.2.2)
28
- actionpack (= 6.0.2.2)
29
- actionview (= 6.0.2.2)
30
- activejob (= 6.0.2.2)
31
- mail (~> 2.5, >= 2.5.4)
32
- rails-dom-testing (~> 2.0)
33
- actionpack (6.0.2.2)
34
- actionview (= 6.0.2.2)
35
- activesupport (= 6.0.2.2)
36
- rack (~> 2.0, >= 2.0.8)
37
- rack-test (>= 0.6.3)
38
- rails-dom-testing (~> 2.0)
39
- rails-html-sanitizer (~> 1.0, >= 1.2.0)
40
- actiontext (6.0.2.2)
41
- actionpack (= 6.0.2.2)
42
- activerecord (= 6.0.2.2)
43
- activestorage (= 6.0.2.2)
44
- activesupport (= 6.0.2.2)
45
- nokogiri (>= 1.8.5)
46
- actionview (6.0.2.2)
47
- activesupport (= 6.0.2.2)
48
- builder (~> 3.1)
49
- erubi (~> 1.4)
50
- rails-dom-testing (~> 2.0)
51
- rails-html-sanitizer (~> 1.1, >= 1.2.0)
52
- activejob (6.0.2.2)
53
- activesupport (= 6.0.2.2)
54
- globalid (>= 0.3.6)
55
- activemodel (6.0.2.2)
56
- activesupport (= 6.0.2.2)
57
- activerecord (6.0.2.2)
58
- activemodel (= 6.0.2.2)
59
- activesupport (= 6.0.2.2)
60
- activestorage (6.0.2.2)
61
- actionpack (= 6.0.2.2)
62
- activejob (= 6.0.2.2)
63
- activerecord (= 6.0.2.2)
64
- marcel (~> 0.3.1)
65
- activesupport (6.0.2.2)
66
- concurrent-ruby (~> 1.0, >= 1.0.2)
67
- i18n (>= 0.7, < 2)
68
- minitest (~> 5.1)
69
- tzinfo (~> 1.1)
70
- zeitwerk (~> 2.2)
71
- ast (2.4.0)
72
- builder (3.2.4)
73
- childprocess (3.0.0)
74
- coderay (1.1.2)
75
- concurrent-ruby (1.1.6)
76
- coveralls (0.8.23)
77
- json (>= 1.8, < 3)
78
- simplecov (~> 0.16.1)
79
- term-ansicolor (~> 1.3)
80
- thor (>= 0.19.4, < 2.0)
81
- tins (~> 1.6)
82
- crass (1.0.6)
83
- diff-lcs (1.3)
84
- docile (1.3.2)
85
- docker-api (1.34.2)
86
- excon (>= 0.47.0)
87
- multi_json
88
- easy_diff (1.0.0)
89
- erubi (1.9.0)
90
- eventmachine (1.2.7)
91
- excon (0.73.0)
92
- globalid (0.4.2)
93
- activesupport (>= 4.2.0)
94
- i18n (1.8.2)
95
- concurrent-ruby (~> 1.0)
96
- jaro_winkler (1.5.3)
97
- json (2.2.0)
98
- loofah (2.5.0)
99
- crass (~> 1.0.2)
100
- nokogiri (>= 1.5.9)
101
- mail (2.7.1)
102
- mini_mime (>= 0.1.1)
103
- marcel (0.3.3)
104
- mimemagic (~> 0.3.2)
105
- method_source (0.9.2)
106
- mimemagic (0.3.4)
107
- mini_mime (1.0.2)
108
- mini_portile2 (2.4.0)
109
- minitest (5.14.0)
110
- multi_json (1.14.1)
111
- nio4r (2.5.2)
112
- nokogiri (1.10.9)
113
- mini_portile2 (~> 2.4.0)
114
- paint (2.2.0)
115
- parallel (1.17.0)
116
- parser (2.6.3.0)
117
- ast (~> 2.4.0)
118
- pry (0.12.2)
119
- coderay (~> 1.1.0)
120
- method_source (~> 0.9.0)
121
- rack (2.2.2)
122
- rack-test (1.1.0)
123
- rack (>= 1.0, < 3)
124
- rails (6.0.2.2)
125
- actioncable (= 6.0.2.2)
126
- actionmailbox (= 6.0.2.2)
127
- actionmailer (= 6.0.2.2)
128
- actionpack (= 6.0.2.2)
129
- actiontext (= 6.0.2.2)
130
- actionview (= 6.0.2.2)
131
- activejob (= 6.0.2.2)
132
- activemodel (= 6.0.2.2)
133
- activerecord (= 6.0.2.2)
134
- activestorage (= 6.0.2.2)
135
- activesupport (= 6.0.2.2)
136
- bundler (>= 1.3.0)
137
- railties (= 6.0.2.2)
138
- sprockets-rails (>= 2.0.0)
139
- rails-dom-testing (2.0.3)
140
- activesupport (>= 4.2.0)
141
- nokogiri (>= 1.6)
142
- rails-html-sanitizer (1.3.0)
143
- loofah (~> 2.3)
144
- railties (6.0.2.2)
145
- actionpack (= 6.0.2.2)
146
- activesupport (= 6.0.2.2)
147
- method_source
148
- rake (>= 0.8.7)
149
- thor (>= 0.20.3, < 2.0)
150
- rainbow (3.0.0)
151
- rake (13.0.1)
152
- regexp_parser (1.7.0)
153
- rspec (3.8.0)
154
- rspec-core (~> 3.8.0)
155
- rspec-expectations (~> 3.8.0)
156
- rspec-mocks (~> 3.8.0)
157
- rspec-core (3.8.0)
158
- rspec-support (~> 3.8.0)
159
- rspec-expectations (3.8.2)
160
- diff-lcs (>= 1.2.0, < 2.0)
161
- rspec-support (~> 3.8.0)
162
- rspec-mocks (3.8.0)
163
- diff-lcs (>= 1.2.0, < 2.0)
164
- rspec-support (~> 3.8.0)
165
- rspec-support (3.8.0)
166
- rubocop (0.72.0)
167
- jaro_winkler (~> 1.5.1)
168
- parallel (~> 1.10)
169
- parser (>= 2.6)
170
- rainbow (>= 2.2.2, < 4.0)
171
- ruby-progressbar (~> 1.7)
172
- unicode-display_width (>= 1.4.0, < 1.7)
173
- ruby-progressbar (1.10.1)
174
- rubyzip (2.3.0)
175
- selenium-webdriver (3.142.7)
176
- childprocess (>= 0.5, < 4.0)
177
- rubyzip (>= 1.2.2)
178
- simplecov (0.16.1)
179
- docile (~> 1.1)
180
- json (>= 1.8, < 3)
181
- simplecov-html (~> 0.10.0)
182
- simplecov-html (0.10.2)
183
- sprockets (4.0.0)
184
- concurrent-ruby (~> 1.0)
185
- rack (> 1, < 3)
186
- sprockets-rails (3.2.1)
187
- actionpack (>= 4.0)
188
- activesupport (>= 4.0)
189
- sprockets (>= 3.0.0)
190
- sqlite3 (1.4.1)
191
- term-ansicolor (1.7.1)
192
- tins (~> 1.0)
193
- terminal-table (1.6.0)
194
- thor (1.0.1)
195
- thread_safe (0.3.6)
196
- tins (1.21.1)
197
- tzinfo (1.2.7)
198
- thread_safe (~> 0.1)
199
- unicode-display_width (1.6.0)
200
- watir (6.16.5)
201
- regexp_parser (~> 1.2)
202
- selenium-webdriver (~> 3.6)
203
- websocket-driver (0.7.1)
204
- websocket-extensions (>= 0.1.0)
205
- websocket-extensions (0.1.4)
206
- zeitwerk (2.3.0)
207
-
208
- PLATFORMS
209
- ruby
210
-
211
- DEPENDENCIES
212
- bundler (~> 1.17)
213
- coveralls
214
- pry
215
- r2-oas!
216
- rake (~> 13.0)
217
- rspec (~> 3.0)
218
- rubocop
219
- sqlite3
220
-
221
- BUNDLED WITH
222
- 1.17.3