ropen_pi 0.2.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 +7 -0
- data/.gitignore +13 -0
- data/.rubocop.yml +4 -0
- data/.rubocop_todo.yml +54 -0
- data/.ruby-version +1 -0
- data/.solargraph.yml +10 -0
- data/.travis.yml +7 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +177 -0
- data/LICENSE +21 -0
- data/README.md +53 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/examples/.envrc +14 -0
- data/examples/Gemfile +28 -0
- data/examples/Gemfile.lock +234 -0
- data/examples/docker-compose.yml +86 -0
- data/examples/resources/docker/docker-entrypoint.sh +15 -0
- data/lib/generators/ropen_pi/USAGE +8 -0
- data/lib/generators/ropen_pi/install_generator.rb +12 -0
- data/lib/generators/ropen_pi/templates/ropen_pi_helper.rb +25 -0
- data/lib/ropen_pi.rb +5 -0
- data/lib/ropen_pi/config_helper.rb +144 -0
- data/lib/ropen_pi/specs.rb +23 -0
- data/lib/ropen_pi/specs/configuration.rb +45 -0
- data/lib/ropen_pi/specs/example_group_helpers.rb +284 -0
- data/lib/ropen_pi/specs/example_helpers.rb +20 -0
- data/lib/ropen_pi/specs/extended_schema.rb +30 -0
- data/lib/ropen_pi/specs/open_api_formatter.rb +100 -0
- data/lib/ropen_pi/specs/railtie.rb +7 -0
- data/lib/ropen_pi/specs/request_factory.rb +178 -0
- data/lib/ropen_pi/specs/response_validator.rb +67 -0
- data/lib/ropen_pi/specs/writer.rb +35 -0
- data/lib/ropen_pi/version.rb +4 -0
- data/lib/tasks/ropen_pi.rake +10 -0
- data/ropen_pi.gemspec +36 -0
- metadata +192 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ceb1dcb570ea80f36d68680a5c320bbb9a74990c782ae03044b7bbb64b8789de
|
4
|
+
data.tar.gz: c2db6c536861712270128ff243a1dce00c588b95eacf33b1e1060f61f169c2f7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 01d64a2bbaac53fde43fadbc6d07b8bc33d8b3b51da4f377551b485808fb7d30fd8f966b31539efc066ce8591f122307d452cf0e79280a6fee00f5ce86857063
|
7
|
+
data.tar.gz: b06452a57da3d37842e5f2b047f8541d2eee7872c73da33ecb270eca11f6819f8e0c03d949acf9e28b3066eb776a7669f3c035e5bfc4b441821ca1091017bf88
|
data/.gitignore
ADDED
@@ -0,0 +1,13 @@
|
|
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
|
+
.rubocop-https---raw-githubusercontent-com-talentplatforms-shared-rubocop-master--talentplatforms-rubocop-yml
|
13
|
+
*.gem
|
data/.rubocop.yml
ADDED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# This configuration was generated by
|
2
|
+
# `rubocop --auto-gen-config`
|
3
|
+
# on 2019-09-10 10:49:27 +0200 using RuboCop version 0.74.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: 1
|
10
|
+
# Cop supports --auto-correct.
|
11
|
+
# Configuration parameters: AllowInHeredoc.
|
12
|
+
Layout/TrailingWhitespace:
|
13
|
+
Exclude:
|
14
|
+
- 'config/environments/test.rb'
|
15
|
+
|
16
|
+
Metrics/BlockLength:
|
17
|
+
Exclude:
|
18
|
+
- 'config/routes.rb'
|
19
|
+
- 'config/routes/*.rb'
|
20
|
+
- 'spec/**/*.rb'
|
21
|
+
- 'db/migrate/*.rb'
|
22
|
+
|
23
|
+
Metrics/MethodLength:
|
24
|
+
Exclude:
|
25
|
+
- 'config/routes/*.rb'
|
26
|
+
- 'spec/**/*.rb'
|
27
|
+
- 'db/migrate/*.rb'
|
28
|
+
|
29
|
+
# Offense count: 2
|
30
|
+
Style/Documentation:
|
31
|
+
Enabled: false
|
32
|
+
|
33
|
+
# Offense count: 2
|
34
|
+
# Cop supports --auto-correct.
|
35
|
+
Style/ExpandPathArguments:
|
36
|
+
Exclude:
|
37
|
+
- 'bin/rails'
|
38
|
+
- 'bin/rake'
|
39
|
+
|
40
|
+
AllCops:
|
41
|
+
TargetRubyVersion: 2.7
|
42
|
+
Include:
|
43
|
+
- "**/*.rb"
|
44
|
+
- Rakefile
|
45
|
+
- config.ru
|
46
|
+
|
47
|
+
Exclude:
|
48
|
+
- db/schema.rb
|
49
|
+
- 'vendor/**/*'
|
50
|
+
- 'bin/**/*'
|
51
|
+
- spec/spec_helper.rb
|
52
|
+
- spec/rails_helper.rb
|
53
|
+
- lib/tasks/auto_annotate_models.rake
|
54
|
+
- 'ropen_pi.gemspec'
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.7.0
|
data/.solargraph.yml
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,177 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
ropen_pi (0.2.0)
|
5
|
+
hashie
|
6
|
+
json-schema
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (6.0.2.2)
|
12
|
+
actionpack (= 6.0.2.2)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
actionmailbox (6.0.2.2)
|
16
|
+
actionpack (= 6.0.2.2)
|
17
|
+
activejob (= 6.0.2.2)
|
18
|
+
activerecord (= 6.0.2.2)
|
19
|
+
activestorage (= 6.0.2.2)
|
20
|
+
activesupport (= 6.0.2.2)
|
21
|
+
mail (>= 2.7.1)
|
22
|
+
actionmailer (6.0.2.2)
|
23
|
+
actionpack (= 6.0.2.2)
|
24
|
+
actionview (= 6.0.2.2)
|
25
|
+
activejob (= 6.0.2.2)
|
26
|
+
mail (~> 2.5, >= 2.5.4)
|
27
|
+
rails-dom-testing (~> 2.0)
|
28
|
+
actionpack (6.0.2.2)
|
29
|
+
actionview (= 6.0.2.2)
|
30
|
+
activesupport (= 6.0.2.2)
|
31
|
+
rack (~> 2.0, >= 2.0.8)
|
32
|
+
rack-test (>= 0.6.3)
|
33
|
+
rails-dom-testing (~> 2.0)
|
34
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
35
|
+
actiontext (6.0.2.2)
|
36
|
+
actionpack (= 6.0.2.2)
|
37
|
+
activerecord (= 6.0.2.2)
|
38
|
+
activestorage (= 6.0.2.2)
|
39
|
+
activesupport (= 6.0.2.2)
|
40
|
+
nokogiri (>= 1.8.5)
|
41
|
+
actionview (6.0.2.2)
|
42
|
+
activesupport (= 6.0.2.2)
|
43
|
+
builder (~> 3.1)
|
44
|
+
erubi (~> 1.4)
|
45
|
+
rails-dom-testing (~> 2.0)
|
46
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
47
|
+
activejob (6.0.2.2)
|
48
|
+
activesupport (= 6.0.2.2)
|
49
|
+
globalid (>= 0.3.6)
|
50
|
+
activemodel (6.0.2.2)
|
51
|
+
activesupport (= 6.0.2.2)
|
52
|
+
activerecord (6.0.2.2)
|
53
|
+
activemodel (= 6.0.2.2)
|
54
|
+
activesupport (= 6.0.2.2)
|
55
|
+
activestorage (6.0.2.2)
|
56
|
+
actionpack (= 6.0.2.2)
|
57
|
+
activejob (= 6.0.2.2)
|
58
|
+
activerecord (= 6.0.2.2)
|
59
|
+
marcel (~> 0.3.1)
|
60
|
+
activesupport (6.0.2.2)
|
61
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
62
|
+
i18n (>= 0.7, < 2)
|
63
|
+
minitest (~> 5.1)
|
64
|
+
tzinfo (~> 1.1)
|
65
|
+
zeitwerk (~> 2.2)
|
66
|
+
addressable (2.7.0)
|
67
|
+
public_suffix (>= 2.0.2, < 5.0)
|
68
|
+
builder (3.2.4)
|
69
|
+
bump (0.8.0)
|
70
|
+
byebug (11.0.1)
|
71
|
+
coderay (1.1.2)
|
72
|
+
concurrent-ruby (1.1.6)
|
73
|
+
crass (1.0.6)
|
74
|
+
diff-lcs (1.3)
|
75
|
+
erubi (1.9.0)
|
76
|
+
globalid (0.4.2)
|
77
|
+
activesupport (>= 4.2.0)
|
78
|
+
hashie (4.1.0)
|
79
|
+
i18n (1.8.2)
|
80
|
+
concurrent-ruby (~> 1.0)
|
81
|
+
json-schema (2.8.1)
|
82
|
+
addressable (>= 2.4)
|
83
|
+
loofah (2.5.0)
|
84
|
+
crass (~> 1.0.2)
|
85
|
+
nokogiri (>= 1.5.9)
|
86
|
+
mail (2.7.1)
|
87
|
+
mini_mime (>= 0.1.1)
|
88
|
+
marcel (0.3.3)
|
89
|
+
mimemagic (~> 0.3.2)
|
90
|
+
method_source (0.9.2)
|
91
|
+
mimemagic (0.3.4)
|
92
|
+
mini_mime (1.0.2)
|
93
|
+
mini_portile2 (2.4.0)
|
94
|
+
minitest (5.14.0)
|
95
|
+
nio4r (2.5.2)
|
96
|
+
nokogiri (1.10.9)
|
97
|
+
mini_portile2 (~> 2.4.0)
|
98
|
+
pry (0.12.2)
|
99
|
+
coderay (~> 1.1.0)
|
100
|
+
method_source (~> 0.9.0)
|
101
|
+
pry-byebug (3.7.0)
|
102
|
+
byebug (~> 11.0)
|
103
|
+
pry (~> 0.10)
|
104
|
+
public_suffix (4.0.4)
|
105
|
+
rack (2.2.2)
|
106
|
+
rack-test (1.1.0)
|
107
|
+
rack (>= 1.0, < 3)
|
108
|
+
rails (6.0.2.2)
|
109
|
+
actioncable (= 6.0.2.2)
|
110
|
+
actionmailbox (= 6.0.2.2)
|
111
|
+
actionmailer (= 6.0.2.2)
|
112
|
+
actionpack (= 6.0.2.2)
|
113
|
+
actiontext (= 6.0.2.2)
|
114
|
+
actionview (= 6.0.2.2)
|
115
|
+
activejob (= 6.0.2.2)
|
116
|
+
activemodel (= 6.0.2.2)
|
117
|
+
activerecord (= 6.0.2.2)
|
118
|
+
activestorage (= 6.0.2.2)
|
119
|
+
activesupport (= 6.0.2.2)
|
120
|
+
bundler (>= 1.3.0)
|
121
|
+
railties (= 6.0.2.2)
|
122
|
+
sprockets-rails (>= 2.0.0)
|
123
|
+
rails-dom-testing (2.0.3)
|
124
|
+
activesupport (>= 4.2.0)
|
125
|
+
nokogiri (>= 1.6)
|
126
|
+
rails-html-sanitizer (1.3.0)
|
127
|
+
loofah (~> 2.3)
|
128
|
+
railties (6.0.2.2)
|
129
|
+
actionpack (= 6.0.2.2)
|
130
|
+
activesupport (= 6.0.2.2)
|
131
|
+
method_source
|
132
|
+
rake (>= 0.8.7)
|
133
|
+
thor (>= 0.20.3, < 2.0)
|
134
|
+
rake (13.0.1)
|
135
|
+
rspec (3.9.0)
|
136
|
+
rspec-core (~> 3.9.0)
|
137
|
+
rspec-expectations (~> 3.9.0)
|
138
|
+
rspec-mocks (~> 3.9.0)
|
139
|
+
rspec-core (3.9.1)
|
140
|
+
rspec-support (~> 3.9.1)
|
141
|
+
rspec-expectations (3.9.0)
|
142
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
143
|
+
rspec-support (~> 3.9.0)
|
144
|
+
rspec-mocks (3.9.1)
|
145
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
146
|
+
rspec-support (~> 3.9.0)
|
147
|
+
rspec-support (3.9.2)
|
148
|
+
sprockets (4.0.0)
|
149
|
+
concurrent-ruby (~> 1.0)
|
150
|
+
rack (> 1, < 3)
|
151
|
+
sprockets-rails (3.2.1)
|
152
|
+
actionpack (>= 4.0)
|
153
|
+
activesupport (>= 4.0)
|
154
|
+
sprockets (>= 3.0.0)
|
155
|
+
thor (1.0.1)
|
156
|
+
thread_safe (0.3.6)
|
157
|
+
tzinfo (1.2.7)
|
158
|
+
thread_safe (~> 0.1)
|
159
|
+
websocket-driver (0.7.1)
|
160
|
+
websocket-extensions (>= 0.1.0)
|
161
|
+
websocket-extensions (0.1.4)
|
162
|
+
zeitwerk (2.3.0)
|
163
|
+
|
164
|
+
PLATFORMS
|
165
|
+
ruby
|
166
|
+
|
167
|
+
DEPENDENCIES
|
168
|
+
bump
|
169
|
+
bundler (~> 2.0)
|
170
|
+
pry-byebug
|
171
|
+
rails (~> 6.0.2.2)
|
172
|
+
rake (~> 13.0)
|
173
|
+
ropen_pi!
|
174
|
+
rspec (~> 3.9)
|
175
|
+
|
176
|
+
BUNDLED WITH
|
177
|
+
2.1.2
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2020 Andy Ruck
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# RopenPi
|
2
|
+
|
3
|
+
This is a fork of the [open-api-rswag gem](https://github.com/jdanielian/open-api-rswag).
|
4
|
+
It's a good gem in an early development stage. The original [rswag](https://github.com/rswag/rswag) gem and the open api fork a have one thing in common: they do to much.
|
5
|
+
|
6
|
+
There are easier ways to get an instance of the swagger ui running than building it as a rails engine.
|
7
|
+
|
8
|
+
In future releases this gem will provide a basic example of how this will look like.
|
9
|
+
|
10
|
+
In the mean time this will remain a WIP :)
|
11
|
+
|
12
|
+
|
13
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/ropen_pi`. To experiment with that code, run `bin/console` for an interactive prompt.
|
14
|
+
|
15
|
+
TODO: Delete this and the text above, and describe your gem
|
16
|
+
|
17
|
+
## Installation
|
18
|
+
|
19
|
+
Add this line to your application's Gemfile:
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
gem 'ropen_pi'
|
23
|
+
```
|
24
|
+
|
25
|
+
And then execute:
|
26
|
+
|
27
|
+
$ bundle
|
28
|
+
|
29
|
+
Or install it yourself as:
|
30
|
+
|
31
|
+
$ gem install ropen_pi
|
32
|
+
|
33
|
+
## Unsupported
|
34
|
+
|
35
|
+
Due to massive changes in the spec, this gem currently does not support any type of collection queries.
|
36
|
+
|
37
|
+
## Usage
|
38
|
+
|
39
|
+
TODO: Write usage instructions here
|
40
|
+
|
41
|
+
## Development
|
42
|
+
|
43
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
44
|
+
|
45
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
46
|
+
|
47
|
+
## Contributing
|
48
|
+
|
49
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/talentplatforms/ropen_pi.
|
50
|
+
|
51
|
+
## License
|
52
|
+
|
53
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "ropen_pi"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/examples/.envrc
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
|
3
|
+
export SVC_SHORT="example"
|
4
|
+
export SVC_NAME="${SVC_SHORT}-svc"
|
5
|
+
export SVC_DESCRIPTION="short description of: ${SVC_NAME}"
|
6
|
+
export SVC_HOST_NAME=${SVC_NAME}.localhost
|
7
|
+
export SVC_PORT=3000
|
8
|
+
export DB_HOST="${SVC_NAME}-db"
|
9
|
+
export DB_NAME="${SVC_NAME}_db"
|
10
|
+
export DB_USER="${SVC_NAME}_db_user"
|
11
|
+
export DB_PASSWORD="MegaUltimatelySafeHyperPassword-ButPleaseDONTuseME!"
|
12
|
+
export DB_EXPOSED_PORT=10654
|
13
|
+
export SWAGGER_ENDPOINT=https://${SVC_NAME}.localhost/api/v1/${SVC_SHORT}/describe
|
14
|
+
export RUBY_IMAGE_VERSION=2.7.0-slim-buster
|
data/examples/Gemfile
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3
|
+
|
4
|
+
ruby '2.7.0'
|
5
|
+
|
6
|
+
gem 'rails', '~> 6.0.0'
|
7
|
+
gem 'pg', '>= 0.18', '< 2.0'
|
8
|
+
gem 'puma', '~> 4.3.3'
|
9
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
10
|
+
gem 'rack-cors', '>= 1.0.6'
|
11
|
+
|
12
|
+
group :development do
|
13
|
+
gem 'spring'
|
14
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
15
|
+
end
|
16
|
+
|
17
|
+
group :development, :test do
|
18
|
+
gem 'brakeman'
|
19
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
20
|
+
gem 'factory_bot_rails'
|
21
|
+
gem 'rubocop', '~> 0.79.0', require: false
|
22
|
+
gem 'rubocop-rails', require: false
|
23
|
+
gem 'rspec-rails'
|
24
|
+
gem 'pry-byebug'
|
25
|
+
gem 'pry-stack_explorer'
|
26
|
+
gem 'pry-rails'
|
27
|
+
gem 'database_cleaner'
|
28
|
+
end
|
@@ -0,0 +1,234 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actioncable (6.0.2.1)
|
5
|
+
actionpack (= 6.0.2.1)
|
6
|
+
nio4r (~> 2.0)
|
7
|
+
websocket-driver (>= 0.6.1)
|
8
|
+
actionmailbox (6.0.2.1)
|
9
|
+
actionpack (= 6.0.2.1)
|
10
|
+
activejob (= 6.0.2.1)
|
11
|
+
activerecord (= 6.0.2.1)
|
12
|
+
activestorage (= 6.0.2.1)
|
13
|
+
activesupport (= 6.0.2.1)
|
14
|
+
mail (>= 2.7.1)
|
15
|
+
actionmailer (6.0.2.1)
|
16
|
+
actionpack (= 6.0.2.1)
|
17
|
+
actionview (= 6.0.2.1)
|
18
|
+
activejob (= 6.0.2.1)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (6.0.2.1)
|
22
|
+
actionview (= 6.0.2.1)
|
23
|
+
activesupport (= 6.0.2.1)
|
24
|
+
rack (~> 2.0, >= 2.0.8)
|
25
|
+
rack-test (>= 0.6.3)
|
26
|
+
rails-dom-testing (~> 2.0)
|
27
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
28
|
+
actiontext (6.0.2.1)
|
29
|
+
actionpack (= 6.0.2.1)
|
30
|
+
activerecord (= 6.0.2.1)
|
31
|
+
activestorage (= 6.0.2.1)
|
32
|
+
activesupport (= 6.0.2.1)
|
33
|
+
nokogiri (>= 1.8.5)
|
34
|
+
actionview (6.0.2.1)
|
35
|
+
activesupport (= 6.0.2.1)
|
36
|
+
builder (~> 3.1)
|
37
|
+
erubi (~> 1.4)
|
38
|
+
rails-dom-testing (~> 2.0)
|
39
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
40
|
+
activejob (6.0.2.1)
|
41
|
+
activesupport (= 6.0.2.1)
|
42
|
+
globalid (>= 0.3.6)
|
43
|
+
activemodel (6.0.2.1)
|
44
|
+
activesupport (= 6.0.2.1)
|
45
|
+
activerecord (6.0.2.1)
|
46
|
+
activemodel (= 6.0.2.1)
|
47
|
+
activesupport (= 6.0.2.1)
|
48
|
+
activestorage (6.0.2.1)
|
49
|
+
actionpack (= 6.0.2.1)
|
50
|
+
activejob (= 6.0.2.1)
|
51
|
+
activerecord (= 6.0.2.1)
|
52
|
+
marcel (~> 0.3.1)
|
53
|
+
activesupport (6.0.2.1)
|
54
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
55
|
+
i18n (>= 0.7, < 2)
|
56
|
+
minitest (~> 5.1)
|
57
|
+
tzinfo (~> 1.1)
|
58
|
+
zeitwerk (~> 2.2)
|
59
|
+
ast (2.4.0)
|
60
|
+
binding_of_caller (0.8.0)
|
61
|
+
debug_inspector (>= 0.0.1)
|
62
|
+
bootsnap (1.4.5)
|
63
|
+
msgpack (~> 1.0)
|
64
|
+
brakeman (4.7.2)
|
65
|
+
builder (3.2.4)
|
66
|
+
byebug (11.0.1)
|
67
|
+
coderay (1.1.2)
|
68
|
+
concurrent-ruby (1.1.5)
|
69
|
+
crass (1.0.6)
|
70
|
+
database_cleaner (1.7.0)
|
71
|
+
debug_inspector (0.0.3)
|
72
|
+
diff-lcs (1.3)
|
73
|
+
erubi (1.9.0)
|
74
|
+
factory_bot (5.1.1)
|
75
|
+
activesupport (>= 4.2.0)
|
76
|
+
factory_bot_rails (5.1.1)
|
77
|
+
factory_bot (~> 5.1.0)
|
78
|
+
railties (>= 4.2.0)
|
79
|
+
ffi (1.11.3)
|
80
|
+
globalid (0.4.2)
|
81
|
+
activesupport (>= 4.2.0)
|
82
|
+
i18n (1.8.2)
|
83
|
+
concurrent-ruby (~> 1.0)
|
84
|
+
jaro_winkler (1.5.4)
|
85
|
+
listen (3.1.5)
|
86
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
87
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
88
|
+
ruby_dep (~> 1.2)
|
89
|
+
loofah (2.4.0)
|
90
|
+
crass (~> 1.0.2)
|
91
|
+
nokogiri (>= 1.5.9)
|
92
|
+
mail (2.7.1)
|
93
|
+
mini_mime (>= 0.1.1)
|
94
|
+
marcel (0.3.3)
|
95
|
+
mimemagic (~> 0.3.2)
|
96
|
+
method_source (0.9.2)
|
97
|
+
mimemagic (0.3.3)
|
98
|
+
mini_mime (1.0.2)
|
99
|
+
mini_portile2 (2.4.0)
|
100
|
+
minitest (5.14.0)
|
101
|
+
msgpack (1.3.1)
|
102
|
+
nio4r (2.5.2)
|
103
|
+
nokogiri (1.10.9)
|
104
|
+
mini_portile2 (~> 2.4.0)
|
105
|
+
parallel (1.19.1)
|
106
|
+
parser (2.7.0.2)
|
107
|
+
ast (~> 2.4.0)
|
108
|
+
pg (1.2.2)
|
109
|
+
pry (0.12.2)
|
110
|
+
coderay (~> 1.1.0)
|
111
|
+
method_source (~> 0.9.0)
|
112
|
+
pry-byebug (3.7.0)
|
113
|
+
byebug (~> 11.0)
|
114
|
+
pry (~> 0.10)
|
115
|
+
pry-rails (0.3.9)
|
116
|
+
pry (>= 0.10.4)
|
117
|
+
pry-stack_explorer (0.4.9.3)
|
118
|
+
binding_of_caller (>= 0.7)
|
119
|
+
pry (>= 0.9.11)
|
120
|
+
puma (4.3.3)
|
121
|
+
nio4r (~> 2.0)
|
122
|
+
rack (2.1.1)
|
123
|
+
rack-cors (1.1.1)
|
124
|
+
rack (>= 2.0.0)
|
125
|
+
rack-test (1.1.0)
|
126
|
+
rack (>= 1.0, < 3)
|
127
|
+
rails (6.0.2.1)
|
128
|
+
actioncable (= 6.0.2.1)
|
129
|
+
actionmailbox (= 6.0.2.1)
|
130
|
+
actionmailer (= 6.0.2.1)
|
131
|
+
actionpack (= 6.0.2.1)
|
132
|
+
actiontext (= 6.0.2.1)
|
133
|
+
actionview (= 6.0.2.1)
|
134
|
+
activejob (= 6.0.2.1)
|
135
|
+
activemodel (= 6.0.2.1)
|
136
|
+
activerecord (= 6.0.2.1)
|
137
|
+
activestorage (= 6.0.2.1)
|
138
|
+
activesupport (= 6.0.2.1)
|
139
|
+
bundler (>= 1.3.0)
|
140
|
+
railties (= 6.0.2.1)
|
141
|
+
sprockets-rails (>= 2.0.0)
|
142
|
+
rails-dom-testing (2.0.3)
|
143
|
+
activesupport (>= 4.2.0)
|
144
|
+
nokogiri (>= 1.6)
|
145
|
+
rails-html-sanitizer (1.3.0)
|
146
|
+
loofah (~> 2.3)
|
147
|
+
railties (6.0.2.1)
|
148
|
+
actionpack (= 6.0.2.1)
|
149
|
+
activesupport (= 6.0.2.1)
|
150
|
+
method_source
|
151
|
+
rake (>= 0.8.7)
|
152
|
+
thor (>= 0.20.3, < 2.0)
|
153
|
+
rainbow (3.0.0)
|
154
|
+
rake (13.0.1)
|
155
|
+
rb-fsevent (0.10.3)
|
156
|
+
rb-inotify (0.10.1)
|
157
|
+
ffi (~> 1.0)
|
158
|
+
rspec-core (3.9.1)
|
159
|
+
rspec-support (~> 3.9.1)
|
160
|
+
rspec-expectations (3.9.0)
|
161
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
162
|
+
rspec-support (~> 3.9.0)
|
163
|
+
rspec-mocks (3.9.1)
|
164
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
165
|
+
rspec-support (~> 3.9.0)
|
166
|
+
rspec-rails (3.9.0)
|
167
|
+
actionpack (>= 3.0)
|
168
|
+
activesupport (>= 3.0)
|
169
|
+
railties (>= 3.0)
|
170
|
+
rspec-core (~> 3.9.0)
|
171
|
+
rspec-expectations (~> 3.9.0)
|
172
|
+
rspec-mocks (~> 3.9.0)
|
173
|
+
rspec-support (~> 3.9.0)
|
174
|
+
rspec-support (3.9.2)
|
175
|
+
rubocop (0.79.0)
|
176
|
+
jaro_winkler (~> 1.5.1)
|
177
|
+
parallel (~> 1.10)
|
178
|
+
parser (>= 2.7.0.1)
|
179
|
+
rainbow (>= 2.2.2, < 4.0)
|
180
|
+
ruby-progressbar (~> 1.7)
|
181
|
+
unicode-display_width (>= 1.4.0, < 1.7)
|
182
|
+
rubocop-rails (2.4.1)
|
183
|
+
rack (>= 1.1)
|
184
|
+
rubocop (>= 0.72.0)
|
185
|
+
ruby-progressbar (1.10.1)
|
186
|
+
ruby_dep (1.5.0)
|
187
|
+
spring (2.1.0)
|
188
|
+
spring-watcher-listen (2.0.1)
|
189
|
+
listen (>= 2.7, < 4.0)
|
190
|
+
spring (>= 1.2, < 3.0)
|
191
|
+
sprockets (4.0.0)
|
192
|
+
concurrent-ruby (~> 1.0)
|
193
|
+
rack (> 1, < 3)
|
194
|
+
sprockets-rails (3.2.1)
|
195
|
+
actionpack (>= 4.0)
|
196
|
+
activesupport (>= 4.0)
|
197
|
+
sprockets (>= 3.0.0)
|
198
|
+
thor (1.0.1)
|
199
|
+
thread_safe (0.3.6)
|
200
|
+
tzinfo (1.2.6)
|
201
|
+
thread_safe (~> 0.1)
|
202
|
+
unicode-display_width (1.6.0)
|
203
|
+
websocket-driver (0.7.1)
|
204
|
+
websocket-extensions (>= 0.1.0)
|
205
|
+
websocket-extensions (0.1.4)
|
206
|
+
zeitwerk (2.2.2)
|
207
|
+
|
208
|
+
PLATFORMS
|
209
|
+
ruby
|
210
|
+
|
211
|
+
DEPENDENCIES
|
212
|
+
bootsnap (>= 1.4.2)
|
213
|
+
brakeman
|
214
|
+
database_cleaner
|
215
|
+
factory_bot_rails
|
216
|
+
listen (>= 3.0.5, < 3.2)
|
217
|
+
pg (>= 0.18, < 2.0)
|
218
|
+
pry-byebug
|
219
|
+
pry-rails
|
220
|
+
pry-stack_explorer
|
221
|
+
puma (~> 4.3.3)
|
222
|
+
rack-cors (>= 1.0.6)
|
223
|
+
rails (~> 6.0.0)
|
224
|
+
rspec-rails
|
225
|
+
rubocop (~> 0.79.0)
|
226
|
+
rubocop-rails
|
227
|
+
spring
|
228
|
+
spring-watcher-listen (~> 2.0.0)
|
229
|
+
|
230
|
+
RUBY VERSION
|
231
|
+
ruby 2.7.0p0
|
232
|
+
|
233
|
+
BUNDLED WITH
|
234
|
+
2.1.4
|