railsdock 0.1.3 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -0
- data/CHANGELOG.md +25 -0
- data/Gemfile.lock +39 -39
- data/example-app/.browserslistrc +1 -0
- data/example-app/.gitignore +31 -0
- data/example-app/.ruby-version +1 -0
- data/example-app/Gemfile +46 -0
- data/example-app/Gemfile.lock +201 -0
- data/example-app/README.md +24 -0
- data/example-app/Rakefile +6 -0
- data/example-app/app/assets/config/manifest.js +2 -0
- data/example-app/app/assets/images/.keep +0 -0
- data/example-app/app/assets/stylesheets/application.css +15 -0
- data/example-app/app/channels/application_cable/channel.rb +4 -0
- data/example-app/app/channels/application_cable/connection.rb +4 -0
- data/example-app/app/controllers/application_controller.rb +2 -0
- data/example-app/app/controllers/concerns/.keep +0 -0
- data/example-app/app/helpers/application_helper.rb +2 -0
- data/example-app/app/javascript/channels/consumer.js +6 -0
- data/example-app/app/javascript/channels/index.js +5 -0
- data/example-app/app/javascript/packs/application.js +17 -0
- data/example-app/app/jobs/application_job.rb +7 -0
- data/example-app/app/mailers/application_mailer.rb +4 -0
- data/example-app/app/models/application_record.rb +3 -0
- data/example-app/app/models/concerns/.keep +0 -0
- data/example-app/app/views/layouts/application.html.erb +15 -0
- data/example-app/app/views/layouts/mailer.html.erb +13 -0
- data/example-app/app/views/layouts/mailer.text.erb +1 -0
- data/example-app/babel.config.js +72 -0
- data/example-app/bin/bundle +105 -0
- data/example-app/bin/rails +9 -0
- data/example-app/bin/rake +9 -0
- data/example-app/bin/setup +36 -0
- data/example-app/bin/spring +17 -0
- data/example-app/bin/webpack +18 -0
- data/example-app/bin/webpack-dev-server +18 -0
- data/example-app/bin/yarn +11 -0
- data/example-app/config.ru +5 -0
- data/example-app/config/application.rb +35 -0
- data/example-app/config/boot.rb +4 -0
- data/example-app/config/cable.yml +10 -0
- data/example-app/config/credentials.yml.enc +1 -0
- data/example-app/config/database.yml +18 -0
- data/example-app/config/environment.rb +5 -0
- data/example-app/config/environments/development.rb +62 -0
- data/example-app/config/environments/production.rb +112 -0
- data/example-app/config/environments/test.rb +48 -0
- data/example-app/config/initializers/application_controller_renderer.rb +8 -0
- data/example-app/config/initializers/assets.rb +14 -0
- data/example-app/config/initializers/backtrace_silencers.rb +7 -0
- data/example-app/config/initializers/content_security_policy.rb +30 -0
- data/example-app/config/initializers/cookies_serializer.rb +5 -0
- data/example-app/config/initializers/filter_parameter_logging.rb +4 -0
- data/example-app/config/initializers/inflections.rb +16 -0
- data/example-app/config/initializers/mime_types.rb +4 -0
- data/example-app/config/initializers/wrap_parameters.rb +14 -0
- data/example-app/config/locales/en.yml +33 -0
- data/example-app/config/puma.rb +38 -0
- data/example-app/config/routes.rb +3 -0
- data/example-app/config/spring.rb +6 -0
- data/example-app/config/storage.yml +34 -0
- data/example-app/config/webpack/development.js +5 -0
- data/example-app/config/webpack/environment.js +3 -0
- data/example-app/config/webpack/production.js +5 -0
- data/example-app/config/webpack/test.js +5 -0
- data/example-app/config/webpacker.yml +96 -0
- data/example-app/db/schema.rb +18 -0
- data/example-app/db/seeds.rb +7 -0
- data/example-app/lib/assets/.keep +0 -0
- data/example-app/lib/tasks/.keep +0 -0
- data/example-app/log/.keep +0 -0
- data/example-app/package.json +15 -0
- data/example-app/postcss.config.js +12 -0
- data/example-app/public/404.html +67 -0
- data/example-app/public/422.html +67 -0
- data/example-app/public/500.html +66 -0
- data/example-app/public/apple-touch-icon-precomposed.png +0 -0
- data/example-app/public/apple-touch-icon.png +0 -0
- data/example-app/public/favicon.ico +0 -0
- data/example-app/public/robots.txt +1 -0
- data/example-app/storage/.keep +0 -0
- data/example-app/tmp/.keep +0 -0
- data/example-app/vendor/.keep +0 -0
- data/example-app/yarn.lock +7721 -0
- data/lib/railsdock/commands/install.rb +33 -13
- data/lib/railsdock/templates/install/default/Dockerfile +10 -4
- data/lib/railsdock/templates/install/default/default.env.erb +2 -27
- data/lib/railsdock/templates/install/default/docker-compose.yml.erb +10 -22
- data/lib/railsdock/templates/install/default/entrypoint.sh +67 -0
- data/lib/railsdock/templates/install/memcached/docker-compose.yml.erb +1 -3
- data/lib/railsdock/templates/install/mysql/docker-compose.yml.erb +2 -4
- data/lib/railsdock/templates/install/postgres/docker-compose.yml.erb +3 -3
- data/lib/railsdock/templates/install/redis/docker-compose.yml.erb +1 -3
- data/lib/railsdock/version.rb +1 -1
- data/railsdock.gemspec +1 -1
- metadata +89 -13
- data/lib/railsdock/templates/install/default/docker-compose.mac.yml +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67c7ccaf161e8140b8f46ab84a668c483ad36b89e9ea0151ca1c142d99d8bca0
|
4
|
+
data.tar.gz: a693a9fa194faf80019f73e034ad026b8c2d441fa98066df35fa7b5d4296a847
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 904b9176b2d00d1d52f29a819f40da561daf3ea106f51e37bdd2466708a317477d232c7bd37ad07b050479baa06a8ad52ae85ad591c36cce194a6a6f4d677117
|
7
|
+
data.tar.gz: 1be2282f4a931a2cc809102809fac6e1be4facf864f0871cc7cf94fcd8e4abd90c947fb9c8e69e84beead0ce1b348bdadc2b0282318a29c894e711e6ce80fdd8
|
data/.gitignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -0,0 +1,25 @@
|
|
1
|
+
# Changelog
|
2
|
+
All notable changes to this project will be documented in this file.
|
3
|
+
|
4
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
5
|
+
|
6
|
+
## [Unreleased]
|
7
|
+
### Added
|
8
|
+
### Changed
|
9
|
+
### Deprecated
|
10
|
+
### Removed
|
11
|
+
### Fixed
|
12
|
+
### Security
|
13
|
+
|
14
|
+
## [0.4.0] - 08-08-2020
|
15
|
+
### Changed
|
16
|
+
- default to exposing only necessary ports [PR26](https://github.com/hintmedia/railsdock/pull/26)
|
17
|
+
- move most config to compose file [PR28](https://github.com/hintmedia/railsdock/pull/28)
|
18
|
+
### Fixed
|
19
|
+
- handle new apps with no schema.rb or structure.sql [I22](https://github.com/hintmedia/railsdock/issues/22) [PR25](https://github.com/hintmedia/railsdock/pull/25)
|
20
|
+
|
21
|
+
## [0.3.1] - 07-20-2020
|
22
|
+
### Fixed
|
23
|
+
- command in docker-compose template [PR21](https://github.com/hintmedia/railsdock/pull/21)
|
24
|
+
### Added
|
25
|
+
- Initial Changelog
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
railsdock (0.
|
4
|
+
railsdock (0.4.0)
|
5
5
|
bundler (~> 2.0)
|
6
6
|
pastel (~> 0.7.2)
|
7
7
|
railties (>= 4.2, < 6.1)
|
@@ -14,56 +14,56 @@ PATH
|
|
14
14
|
GEM
|
15
15
|
remote: https://rubygems.org/
|
16
16
|
specs:
|
17
|
-
actionpack (6.0.2)
|
18
|
-
actionview (= 6.0.2)
|
19
|
-
activesupport (= 6.0.2)
|
20
|
-
rack (~> 2.0)
|
17
|
+
actionpack (6.0.3.2)
|
18
|
+
actionview (= 6.0.3.2)
|
19
|
+
activesupport (= 6.0.3.2)
|
20
|
+
rack (~> 2.0, >= 2.0.8)
|
21
21
|
rack-test (>= 0.6.3)
|
22
22
|
rails-dom-testing (~> 2.0)
|
23
23
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
24
|
-
actionview (6.0.2)
|
25
|
-
activesupport (= 6.0.2)
|
24
|
+
actionview (6.0.3.2)
|
25
|
+
activesupport (= 6.0.3.2)
|
26
26
|
builder (~> 3.1)
|
27
27
|
erubi (~> 1.4)
|
28
28
|
rails-dom-testing (~> 2.0)
|
29
29
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
30
|
-
activesupport (6.0.2)
|
30
|
+
activesupport (6.0.3.2)
|
31
31
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
32
32
|
i18n (>= 0.7, < 2)
|
33
33
|
minitest (~> 5.1)
|
34
34
|
tzinfo (~> 1.1)
|
35
|
-
zeitwerk (~> 2.2)
|
35
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
36
36
|
appraisal (2.2.0)
|
37
37
|
bundler
|
38
38
|
rake
|
39
39
|
thor (>= 0.14.0)
|
40
40
|
builder (3.2.4)
|
41
41
|
coderay (1.1.2)
|
42
|
-
concurrent-ruby (1.1.
|
43
|
-
crass (1.0.
|
42
|
+
concurrent-ruby (1.1.6)
|
43
|
+
crass (1.0.6)
|
44
44
|
diff-lcs (1.3)
|
45
45
|
equatable (0.6.1)
|
46
46
|
erubi (1.9.0)
|
47
|
-
i18n (1.
|
47
|
+
i18n (1.8.5)
|
48
48
|
concurrent-ruby (~> 1.0)
|
49
|
-
loofah (2.
|
49
|
+
loofah (2.6.0)
|
50
50
|
crass (~> 1.0.2)
|
51
51
|
nokogiri (>= 1.5.9)
|
52
|
-
method_source (0.
|
52
|
+
method_source (1.0.0)
|
53
53
|
mini_portile2 (2.4.0)
|
54
|
-
minitest (5.
|
54
|
+
minitest (5.14.1)
|
55
55
|
necromancer (0.5.1)
|
56
|
-
nokogiri (1.10.
|
56
|
+
nokogiri (1.10.10)
|
57
57
|
mini_portile2 (~> 2.4.0)
|
58
|
-
pastel (0.7.
|
58
|
+
pastel (0.7.4)
|
59
59
|
equatable (~> 0.6)
|
60
60
|
tty-color (~> 0.5)
|
61
|
-
pry (0.
|
62
|
-
coderay (~> 1.1
|
63
|
-
method_source (~>
|
61
|
+
pry (0.13.1)
|
62
|
+
coderay (~> 1.1)
|
63
|
+
method_source (~> 1.0)
|
64
64
|
pry-rails (0.3.9)
|
65
65
|
pry (>= 0.10.4)
|
66
|
-
rack (2.
|
66
|
+
rack (2.2.3)
|
67
67
|
rack-test (1.1.0)
|
68
68
|
rack (>= 1.0, < 3)
|
69
69
|
rails-dom-testing (2.0.3)
|
@@ -71,34 +71,34 @@ GEM
|
|
71
71
|
nokogiri (>= 1.6)
|
72
72
|
rails-html-sanitizer (1.3.0)
|
73
73
|
loofah (~> 2.3)
|
74
|
-
railties (6.0.2)
|
75
|
-
actionpack (= 6.0.2)
|
76
|
-
activesupport (= 6.0.2)
|
74
|
+
railties (6.0.3.2)
|
75
|
+
actionpack (= 6.0.3.2)
|
76
|
+
activesupport (= 6.0.3.2)
|
77
77
|
method_source
|
78
78
|
rake (>= 0.8.7)
|
79
79
|
thor (>= 0.20.3, < 2.0)
|
80
|
-
rake (
|
81
|
-
rake-compiler (1.0
|
80
|
+
rake (13.0.1)
|
81
|
+
rake-compiler (1.1.0)
|
82
82
|
rake
|
83
83
|
rspec (3.9.0)
|
84
84
|
rspec-core (~> 3.9.0)
|
85
85
|
rspec-expectations (~> 3.9.0)
|
86
86
|
rspec-mocks (~> 3.9.0)
|
87
|
-
rspec-core (3.9.
|
88
|
-
rspec-support (~> 3.9.
|
89
|
-
rspec-expectations (3.9.
|
87
|
+
rspec-core (3.9.2)
|
88
|
+
rspec-support (~> 3.9.3)
|
89
|
+
rspec-expectations (3.9.2)
|
90
90
|
diff-lcs (>= 1.2.0, < 2.0)
|
91
91
|
rspec-support (~> 3.9.0)
|
92
|
-
rspec-mocks (3.9.
|
92
|
+
rspec-mocks (3.9.1)
|
93
93
|
diff-lcs (>= 1.2.0, < 2.0)
|
94
94
|
rspec-support (~> 3.9.0)
|
95
|
-
rspec-support (3.9.
|
96
|
-
thor (1.0.
|
95
|
+
rspec-support (3.9.3)
|
96
|
+
thor (1.0.1)
|
97
97
|
thread_safe (0.3.6)
|
98
|
-
tty-color (0.5.
|
98
|
+
tty-color (0.5.1)
|
99
99
|
tty-command (0.8.2)
|
100
100
|
pastel (~> 0.7.0)
|
101
|
-
tty-cursor (0.7.
|
101
|
+
tty-cursor (0.7.1)
|
102
102
|
tty-file (0.7.1)
|
103
103
|
diff-lcs (~> 1.3)
|
104
104
|
pastel (~> 0.7.2)
|
@@ -112,11 +112,11 @@ GEM
|
|
112
112
|
tty-cursor (~> 0.7)
|
113
113
|
tty-screen (~> 0.7)
|
114
114
|
wisper (~> 2.0.0)
|
115
|
-
tty-screen (0.
|
116
|
-
tzinfo (1.2.
|
115
|
+
tty-screen (0.8.1)
|
116
|
+
tzinfo (1.2.7)
|
117
117
|
thread_safe (~> 0.1)
|
118
118
|
wisper (2.0.1)
|
119
|
-
zeitwerk (2.
|
119
|
+
zeitwerk (2.4.0)
|
120
120
|
|
121
121
|
PLATFORMS
|
122
122
|
ruby
|
@@ -125,9 +125,9 @@ DEPENDENCIES
|
|
125
125
|
appraisal (= 2.2.0)
|
126
126
|
pry-rails
|
127
127
|
railsdock!
|
128
|
-
rake (
|
128
|
+
rake (>= 12.3.3)
|
129
129
|
rake-compiler
|
130
130
|
rspec (~> 3.0)
|
131
131
|
|
132
132
|
BUNDLED WITH
|
133
|
-
2.
|
133
|
+
2.1.4
|
@@ -0,0 +1 @@
|
|
1
|
+
defaults
|
@@ -0,0 +1,31 @@
|
|
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 all logfiles and tempfiles.
|
11
|
+
/log/*
|
12
|
+
/tmp/*
|
13
|
+
!/log/.keep
|
14
|
+
!/tmp/.keep
|
15
|
+
|
16
|
+
# Ignore uploaded files in development.
|
17
|
+
/storage/*
|
18
|
+
!/storage/.keep
|
19
|
+
|
20
|
+
/public/assets
|
21
|
+
.byebug_history
|
22
|
+
|
23
|
+
# Ignore master key for decrypting credentials and more.
|
24
|
+
/config/master.key
|
25
|
+
|
26
|
+
/public/packs
|
27
|
+
/public/packs-test
|
28
|
+
/node_modules
|
29
|
+
/yarn-error.log
|
30
|
+
yarn-debug.log*
|
31
|
+
.yarn-integrity
|
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.6.6
|
data/example-app/Gemfile
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
3
|
+
|
4
|
+
ruby '2.6.6'
|
5
|
+
|
6
|
+
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
7
|
+
gem 'rails', '~> 6.0.1'
|
8
|
+
# Use postgresql as the database for Active Record
|
9
|
+
gem 'pg', '>= 0.18', '< 2.0'
|
10
|
+
# Use Puma as the app server
|
11
|
+
gem 'puma', '~> 4.3'
|
12
|
+
# Use SCSS for stylesheets
|
13
|
+
gem 'sass-rails', '>= 6'
|
14
|
+
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
15
|
+
gem 'webpacker'
|
16
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
17
|
+
gem 'turbolinks', '~> 5'
|
18
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
19
|
+
gem 'jbuilder', '~> 2.7'
|
20
|
+
# Use Redis adapter to run Action Cable in production
|
21
|
+
# gem 'redis', '~> 4.0'
|
22
|
+
# Use Active Model has_secure_password
|
23
|
+
# gem 'bcrypt', '~> 3.1.7'
|
24
|
+
|
25
|
+
# Use Active Storage variant
|
26
|
+
# gem 'image_processing', '~> 1.2'
|
27
|
+
|
28
|
+
# Reduces boot times through caching; required in config/boot.rb
|
29
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
30
|
+
|
31
|
+
group :development, :test do
|
32
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
33
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
34
|
+
end
|
35
|
+
|
36
|
+
group :development do
|
37
|
+
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
38
|
+
gem 'web-console', '>= 3.3.0'
|
39
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
40
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
41
|
+
gem 'spring'
|
42
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
43
|
+
end
|
44
|
+
|
45
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
46
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
@@ -0,0 +1,201 @@
|
|
1
|
+
GEM
|
2
|
+
remote: https://rubygems.org/
|
3
|
+
specs:
|
4
|
+
actioncable (6.0.3)
|
5
|
+
actionpack (= 6.0.3)
|
6
|
+
nio4r (~> 2.0)
|
7
|
+
websocket-driver (>= 0.6.1)
|
8
|
+
actionmailbox (6.0.3)
|
9
|
+
actionpack (= 6.0.3)
|
10
|
+
activejob (= 6.0.3)
|
11
|
+
activerecord (= 6.0.3)
|
12
|
+
activestorage (= 6.0.3)
|
13
|
+
activesupport (= 6.0.3)
|
14
|
+
mail (>= 2.7.1)
|
15
|
+
actionmailer (6.0.3)
|
16
|
+
actionpack (= 6.0.3)
|
17
|
+
actionview (= 6.0.3)
|
18
|
+
activejob (= 6.0.3)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (6.0.3)
|
22
|
+
actionview (= 6.0.3)
|
23
|
+
activesupport (= 6.0.3)
|
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)
|
29
|
+
actionpack (= 6.0.3)
|
30
|
+
activerecord (= 6.0.3)
|
31
|
+
activestorage (= 6.0.3)
|
32
|
+
activesupport (= 6.0.3)
|
33
|
+
nokogiri (>= 1.8.5)
|
34
|
+
actionview (6.0.3)
|
35
|
+
activesupport (= 6.0.3)
|
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)
|
41
|
+
activesupport (= 6.0.3)
|
42
|
+
globalid (>= 0.3.6)
|
43
|
+
activemodel (6.0.3)
|
44
|
+
activesupport (= 6.0.3)
|
45
|
+
activerecord (6.0.3)
|
46
|
+
activemodel (= 6.0.3)
|
47
|
+
activesupport (= 6.0.3)
|
48
|
+
activestorage (6.0.3)
|
49
|
+
actionpack (= 6.0.3)
|
50
|
+
activejob (= 6.0.3)
|
51
|
+
activerecord (= 6.0.3)
|
52
|
+
marcel (~> 0.3.1)
|
53
|
+
activesupport (6.0.3)
|
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
|
+
bindex (0.8.1)
|
60
|
+
bootsnap (1.4.6)
|
61
|
+
msgpack (~> 1.0)
|
62
|
+
builder (3.2.4)
|
63
|
+
byebug (11.1.3)
|
64
|
+
concurrent-ruby (1.1.6)
|
65
|
+
crass (1.0.6)
|
66
|
+
erubi (1.9.0)
|
67
|
+
ffi (1.12.2)
|
68
|
+
globalid (0.4.2)
|
69
|
+
activesupport (>= 4.2.0)
|
70
|
+
i18n (1.8.2)
|
71
|
+
concurrent-ruby (~> 1.0)
|
72
|
+
jbuilder (2.10.0)
|
73
|
+
activesupport (>= 5.0.0)
|
74
|
+
listen (3.1.5)
|
75
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
76
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
77
|
+
ruby_dep (~> 1.2)
|
78
|
+
loofah (2.5.0)
|
79
|
+
crass (~> 1.0.2)
|
80
|
+
nokogiri (>= 1.5.9)
|
81
|
+
mail (2.7.1)
|
82
|
+
mini_mime (>= 0.1.1)
|
83
|
+
marcel (0.3.3)
|
84
|
+
mimemagic (~> 0.3.2)
|
85
|
+
method_source (1.0.0)
|
86
|
+
mimemagic (0.3.5)
|
87
|
+
mini_mime (1.0.2)
|
88
|
+
mini_portile2 (2.4.0)
|
89
|
+
minitest (5.14.0)
|
90
|
+
msgpack (1.3.3)
|
91
|
+
nio4r (2.5.2)
|
92
|
+
nokogiri (1.10.9)
|
93
|
+
mini_portile2 (~> 2.4.0)
|
94
|
+
pg (1.2.3)
|
95
|
+
puma (4.3.5)
|
96
|
+
nio4r (~> 2.0)
|
97
|
+
rack (2.2.3)
|
98
|
+
rack-proxy (0.6.5)
|
99
|
+
rack
|
100
|
+
rack-test (1.1.0)
|
101
|
+
rack (>= 1.0, < 3)
|
102
|
+
rails (6.0.3)
|
103
|
+
actioncable (= 6.0.3)
|
104
|
+
actionmailbox (= 6.0.3)
|
105
|
+
actionmailer (= 6.0.3)
|
106
|
+
actionpack (= 6.0.3)
|
107
|
+
actiontext (= 6.0.3)
|
108
|
+
actionview (= 6.0.3)
|
109
|
+
activejob (= 6.0.3)
|
110
|
+
activemodel (= 6.0.3)
|
111
|
+
activerecord (= 6.0.3)
|
112
|
+
activestorage (= 6.0.3)
|
113
|
+
activesupport (= 6.0.3)
|
114
|
+
bundler (>= 1.3.0)
|
115
|
+
railties (= 6.0.3)
|
116
|
+
sprockets-rails (>= 2.0.0)
|
117
|
+
rails-dom-testing (2.0.3)
|
118
|
+
activesupport (>= 4.2.0)
|
119
|
+
nokogiri (>= 1.6)
|
120
|
+
rails-html-sanitizer (1.3.0)
|
121
|
+
loofah (~> 2.3)
|
122
|
+
railties (6.0.3)
|
123
|
+
actionpack (= 6.0.3)
|
124
|
+
activesupport (= 6.0.3)
|
125
|
+
method_source
|
126
|
+
rake (>= 0.8.7)
|
127
|
+
thor (>= 0.20.3, < 2.0)
|
128
|
+
rake (13.0.1)
|
129
|
+
rb-fsevent (0.10.4)
|
130
|
+
rb-inotify (0.10.1)
|
131
|
+
ffi (~> 1.0)
|
132
|
+
ruby_dep (1.5.0)
|
133
|
+
sass-rails (6.0.0)
|
134
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
135
|
+
sassc (2.3.0)
|
136
|
+
ffi (~> 1.9)
|
137
|
+
sassc-rails (2.1.2)
|
138
|
+
railties (>= 4.0.0)
|
139
|
+
sassc (>= 2.0)
|
140
|
+
sprockets (> 3.0)
|
141
|
+
sprockets-rails
|
142
|
+
tilt
|
143
|
+
semantic_range (2.3.0)
|
144
|
+
spring (2.1.0)
|
145
|
+
spring-watcher-listen (2.0.1)
|
146
|
+
listen (>= 2.7, < 4.0)
|
147
|
+
spring (>= 1.2, < 3.0)
|
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
|
+
tilt (2.0.10)
|
158
|
+
turbolinks (5.2.1)
|
159
|
+
turbolinks-source (~> 5.2)
|
160
|
+
turbolinks-source (5.2.0)
|
161
|
+
tzinfo (1.2.7)
|
162
|
+
thread_safe (~> 0.1)
|
163
|
+
web-console (4.0.2)
|
164
|
+
actionview (>= 6.0.0)
|
165
|
+
activemodel (>= 6.0.0)
|
166
|
+
bindex (>= 0.4.0)
|
167
|
+
railties (>= 6.0.0)
|
168
|
+
webpacker (5.1.1)
|
169
|
+
activesupport (>= 5.2)
|
170
|
+
rack-proxy (>= 0.6.1)
|
171
|
+
railties (>= 5.2)
|
172
|
+
semantic_range (>= 2.3.0)
|
173
|
+
websocket-driver (0.7.1)
|
174
|
+
websocket-extensions (>= 0.1.0)
|
175
|
+
websocket-extensions (0.1.5)
|
176
|
+
zeitwerk (2.3.0)
|
177
|
+
|
178
|
+
PLATFORMS
|
179
|
+
ruby
|
180
|
+
|
181
|
+
DEPENDENCIES
|
182
|
+
bootsnap (>= 1.4.2)
|
183
|
+
byebug
|
184
|
+
jbuilder (~> 2.7)
|
185
|
+
listen (>= 3.0.5, < 3.2)
|
186
|
+
pg (>= 0.18, < 2.0)
|
187
|
+
puma (~> 4.3)
|
188
|
+
rails (~> 6.0.1)
|
189
|
+
sass-rails (>= 6)
|
190
|
+
spring
|
191
|
+
spring-watcher-listen (~> 2.0.0)
|
192
|
+
turbolinks (~> 5)
|
193
|
+
tzinfo-data
|
194
|
+
web-console (>= 3.3.0)
|
195
|
+
webpacker
|
196
|
+
|
197
|
+
RUBY VERSION
|
198
|
+
ruby 2.6.6p146
|
199
|
+
|
200
|
+
BUNDLED WITH
|
201
|
+
2.1.4
|