railsdock 0.1.2 → 0.3.1

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 (96) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -0
  3. data/CHANGELOG.md +18 -0
  4. data/Gemfile.lock +39 -42
  5. data/example-app/.browserslistrc +1 -0
  6. data/example-app/.gitignore +31 -0
  7. data/example-app/.ruby-version +1 -0
  8. data/example-app/Gemfile +46 -0
  9. data/example-app/Gemfile.lock +201 -0
  10. data/example-app/README.md +24 -0
  11. data/example-app/Rakefile +6 -0
  12. data/example-app/app/assets/config/manifest.js +2 -0
  13. data/example-app/app/assets/images/.keep +0 -0
  14. data/example-app/app/assets/stylesheets/application.css +15 -0
  15. data/example-app/app/channels/application_cable/channel.rb +4 -0
  16. data/example-app/app/channels/application_cable/connection.rb +4 -0
  17. data/example-app/app/controllers/application_controller.rb +2 -0
  18. data/example-app/app/controllers/concerns/.keep +0 -0
  19. data/example-app/app/helpers/application_helper.rb +2 -0
  20. data/example-app/app/javascript/channels/consumer.js +6 -0
  21. data/example-app/app/javascript/channels/index.js +5 -0
  22. data/example-app/app/javascript/packs/application.js +17 -0
  23. data/example-app/app/jobs/application_job.rb +7 -0
  24. data/example-app/app/mailers/application_mailer.rb +4 -0
  25. data/example-app/app/models/application_record.rb +3 -0
  26. data/example-app/app/models/concerns/.keep +0 -0
  27. data/example-app/app/views/layouts/application.html.erb +15 -0
  28. data/example-app/app/views/layouts/mailer.html.erb +13 -0
  29. data/example-app/app/views/layouts/mailer.text.erb +1 -0
  30. data/example-app/babel.config.js +72 -0
  31. data/example-app/bin/bundle +105 -0
  32. data/example-app/bin/rails +9 -0
  33. data/example-app/bin/rake +9 -0
  34. data/example-app/bin/setup +36 -0
  35. data/example-app/bin/spring +17 -0
  36. data/example-app/bin/webpack +18 -0
  37. data/example-app/bin/webpack-dev-server +18 -0
  38. data/example-app/bin/yarn +11 -0
  39. data/example-app/config.ru +5 -0
  40. data/example-app/config/application.rb +35 -0
  41. data/example-app/config/boot.rb +4 -0
  42. data/example-app/config/cable.yml +10 -0
  43. data/example-app/config/credentials.yml.enc +1 -0
  44. data/example-app/config/database.yml +18 -0
  45. data/example-app/config/environment.rb +5 -0
  46. data/example-app/config/environments/development.rb +62 -0
  47. data/example-app/config/environments/production.rb +112 -0
  48. data/example-app/config/environments/test.rb +48 -0
  49. data/example-app/config/initializers/application_controller_renderer.rb +8 -0
  50. data/example-app/config/initializers/assets.rb +14 -0
  51. data/example-app/config/initializers/backtrace_silencers.rb +7 -0
  52. data/example-app/config/initializers/content_security_policy.rb +30 -0
  53. data/example-app/config/initializers/cookies_serializer.rb +5 -0
  54. data/example-app/config/initializers/filter_parameter_logging.rb +4 -0
  55. data/example-app/config/initializers/inflections.rb +16 -0
  56. data/example-app/config/initializers/mime_types.rb +4 -0
  57. data/example-app/config/initializers/wrap_parameters.rb +14 -0
  58. data/example-app/config/locales/en.yml +33 -0
  59. data/example-app/config/puma.rb +38 -0
  60. data/example-app/config/routes.rb +3 -0
  61. data/example-app/config/spring.rb +6 -0
  62. data/example-app/config/storage.yml +34 -0
  63. data/example-app/config/webpack/development.js +5 -0
  64. data/example-app/config/webpack/environment.js +3 -0
  65. data/example-app/config/webpack/production.js +5 -0
  66. data/example-app/config/webpack/test.js +5 -0
  67. data/example-app/config/webpacker.yml +96 -0
  68. data/example-app/db/schema.rb +18 -0
  69. data/example-app/db/seeds.rb +7 -0
  70. data/example-app/lib/assets/.keep +0 -0
  71. data/example-app/lib/tasks/.keep +0 -0
  72. data/example-app/log/.keep +0 -0
  73. data/example-app/package.json +15 -0
  74. data/example-app/postcss.config.js +12 -0
  75. data/example-app/public/404.html +67 -0
  76. data/example-app/public/422.html +67 -0
  77. data/example-app/public/500.html +66 -0
  78. data/example-app/public/apple-touch-icon-precomposed.png +0 -0
  79. data/example-app/public/apple-touch-icon.png +0 -0
  80. data/example-app/public/favicon.ico +0 -0
  81. data/example-app/public/robots.txt +1 -0
  82. data/example-app/storage/.keep +0 -0
  83. data/example-app/tmp/.keep +0 -0
  84. data/example-app/vendor/.keep +0 -0
  85. data/example-app/yarn.lock +7721 -0
  86. data/lib/railsdock/command.rb +0 -35
  87. data/lib/railsdock/commands/install.rb +33 -6
  88. data/lib/railsdock/templates/install/default/Dockerfile +10 -4
  89. data/lib/railsdock/templates/install/default/default.env.erb +5 -18
  90. data/lib/railsdock/templates/install/default/docker-compose.yml.erb +7 -19
  91. data/lib/railsdock/templates/install/default/entrypoint.sh +65 -0
  92. data/lib/railsdock/templates/install/postgres/docker-compose.yml.erb +2 -0
  93. data/lib/railsdock/version.rb +1 -1
  94. data/railsdock.gemspec +1 -3
  95. metadata +89 -37
  96. 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: bd03eee51cd458dda70f578e2f85fd20ae155b4f9369a26a0ad8409b1e31b86b
4
- data.tar.gz: fcd82f4c83b618991298c20ce1270aeaaa67bf8222ca872e6bdd4059a9dafbc7
3
+ metadata.gz: 22a989160e2cec44e7719ab7747a9e03e8366fda097786b1df6fb8de6c9ce288
4
+ data.tar.gz: d353fb016c44b7075dc6c0ffe2f578444c06b58490b2d2a1b22abea3f5d06ef9
5
5
  SHA512:
6
- metadata.gz: 02743b4a26be815a61a0b8d1e5d7cec119f51ce8c2f3581bd0372563bc16b69cfaed6517ed6cb22dde325b3b7720813df8dc1c31bb4b5f7004ecc1b4d58db762
7
- data.tar.gz: 7718b50dd6238af9e5c971748e7f2246cbee7a2ef12c51dde61d2f1f78f5b6340adb28d7952a404aea6efbb8f4790c27b84aa318e34901cc4bd08a2b3eeef8f1
6
+ metadata.gz: 0f81adc87738b5cee70579768dcd77c517a81d9e071735a899de6d6a92432f7908d938305d4fe7f2eb43d8fbf06ac7ea5f4dd4beaf40f1202bcbf36041f1cd0a
7
+ data.tar.gz: 98e77abb93aaac1aa7ae519d241a92a340c2fe8f988159cadd5ca6341028ce4e8cc56a3c96d0e3dc96b65e9c2698f66e65eb44e9cfc5dcfe4ee9fa4343b61c8f
data/.gitignore CHANGED
@@ -18,4 +18,8 @@ mkmf.log
18
18
  *.env
19
19
  dev-entrypoint
20
20
  /docker-compose.*
21
+ example-app/docker/*
22
+ example-app/*.env
23
+ example-app/dev-entrypoint
24
+ example-app/docker-compose.*
21
25
  /*.gem
@@ -0,0 +1,18 @@
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.3.1] - 07-20-2020
15
+ ### Fixed
16
+ - command in docker-compose template [PR21](https://github.com/hintmedia/railsdock/pull/21)
17
+ ### Added
18
+ - Initial Changelog
@@ -1,14 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- railsdock (0.1.2)
4
+ railsdock (0.3.1)
5
5
  bundler (~> 2.0)
6
6
  pastel (~> 0.7.2)
7
7
  railties (>= 4.2, < 6.1)
8
8
  thor (~> 1.0.0)
9
- tty-color (~> 0.4)
10
9
  tty-command (~> 0.8.0)
11
- tty-config (~> 0.3.0)
12
10
  tty-file (~> 0.7.0)
13
11
  tty-platform (~> 0.2.0)
14
12
  tty-prompt (~> 0.19.0)
@@ -16,56 +14,56 @@ PATH
16
14
  GEM
17
15
  remote: https://rubygems.org/
18
16
  specs:
19
- actionpack (6.0.2)
20
- actionview (= 6.0.2)
21
- activesupport (= 6.0.2)
22
- 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)
23
21
  rack-test (>= 0.6.3)
24
22
  rails-dom-testing (~> 2.0)
25
23
  rails-html-sanitizer (~> 1.0, >= 1.2.0)
26
- actionview (6.0.2)
27
- activesupport (= 6.0.2)
24
+ actionview (6.0.3.2)
25
+ activesupport (= 6.0.3.2)
28
26
  builder (~> 3.1)
29
27
  erubi (~> 1.4)
30
28
  rails-dom-testing (~> 2.0)
31
29
  rails-html-sanitizer (~> 1.1, >= 1.2.0)
32
- activesupport (6.0.2)
30
+ activesupport (6.0.3.2)
33
31
  concurrent-ruby (~> 1.0, >= 1.0.2)
34
32
  i18n (>= 0.7, < 2)
35
33
  minitest (~> 5.1)
36
34
  tzinfo (~> 1.1)
37
- zeitwerk (~> 2.2)
35
+ zeitwerk (~> 2.2, >= 2.2.2)
38
36
  appraisal (2.2.0)
39
37
  bundler
40
38
  rake
41
39
  thor (>= 0.14.0)
42
40
  builder (3.2.4)
43
41
  coderay (1.1.2)
44
- concurrent-ruby (1.1.5)
45
- crass (1.0.5)
42
+ concurrent-ruby (1.1.6)
43
+ crass (1.0.6)
46
44
  diff-lcs (1.3)
47
45
  equatable (0.6.1)
48
46
  erubi (1.9.0)
49
- i18n (1.7.0)
47
+ i18n (1.8.4)
50
48
  concurrent-ruby (~> 1.0)
51
- loofah (2.4.0)
49
+ loofah (2.6.0)
52
50
  crass (~> 1.0.2)
53
51
  nokogiri (>= 1.5.9)
54
- method_source (0.9.2)
52
+ method_source (1.0.0)
55
53
  mini_portile2 (2.4.0)
56
- minitest (5.13.0)
54
+ minitest (5.14.1)
57
55
  necromancer (0.5.1)
58
- nokogiri (1.10.7)
56
+ nokogiri (1.10.10)
59
57
  mini_portile2 (~> 2.4.0)
60
- pastel (0.7.3)
58
+ pastel (0.7.4)
61
59
  equatable (~> 0.6)
62
60
  tty-color (~> 0.5)
63
- pry (0.12.2)
64
- coderay (~> 1.1.0)
65
- method_source (~> 0.9.0)
61
+ pry (0.13.1)
62
+ coderay (~> 1.1)
63
+ method_source (~> 1.0)
66
64
  pry-rails (0.3.9)
67
65
  pry (>= 0.10.4)
68
- rack (2.0.7)
66
+ rack (2.2.3)
69
67
  rack-test (1.1.0)
70
68
  rack (>= 1.0, < 3)
71
69
  rails-dom-testing (2.0.3)
@@ -73,35 +71,34 @@ GEM
73
71
  nokogiri (>= 1.6)
74
72
  rails-html-sanitizer (1.3.0)
75
73
  loofah (~> 2.3)
76
- railties (6.0.2)
77
- actionpack (= 6.0.2)
78
- activesupport (= 6.0.2)
74
+ railties (6.0.3.2)
75
+ actionpack (= 6.0.3.2)
76
+ activesupport (= 6.0.3.2)
79
77
  method_source
80
78
  rake (>= 0.8.7)
81
79
  thor (>= 0.20.3, < 2.0)
82
- rake (10.5.0)
83
- rake-compiler (1.0.8)
80
+ rake (13.0.1)
81
+ rake-compiler (1.1.0)
84
82
  rake
85
83
  rspec (3.9.0)
86
84
  rspec-core (~> 3.9.0)
87
85
  rspec-expectations (~> 3.9.0)
88
86
  rspec-mocks (~> 3.9.0)
89
- rspec-core (3.9.0)
90
- rspec-support (~> 3.9.0)
91
- rspec-expectations (3.9.0)
87
+ rspec-core (3.9.2)
88
+ rspec-support (~> 3.9.3)
89
+ rspec-expectations (3.9.2)
92
90
  diff-lcs (>= 1.2.0, < 2.0)
93
91
  rspec-support (~> 3.9.0)
94
- rspec-mocks (3.9.0)
92
+ rspec-mocks (3.9.1)
95
93
  diff-lcs (>= 1.2.0, < 2.0)
96
94
  rspec-support (~> 3.9.0)
97
- rspec-support (3.9.0)
98
- thor (1.0.0)
95
+ rspec-support (3.9.3)
96
+ thor (1.0.1)
99
97
  thread_safe (0.3.6)
100
- tty-color (0.5.0)
98
+ tty-color (0.5.1)
101
99
  tty-command (0.8.2)
102
100
  pastel (~> 0.7.0)
103
- tty-config (0.3.2)
104
- tty-cursor (0.7.0)
101
+ tty-cursor (0.7.1)
105
102
  tty-file (0.7.1)
106
103
  diff-lcs (~> 1.3)
107
104
  pastel (~> 0.7.2)
@@ -115,11 +112,11 @@ GEM
115
112
  tty-cursor (~> 0.7)
116
113
  tty-screen (~> 0.7)
117
114
  wisper (~> 2.0.0)
118
- tty-screen (0.7.0)
119
- tzinfo (1.2.5)
115
+ tty-screen (0.8.1)
116
+ tzinfo (1.2.7)
120
117
  thread_safe (~> 0.1)
121
118
  wisper (2.0.1)
122
- zeitwerk (2.2.2)
119
+ zeitwerk (2.4.0)
123
120
 
124
121
  PLATFORMS
125
122
  ruby
@@ -128,9 +125,9 @@ DEPENDENCIES
128
125
  appraisal (= 2.2.0)
129
126
  pry-rails
130
127
  railsdock!
131
- rake (~> 10.0)
128
+ rake (>= 12.3.3)
132
129
  rake-compiler
133
130
  rspec (~> 3.0)
134
131
 
135
132
  BUNDLED WITH
136
- 2.0.1
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
@@ -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.2)
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.4)
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