railsdock 0.1.3 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (98) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -0
  3. data/CHANGELOG.md +25 -0
  4. data/Gemfile.lock +39 -39
  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/commands/install.rb +33 -13
  87. data/lib/railsdock/templates/install/default/Dockerfile +10 -4
  88. data/lib/railsdock/templates/install/default/default.env.erb +2 -27
  89. data/lib/railsdock/templates/install/default/docker-compose.yml.erb +10 -22
  90. data/lib/railsdock/templates/install/default/entrypoint.sh +67 -0
  91. data/lib/railsdock/templates/install/memcached/docker-compose.yml.erb +1 -3
  92. data/lib/railsdock/templates/install/mysql/docker-compose.yml.erb +2 -4
  93. data/lib/railsdock/templates/install/postgres/docker-compose.yml.erb +3 -3
  94. data/lib/railsdock/templates/install/redis/docker-compose.yml.erb +1 -3
  95. data/lib/railsdock/version.rb +1 -1
  96. data/railsdock.gemspec +1 -1
  97. metadata +89 -13
  98. 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: f4d95c3a6ff130d75b8398776086adc4de79151972cce4083c24377c6d806624
4
- data.tar.gz: f568107b19593fa360d42b96a89f191ca1e688db35425c43c17cb4ccd74cf114
3
+ metadata.gz: 67c7ccaf161e8140b8f46ab84a668c483ad36b89e9ea0151ca1c142d99d8bca0
4
+ data.tar.gz: a693a9fa194faf80019f73e034ad026b8c2d441fa98066df35fa7b5d4296a847
5
5
  SHA512:
6
- metadata.gz: 20c4692e9455c24b7d5b6db41acb7e4f3d1478a0a6b9131b6e7faa67f141ce60b6dc5af62288e050691fec41983a9422bd9c296407e1d3dc0b173d64edba0c9e
7
- data.tar.gz: ee91002e6525c635de98411bd3d5f7f63f6ca42e79ee10b7897f8fe6c3dadb706a861bf91b43d5ca0494b324bd6d1b6e5ed30094548c19b687388f99a9266149
6
+ metadata.gz: 904b9176b2d00d1d52f29a819f40da561daf3ea106f51e37bdd2466708a317477d232c7bd37ad07b050479baa06a8ad52ae85ad591c36cce194a6a6f4d677117
7
+ data.tar.gz: 1be2282f4a931a2cc809102809fac6e1be4facf864f0871cc7cf94fcd8e4abd90c947fb9c8e69e84beead0ce1b348bdadc2b0282318a29c894e711e6ce80fdd8
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,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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- railsdock (0.1.3)
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.5)
43
- crass (1.0.5)
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.7.0)
47
+ i18n (1.8.5)
48
48
  concurrent-ruby (~> 1.0)
49
- loofah (2.4.0)
49
+ loofah (2.6.0)
50
50
  crass (~> 1.0.2)
51
51
  nokogiri (>= 1.5.9)
52
- method_source (0.9.2)
52
+ method_source (1.0.0)
53
53
  mini_portile2 (2.4.0)
54
- minitest (5.13.0)
54
+ minitest (5.14.1)
55
55
  necromancer (0.5.1)
56
- nokogiri (1.10.7)
56
+ nokogiri (1.10.10)
57
57
  mini_portile2 (~> 2.4.0)
58
- pastel (0.7.3)
58
+ pastel (0.7.4)
59
59
  equatable (~> 0.6)
60
60
  tty-color (~> 0.5)
61
- pry (0.12.2)
62
- coderay (~> 1.1.0)
63
- method_source (~> 0.9.0)
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.0.7)
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 (10.5.0)
81
- rake-compiler (1.0.8)
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.0)
88
- rspec-support (~> 3.9.0)
89
- rspec-expectations (3.9.0)
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.0)
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.0)
96
- thor (1.0.0)
95
+ rspec-support (3.9.3)
96
+ thor (1.0.1)
97
97
  thread_safe (0.3.6)
98
- tty-color (0.5.0)
98
+ tty-color (0.5.1)
99
99
  tty-command (0.8.2)
100
100
  pastel (~> 0.7.0)
101
- tty-cursor (0.7.0)
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.7.0)
116
- tzinfo (1.2.5)
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.2.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 (~> 10.0)
128
+ rake (>= 12.3.3)
129
129
  rake-compiler
130
130
  rspec (~> 3.0)
131
131
 
132
132
  BUNDLED WITH
133
- 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.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