fiver 0.0alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.browserslistrc +1 -0
- data/.gitignore +57 -0
- data/.orchestration.yml +4 -0
- data/.rspec +3 -0
- data/.rspec_status +18 -0
- data/.rubocop.yml +10 -0
- data/.ruby-version +1 -0
- data/.travis.yml +6 -0
- data/Gemfile +36 -0
- data/Gemfile.lock +292 -0
- data/LICENSE +7 -0
- data/LICENSE.txt +21 -0
- data/Makefile +27 -0
- data/README.md +11 -0
- data/Rakefile +8 -0
- data/app/assets/config/manifest.js +2 -0
- data/app/assets/images/.keep +0 -0
- data/app/assets/stylesheets/application.css +15 -0
- data/app/channels/application_cable/channel.rb +6 -0
- data/app/channels/application_cable/connection.rb +6 -0
- data/app/controllers/application_controller.rb +4 -0
- data/app/controllers/concerns/.keep +0 -0
- data/app/helpers/application_helper.rb +5 -0
- data/app/javascript/channels/consumer.js +6 -0
- data/app/javascript/channels/index.js +5 -0
- data/app/javascript/packs/application.js +17 -0
- data/app/javascript/packs/hello_react.jsx +26 -0
- data/app/jobs/application_job.rb +9 -0
- data/app/mailers/application_mailer.rb +6 -0
- data/app/models/application_record.rb +6 -0
- data/app/models/concerns/.keep +0 -0
- data/app/views/layouts/application.html.erb +15 -0
- data/app/views/layouts/mailer.html.erb +13 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/babel.config.js +87 -0
- data/bin/bundle +114 -0
- data/bin/console +14 -0
- data/bin/rails +9 -0
- data/bin/rake +9 -0
- data/bin/setup +8 -0
- data/bin/spring +17 -0
- data/bin/webpack +18 -0
- data/bin/webpack-dev-server +18 -0
- data/bin/yarn +11 -0
- data/config.ru +7 -0
- data/config/application.rb +18 -0
- data/config/boot.rb +6 -0
- data/config/cable.yml +10 -0
- data/config/credentials.yml.enc +1 -0
- data/config/database.yml +25 -0
- data/config/environment.rb +7 -0
- data/config/environments/development.rb +64 -0
- data/config/environments/production.rb +114 -0
- data/config/environments/test.rb +52 -0
- data/config/initializers/application_controller_renderer.rb +9 -0
- data/config/initializers/assets.rb +16 -0
- data/config/initializers/backtrace_silencers.rb +8 -0
- data/config/initializers/content_security_policy.rb +31 -0
- data/config/initializers/cookies_serializer.rb +7 -0
- data/config/initializers/filter_parameter_logging.rb +6 -0
- data/config/initializers/inflections.rb +17 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/wrap_parameters.rb +16 -0
- data/config/locales/en.yml +33 -0
- data/config/puma.rb +40 -0
- data/config/rabbitmq.yml +8 -0
- data/config/routes.rb +5 -0
- data/config/spring.rb +8 -0
- data/config/storage.yml +34 -0
- data/config/unicorn.rb +19 -0
- data/config/webpack/development.js +5 -0
- data/config/webpack/environment.js +3 -0
- data/config/webpack/production.js +5 -0
- data/config/webpack/test.js +5 -0
- data/config/webpacker.yml +97 -0
- data/db/schema.rb +15 -0
- data/db/seeds.rb +8 -0
- data/fiver.gemspec +26 -0
- data/lib/assets/.keep +0 -0
- data/lib/fiver.rb +12 -0
- data/lib/fiver/version.rb +5 -0
- data/lib/tasks/.keep +0 -0
- data/log/.keep +0 -0
- data/orchestration/Dockerfile +34 -0
- data/orchestration/Makefile +511 -0
- data/orchestration/docker-compose.development.yml +14 -0
- data/orchestration/docker-compose.production.yml +33 -0
- data/orchestration/docker-compose.test.yml +14 -0
- data/orchestration/entrypoint.sh +17 -0
- data/package.json +20 -0
- data/postcss.config.js +12 -0
- data/public/404.html +67 -0
- data/public/422.html +67 -0
- data/public/500.html +66 -0
- data/public/apple-touch-icon-precomposed.png +0 -0
- data/public/apple-touch-icon.png +0 -0
- data/public/favicon.ico +0 -0
- data/public/robots.txt +1 -0
- data/storage/.keep +0 -0
- data/tmp/.keep +0 -0
- data/tmp/pids/.keep +0 -0
- data/vendor/.keep +0 -0
- data/yarn.lock +7696 -0
- metadata +148 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 7221999b51ad8af3ee8e03a9548a8f5be66f1d465333dbff4c93d35d8159cf51
|
4
|
+
data.tar.gz: a2121668522d09b2c2040d5b3a3b1dec8a408de54283a596f50a797edc536ae1
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 84206ccd518104700db7bf56881ab88388726f85a077dd649cf18652344c7fcb3ed4255906c9e9d24025f215ebbb3d946addf7344fe2071bda2e0433aec7e3ec
|
7
|
+
data.tar.gz: c46b54f04d455c2d18ec78c154a965f39b0f8b250e049032d85152c9355b6824d1c54dcc346845b387cdf4473e42ccde10a8fca6c53c1a441ef5692ff9432457
|
data/.browserslistrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
defaults
|
data/.gitignore
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
2
|
+
#
|
3
|
+
# If you find yourself ignoring temporary files generated by your text editor
|
4
|
+
# or operating system, you probably want to add a global ignore instead:
|
5
|
+
# git config --global core.excludesfile '~/.gitignore_global'
|
6
|
+
|
7
|
+
# Ignore bundler config.
|
8
|
+
/.bundle
|
9
|
+
|
10
|
+
# Ignore the default SQLite database.
|
11
|
+
/db/*.sqlite3
|
12
|
+
/db/*.sqlite3-journal
|
13
|
+
/db/*.sqlite3-*
|
14
|
+
|
15
|
+
# Ignore all logfiles and tempfiles.
|
16
|
+
/log/*
|
17
|
+
/tmp/*
|
18
|
+
!/log/.keep
|
19
|
+
!/tmp/.keep
|
20
|
+
|
21
|
+
# Ignore pidfiles, but keep the directory.
|
22
|
+
/tmp/pids/*
|
23
|
+
!/tmp/pids/
|
24
|
+
!/tmp/pids/.keep
|
25
|
+
|
26
|
+
# Ignore uploaded files in development.
|
27
|
+
/storage/*
|
28
|
+
!/storage/.keep
|
29
|
+
|
30
|
+
/public/assets
|
31
|
+
.byebug_history
|
32
|
+
|
33
|
+
# Ignore master key for decrypting credentials and more.
|
34
|
+
/config/master.key
|
35
|
+
|
36
|
+
/public/packs
|
37
|
+
/public/packs-test
|
38
|
+
/node_modules
|
39
|
+
/yarn-error.log
|
40
|
+
yarn-debug.log*
|
41
|
+
.yarn-integrity
|
42
|
+
|
43
|
+
orchestration/.sidecar
|
44
|
+
|
45
|
+
.env
|
46
|
+
|
47
|
+
deploy.tar
|
48
|
+
|
49
|
+
orchestration/.build/
|
50
|
+
|
51
|
+
orchestration/.deploy/
|
52
|
+
|
53
|
+
orchestration/Gemfile
|
54
|
+
|
55
|
+
orchestration/Gemfile.lock
|
56
|
+
|
57
|
+
orchestration/docker-compose.local.yml
|
data/.orchestration.yml
ADDED
data/.rspec
ADDED
data/.rspec_status
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
example_id | status | run_time |
|
2
|
+
-------------------------------------- | ------ | --------------- |
|
3
|
+
./spec/fiver/job_spec.rb[1:1:1] | passed | 0.0289 seconds |
|
4
|
+
./spec/fiver/job_spec.rb[1:2:1] | passed | 0.01648 seconds |
|
5
|
+
./spec/fiver/job_spec.rb[1:3:1] | passed | 0.01842 seconds |
|
6
|
+
./spec/fiver/job_spec.rb[1:4:1] | passed | 0.01798 seconds |
|
7
|
+
./spec/fiver/job_spec.rb[1:5:1] | passed | 0.01787 seconds |
|
8
|
+
./spec/fiver/job_spec.rb[1:6:1] | passed | 0.01708 seconds |
|
9
|
+
./spec/fiver/job_spec.rb[1:7:1] | passed | 0.01663 seconds |
|
10
|
+
./spec/fiver/job_spec.rb[1:8:1] | passed | 0.01827 seconds |
|
11
|
+
./spec/fiver/job_spec.rb[1:9:1] | passed | 0.01942 seconds |
|
12
|
+
./spec/fiver/job_spec.rb[1:10:1] | passed | 0.0169 seconds |
|
13
|
+
./spec/fiver/job_spec.rb[1:11:1:1] | passed | 0.01778 seconds |
|
14
|
+
./spec/fiver/job_spec.rb[1:11:2:1] | passed | 0.01569 seconds |
|
15
|
+
./spec/fiver/queue_spec.rb[1:1] | passed | 0.02273 seconds |
|
16
|
+
./spec/fiver/queue_spec.rb[1:2:1] | passed | 0.04603 seconds |
|
17
|
+
./spec/fiver/virtual_host_spec.rb[1:1] | passed | 0.03113 seconds |
|
18
|
+
./spec/fiver_spec.rb[1:1] | passed | 0.02879 seconds |
|
data/.rubocop.yml
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.2
|
data/.travis.yml
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
5
|
+
|
6
|
+
gem 'advanced-sneakers-activejob', '~> 0.5.0'
|
7
|
+
gem 'bootsnap', '~> 1.7'
|
8
|
+
gem 'bunny', '~> 2.17'
|
9
|
+
gem 'jbuilder', '~> 2.7'
|
10
|
+
gem 'orchestration', '~> 0.5.12'
|
11
|
+
gem 'puma', '~> 4.1'
|
12
|
+
gem 'rails', '~> 6.0', '>= 6.0.3.4'
|
13
|
+
gem 'sass-rails', '~> 6.0'
|
14
|
+
gem 'sneakers', '~> 2.11'
|
15
|
+
gem 'sqlite3', '~> 1.4'
|
16
|
+
gem 'turbolinks', '~> 5.2'
|
17
|
+
gem 'unicorn', '~> 5.8'
|
18
|
+
gem 'webpacker', '~> 4.0'
|
19
|
+
|
20
|
+
group :development do
|
21
|
+
gem 'devpack', '~> 0.3.2'
|
22
|
+
gem 'listen', '~> 3.2'
|
23
|
+
gem 'spring', '~> 2.1'
|
24
|
+
gem 'spring-watcher-listen', '~> 2.0'
|
25
|
+
gem 'web-console', '~> 4.1'
|
26
|
+
end
|
27
|
+
|
28
|
+
group :test do
|
29
|
+
gem 'brakeman', '~> 4.10'
|
30
|
+
gem 'rspec-its', '~> 1.3'
|
31
|
+
gem 'rspec-rails', '~> 4.0'
|
32
|
+
gem 'rubocop', '~> 1.10'
|
33
|
+
gem 'rubocop-rails', '~> 2.9'
|
34
|
+
gem 'rubocop-rspec', '~> 2.1'
|
35
|
+
gem 'strong_versions', '~> 0.4.5'
|
36
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,292 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actioncable (6.0.3.5)
|
5
|
+
actionpack (= 6.0.3.5)
|
6
|
+
nio4r (~> 2.0)
|
7
|
+
websocket-driver (>= 0.6.1)
|
8
|
+
actionmailbox (6.0.3.5)
|
9
|
+
actionpack (= 6.0.3.5)
|
10
|
+
activejob (= 6.0.3.5)
|
11
|
+
activerecord (= 6.0.3.5)
|
12
|
+
activestorage (= 6.0.3.5)
|
13
|
+
activesupport (= 6.0.3.5)
|
14
|
+
mail (>= 2.7.1)
|
15
|
+
actionmailer (6.0.3.5)
|
16
|
+
actionpack (= 6.0.3.5)
|
17
|
+
actionview (= 6.0.3.5)
|
18
|
+
activejob (= 6.0.3.5)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (6.0.3.5)
|
22
|
+
actionview (= 6.0.3.5)
|
23
|
+
activesupport (= 6.0.3.5)
|
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.3.5)
|
29
|
+
actionpack (= 6.0.3.5)
|
30
|
+
activerecord (= 6.0.3.5)
|
31
|
+
activestorage (= 6.0.3.5)
|
32
|
+
activesupport (= 6.0.3.5)
|
33
|
+
nokogiri (>= 1.8.5)
|
34
|
+
actionview (6.0.3.5)
|
35
|
+
activesupport (= 6.0.3.5)
|
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.3.5)
|
41
|
+
activesupport (= 6.0.3.5)
|
42
|
+
globalid (>= 0.3.6)
|
43
|
+
activemodel (6.0.3.5)
|
44
|
+
activesupport (= 6.0.3.5)
|
45
|
+
activerecord (6.0.3.5)
|
46
|
+
activemodel (= 6.0.3.5)
|
47
|
+
activesupport (= 6.0.3.5)
|
48
|
+
activestorage (6.0.3.5)
|
49
|
+
actionpack (= 6.0.3.5)
|
50
|
+
activejob (= 6.0.3.5)
|
51
|
+
activerecord (= 6.0.3.5)
|
52
|
+
marcel (~> 0.3.1)
|
53
|
+
activesupport (6.0.3.5)
|
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, >= 2.2.2)
|
59
|
+
advanced-sneakers-activejob (0.5.0)
|
60
|
+
activejob (>= 4.2)
|
61
|
+
bunny-publisher (~> 0.2.0)
|
62
|
+
sneakers (~> 2.7)
|
63
|
+
amq-protocol (2.3.2)
|
64
|
+
ast (2.4.2)
|
65
|
+
bindex (0.8.1)
|
66
|
+
bootsnap (1.7.2)
|
67
|
+
msgpack (~> 1.0)
|
68
|
+
brakeman (4.10.1)
|
69
|
+
builder (3.2.4)
|
70
|
+
bunny (2.17.0)
|
71
|
+
amq-protocol (~> 2.3, >= 2.3.1)
|
72
|
+
bunny-publisher (0.2.0)
|
73
|
+
activesupport (>= 4.2)
|
74
|
+
bunny (~> 2.17)
|
75
|
+
concurrent-ruby (1.1.8)
|
76
|
+
crass (1.0.6)
|
77
|
+
database_url (0.1.2)
|
78
|
+
devpack (0.3.2)
|
79
|
+
diff-lcs (1.4.4)
|
80
|
+
erubi (1.10.0)
|
81
|
+
erubis (2.7.0)
|
82
|
+
ffi (1.14.2)
|
83
|
+
globalid (0.4.2)
|
84
|
+
activesupport (>= 4.2.0)
|
85
|
+
i18n (1.8.9)
|
86
|
+
concurrent-ruby (~> 1.0)
|
87
|
+
jbuilder (2.11.2)
|
88
|
+
activesupport (>= 5.0.0)
|
89
|
+
kgio (2.11.3)
|
90
|
+
listen (3.4.1)
|
91
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
92
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
93
|
+
loofah (2.9.0)
|
94
|
+
crass (~> 1.0.2)
|
95
|
+
nokogiri (>= 1.5.9)
|
96
|
+
mail (2.7.1)
|
97
|
+
mini_mime (>= 0.1.1)
|
98
|
+
marcel (0.3.3)
|
99
|
+
mimemagic (~> 0.3.2)
|
100
|
+
method_source (1.0.0)
|
101
|
+
mimemagic (0.3.5)
|
102
|
+
mini_mime (1.0.2)
|
103
|
+
mini_portile2 (2.5.0)
|
104
|
+
minitest (5.14.3)
|
105
|
+
msgpack (1.4.2)
|
106
|
+
nio4r (2.5.5)
|
107
|
+
nokogiri (1.11.1)
|
108
|
+
mini_portile2 (~> 2.5.0)
|
109
|
+
racc (~> 1.4)
|
110
|
+
orchestration (0.5.12)
|
111
|
+
database_url (~> 0.1.2)
|
112
|
+
erubis (~> 2.7)
|
113
|
+
i18n (>= 0.5)
|
114
|
+
paint (~> 2.0)
|
115
|
+
thor (~> 1.0)
|
116
|
+
paint (2.2.1)
|
117
|
+
parallel (1.20.1)
|
118
|
+
parser (3.0.0.0)
|
119
|
+
ast (~> 2.4.1)
|
120
|
+
puma (4.3.7)
|
121
|
+
nio4r (~> 2.0)
|
122
|
+
racc (1.5.2)
|
123
|
+
rack (2.2.3)
|
124
|
+
rack-proxy (0.6.5)
|
125
|
+
rack
|
126
|
+
rack-test (1.1.0)
|
127
|
+
rack (>= 1.0, < 3)
|
128
|
+
rails (6.0.3.5)
|
129
|
+
actioncable (= 6.0.3.5)
|
130
|
+
actionmailbox (= 6.0.3.5)
|
131
|
+
actionmailer (= 6.0.3.5)
|
132
|
+
actionpack (= 6.0.3.5)
|
133
|
+
actiontext (= 6.0.3.5)
|
134
|
+
actionview (= 6.0.3.5)
|
135
|
+
activejob (= 6.0.3.5)
|
136
|
+
activemodel (= 6.0.3.5)
|
137
|
+
activerecord (= 6.0.3.5)
|
138
|
+
activestorage (= 6.0.3.5)
|
139
|
+
activesupport (= 6.0.3.5)
|
140
|
+
bundler (>= 1.3.0)
|
141
|
+
railties (= 6.0.3.5)
|
142
|
+
sprockets-rails (>= 2.0.0)
|
143
|
+
rails-dom-testing (2.0.3)
|
144
|
+
activesupport (>= 4.2.0)
|
145
|
+
nokogiri (>= 1.6)
|
146
|
+
rails-html-sanitizer (1.3.0)
|
147
|
+
loofah (~> 2.3)
|
148
|
+
railties (6.0.3.5)
|
149
|
+
actionpack (= 6.0.3.5)
|
150
|
+
activesupport (= 6.0.3.5)
|
151
|
+
method_source
|
152
|
+
rake (>= 0.8.7)
|
153
|
+
thor (>= 0.20.3, < 2.0)
|
154
|
+
rainbow (3.0.0)
|
155
|
+
raindrops (0.19.1)
|
156
|
+
rake (13.0.3)
|
157
|
+
rb-fsevent (0.10.4)
|
158
|
+
rb-inotify (0.10.1)
|
159
|
+
ffi (~> 1.0)
|
160
|
+
regexp_parser (2.0.3)
|
161
|
+
rexml (3.2.4)
|
162
|
+
rspec-core (3.10.1)
|
163
|
+
rspec-support (~> 3.10.0)
|
164
|
+
rspec-expectations (3.10.1)
|
165
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
166
|
+
rspec-support (~> 3.10.0)
|
167
|
+
rspec-its (1.3.0)
|
168
|
+
rspec-core (>= 3.0.0)
|
169
|
+
rspec-expectations (>= 3.0.0)
|
170
|
+
rspec-mocks (3.10.2)
|
171
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
172
|
+
rspec-support (~> 3.10.0)
|
173
|
+
rspec-rails (4.0.2)
|
174
|
+
actionpack (>= 4.2)
|
175
|
+
activesupport (>= 4.2)
|
176
|
+
railties (>= 4.2)
|
177
|
+
rspec-core (~> 3.10)
|
178
|
+
rspec-expectations (~> 3.10)
|
179
|
+
rspec-mocks (~> 3.10)
|
180
|
+
rspec-support (~> 3.10)
|
181
|
+
rspec-support (3.10.2)
|
182
|
+
rubocop (1.10.0)
|
183
|
+
parallel (~> 1.10)
|
184
|
+
parser (>= 3.0.0.0)
|
185
|
+
rainbow (>= 2.2.2, < 4.0)
|
186
|
+
regexp_parser (>= 1.8, < 3.0)
|
187
|
+
rexml
|
188
|
+
rubocop-ast (>= 1.2.0, < 2.0)
|
189
|
+
ruby-progressbar (~> 1.7)
|
190
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
191
|
+
rubocop-ast (1.4.1)
|
192
|
+
parser (>= 2.7.1.5)
|
193
|
+
rubocop-rails (2.9.1)
|
194
|
+
activesupport (>= 4.2.0)
|
195
|
+
rack (>= 1.1)
|
196
|
+
rubocop (>= 0.90.0, < 2.0)
|
197
|
+
rubocop-rspec (2.1.0)
|
198
|
+
rubocop (~> 1.0)
|
199
|
+
rubocop-ast (>= 1.1.0)
|
200
|
+
ruby-progressbar (1.11.0)
|
201
|
+
sass-rails (6.0.0)
|
202
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
203
|
+
sassc (2.4.0)
|
204
|
+
ffi (~> 1.9)
|
205
|
+
sassc-rails (2.1.2)
|
206
|
+
railties (>= 4.0.0)
|
207
|
+
sassc (>= 2.0)
|
208
|
+
sprockets (> 3.0)
|
209
|
+
sprockets-rails
|
210
|
+
tilt
|
211
|
+
serverengine (2.0.7)
|
212
|
+
sigdump (~> 0.2.2)
|
213
|
+
sigdump (0.2.4)
|
214
|
+
sneakers (2.11.0)
|
215
|
+
bunny (~> 2.12)
|
216
|
+
concurrent-ruby (~> 1.0)
|
217
|
+
rake
|
218
|
+
serverengine (~> 2.0.5)
|
219
|
+
thor
|
220
|
+
spring (2.1.1)
|
221
|
+
spring-watcher-listen (2.0.1)
|
222
|
+
listen (>= 2.7, < 4.0)
|
223
|
+
spring (>= 1.2, < 3.0)
|
224
|
+
sprockets (4.0.2)
|
225
|
+
concurrent-ruby (~> 1.0)
|
226
|
+
rack (> 1, < 3)
|
227
|
+
sprockets-rails (3.2.2)
|
228
|
+
actionpack (>= 4.0)
|
229
|
+
activesupport (>= 4.0)
|
230
|
+
sprockets (>= 3.0.0)
|
231
|
+
sqlite3 (1.4.2)
|
232
|
+
strong_versions (0.4.5)
|
233
|
+
i18n (>= 0.5)
|
234
|
+
paint (~> 2.0)
|
235
|
+
thor (1.1.0)
|
236
|
+
thread_safe (0.3.6)
|
237
|
+
tilt (2.0.10)
|
238
|
+
turbolinks (5.2.1)
|
239
|
+
turbolinks-source (~> 5.2)
|
240
|
+
turbolinks-source (5.2.0)
|
241
|
+
tzinfo (1.2.9)
|
242
|
+
thread_safe (~> 0.1)
|
243
|
+
unicode-display_width (2.0.0)
|
244
|
+
unicorn (5.8.0)
|
245
|
+
kgio (~> 2.6)
|
246
|
+
raindrops (~> 0.7)
|
247
|
+
web-console (4.1.0)
|
248
|
+
actionview (>= 6.0.0)
|
249
|
+
activemodel (>= 6.0.0)
|
250
|
+
bindex (>= 0.4.0)
|
251
|
+
railties (>= 6.0.0)
|
252
|
+
webpacker (4.3.0)
|
253
|
+
activesupport (>= 4.2)
|
254
|
+
rack-proxy (>= 0.6.1)
|
255
|
+
railties (>= 4.2)
|
256
|
+
websocket-driver (0.7.3)
|
257
|
+
websocket-extensions (>= 0.1.0)
|
258
|
+
websocket-extensions (0.1.5)
|
259
|
+
zeitwerk (2.4.2)
|
260
|
+
|
261
|
+
PLATFORMS
|
262
|
+
ruby
|
263
|
+
|
264
|
+
DEPENDENCIES
|
265
|
+
advanced-sneakers-activejob (~> 0.5.0)
|
266
|
+
bootsnap (~> 1.7)
|
267
|
+
brakeman (~> 4.10)
|
268
|
+
bunny (~> 2.17)
|
269
|
+
devpack (~> 0.3.2)
|
270
|
+
jbuilder (~> 2.7)
|
271
|
+
listen (~> 3.2)
|
272
|
+
orchestration (~> 0.5.12)
|
273
|
+
puma (~> 4.1)
|
274
|
+
rails (~> 6.0, >= 6.0.3.4)
|
275
|
+
rspec-its (~> 1.3)
|
276
|
+
rspec-rails (~> 4.0)
|
277
|
+
rubocop (~> 1.10)
|
278
|
+
rubocop-rails (~> 2.9)
|
279
|
+
rubocop-rspec (~> 2.1)
|
280
|
+
sass-rails (~> 6.0)
|
281
|
+
sneakers (~> 2.11)
|
282
|
+
spring (~> 2.1)
|
283
|
+
spring-watcher-listen (~> 2.0)
|
284
|
+
sqlite3 (~> 1.4)
|
285
|
+
strong_versions (~> 0.4.5)
|
286
|
+
turbolinks (~> 5.2)
|
287
|
+
unicorn (~> 5.8)
|
288
|
+
web-console (~> 4.1)
|
289
|
+
webpacker (~> 4.0)
|
290
|
+
|
291
|
+
BUNDLED WITH
|
292
|
+
2.1.4
|