buoys 2.0.1 → 2.0.2

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 (66) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +2 -0
  3. data/lib/buoys/buoy.rb +2 -2
  4. data/lib/buoys/version.rb +1 -1
  5. data/test/buoys_buoy_test.rb +12 -0
  6. data/test/dummy/Rakefile +1 -1
  7. data/test/dummy/app/assets/config/manifest.js +3 -1
  8. data/test/dummy/app/assets/javascripts/application.js +3 -1
  9. data/test/dummy/app/assets/javascripts/cable.js +13 -0
  10. data/test/dummy/app/assets/stylesheets/application.css +3 -3
  11. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  12. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  13. data/test/dummy/app/controllers/application_controller.rb +0 -5
  14. data/test/dummy/app/helpers/application_helper.rb +0 -2
  15. data/test/dummy/app/jobs/application_job.rb +2 -0
  16. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  17. data/test/dummy/app/models/application_record.rb +3 -0
  18. data/test/dummy/app/models/item.rb +1 -1
  19. data/test/dummy/app/models/user.rb +1 -1
  20. data/test/dummy/app/views/layouts/application.html.erb +10 -9
  21. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  22. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  23. data/test/dummy/bin/bundle +1 -1
  24. data/test/dummy/bin/rails +1 -1
  25. data/test/dummy/bin/setup +20 -13
  26. data/test/dummy/bin/update +31 -0
  27. data/test/dummy/bin/yarn +11 -0
  28. data/test/dummy/config/application.rb +9 -21
  29. data/test/dummy/config/boot.rb +2 -4
  30. data/test/dummy/config/cable.yml +10 -0
  31. data/test/dummy/config/database.yml +1 -1
  32. data/test/dummy/config/environment.rb +1 -3
  33. data/test/dummy/config/environments/development.rb +31 -13
  34. data/test/dummy/config/environments/production.rb +31 -18
  35. data/test/dummy/config/environments/test.rb +10 -13
  36. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  37. data/test/dummy/config/initializers/assets.rb +6 -5
  38. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -2
  39. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  40. data/test/dummy/config/initializers/cookies_serializer.rb +2 -2
  41. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -2
  42. data/test/dummy/config/initializers/inflections.rb +0 -2
  43. data/test/dummy/config/initializers/mime_types.rb +0 -2
  44. data/test/dummy/config/initializers/wrap_parameters.rb +2 -4
  45. data/test/dummy/config/locales/en.yml +10 -0
  46. data/test/dummy/config/puma.rb +37 -0
  47. data/test/dummy/config/routes.rb +2 -2
  48. data/test/dummy/config/spring.rb +6 -0
  49. data/test/dummy/config/storage.yml +34 -0
  50. data/test/dummy/config.ru +2 -1
  51. data/test/dummy/db/development.sqlite3 +0 -0
  52. data/test/dummy/db/test.sqlite3 +0 -0
  53. data/test/dummy/log/development.log +105 -0
  54. data/test/dummy/log/test.log +396 -267
  55. data/test/dummy/package.json +5 -0
  56. data/test/dummy/public/404.html +6 -6
  57. data/test/dummy/public/422.html +6 -6
  58. data/test/dummy/public/500.html +6 -6
  59. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  60. data/test/dummy/public/apple-touch-icon.png +0 -0
  61. data/test/dummy/tmp/development_secret.txt +1 -0
  62. data/test/test_helper.rb +4 -5
  63. metadata +88 -49
  64. data/test/dummy/README.rdoc +0 -28
  65. data/test/dummy/config/initializers/session_store.rb +0 -5
  66. data/test/dummy/config/secrets.yml +0 -22
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "dummy",
3
+ "private": true,
4
+ "dependencies": {}
5
+ }
@@ -4,7 +4,7 @@
4
4
  <title>The page you were looking for doesn't exist (404)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- body {
7
+ .rails-default-error-page {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- div.dialog {
15
+ .rails-default-error-page div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- div.dialog > div {
21
+ .rails-default-error-page div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- h1 {
34
+ .rails-default-error-page h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- div.dialog > p {
40
+ .rails-default-error-page div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body>
57
+ <body class="rails-default-error-page">
58
58
  <!-- This file lives in public/404.html -->
59
59
  <div class="dialog">
60
60
  <div>
@@ -4,7 +4,7 @@
4
4
  <title>The change you wanted was rejected (422)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- body {
7
+ .rails-default-error-page {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- div.dialog {
15
+ .rails-default-error-page div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- div.dialog > div {
21
+ .rails-default-error-page div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- h1 {
34
+ .rails-default-error-page h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- div.dialog > p {
40
+ .rails-default-error-page div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body>
57
+ <body class="rails-default-error-page">
58
58
  <!-- This file lives in public/422.html -->
59
59
  <div class="dialog">
60
60
  <div>
@@ -4,7 +4,7 @@
4
4
  <title>We're sorry, but something went wrong (500)</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1">
6
6
  <style>
7
- body {
7
+ .rails-default-error-page {
8
8
  background-color: #EFEFEF;
9
9
  color: #2E2F30;
10
10
  text-align: center;
@@ -12,13 +12,13 @@
12
12
  margin: 0;
13
13
  }
14
14
 
15
- div.dialog {
15
+ .rails-default-error-page div.dialog {
16
16
  width: 95%;
17
17
  max-width: 33em;
18
18
  margin: 4em auto 0;
19
19
  }
20
20
 
21
- div.dialog > div {
21
+ .rails-default-error-page div.dialog > div {
22
22
  border: 1px solid #CCC;
23
23
  border-right-color: #999;
24
24
  border-left-color: #999;
@@ -31,13 +31,13 @@
31
31
  box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
32
  }
33
33
 
34
- h1 {
34
+ .rails-default-error-page h1 {
35
35
  font-size: 100%;
36
36
  color: #730E15;
37
37
  line-height: 1.5em;
38
38
  }
39
39
 
40
- div.dialog > p {
40
+ .rails-default-error-page div.dialog > p {
41
41
  margin: 0 0 1em;
42
42
  padding: 1em;
43
43
  background-color: #F7F7F7;
@@ -54,7 +54,7 @@
54
54
  </style>
55
55
  </head>
56
56
 
57
- <body>
57
+ <body class="rails-default-error-page">
58
58
  <!-- This file lives in public/500.html -->
59
59
  <div class="dialog">
60
60
  <div>
File without changes
@@ -0,0 +1 @@
1
+ dd9941c47fa3eb79f22d28fc5ba6ea302beb30be05f1b9ff39697234b7d4c7c448552e75d0c332053a689c80e9f5c9031f14e167fc6e13ac42fcebc0abece9d1
data/test/test_helper.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  # Configure Rails Environment
4
4
  ENV['RAILS_ENV'] = 'test'
5
5
 
6
- require File.expand_path('../test/dummy/config/environment.rb', __dir__)
6
+ require_relative '../test/dummy/config/environment'
7
7
  ActiveRecord::Migrator.migrations_paths = [File.expand_path('../test/dummy/db/migrate', __dir__)]
8
8
  require 'rails/test_help'
9
9
 
@@ -11,14 +11,13 @@ require 'rails/test_help'
11
11
  # to be shown.
12
12
  Minitest.backtrace_filter = Minitest::BacktraceFilter.new
13
13
 
14
- # Load support files
15
- Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each do |f|
16
- require f
17
- end
14
+ require 'rails/test_unit/reporter'
15
+ Rails::TestUnitReporter.executable = 'bin/test'
18
16
 
19
17
  # Load fixtures from the engine
20
18
  if ActiveSupport::TestCase.respond_to?(:fixture_path=)
21
19
  ActiveSupport::TestCase.fixture_path = File.expand_path('fixtures', __dir__)
22
20
  ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
21
+ ActiveSupport::TestCase.file_fixture_path = ActiveSupport::TestCase.fixture_path + '/files'
23
22
  ActiveSupport::TestCase.fixtures :all
24
23
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buoys
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - muryoimpl
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-11-07 00:00:00.000000000 Z
11
+ date: 2022-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 4.2.0
19
+ version: 5.2.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 4.2.0
26
+ version: 5.2.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: sqlite3
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -96,58 +96,77 @@ files:
96
96
  - test/buoys_helper_test.rb
97
97
  - test/buoys_loader_test.rb
98
98
  - test/buoys_test.rb
99
- - test/dummy/README.rdoc
100
99
  - test/dummy/Rakefile
101
100
  - test/dummy/app/assets/config/manifest.js
102
101
  - test/dummy/app/assets/javascripts/application.js
102
+ - test/dummy/app/assets/javascripts/cable.js
103
103
  - test/dummy/app/assets/stylesheets/application.css
104
+ - test/dummy/app/channels/application_cable/channel.rb
105
+ - test/dummy/app/channels/application_cable/connection.rb
104
106
  - test/dummy/app/controllers/application_controller.rb
105
107
  - test/dummy/app/controllers/items_controller.rb
106
108
  - test/dummy/app/helpers/application_helper.rb
109
+ - test/dummy/app/jobs/application_job.rb
110
+ - test/dummy/app/mailers/application_mailer.rb
111
+ - test/dummy/app/models/application_record.rb
107
112
  - test/dummy/app/models/item.rb
108
113
  - test/dummy/app/models/user.rb
109
114
  - test/dummy/app/views/breadcrumbs/_buoys.erb
110
115
  - test/dummy/app/views/layouts/application.html.erb
116
+ - test/dummy/app/views/layouts/mailer.html.erb
117
+ - test/dummy/app/views/layouts/mailer.text.erb
111
118
  - test/dummy/bin/bundle
112
119
  - test/dummy/bin/rails
113
120
  - test/dummy/bin/rake
114
121
  - test/dummy/bin/setup
122
+ - test/dummy/bin/update
123
+ - test/dummy/bin/yarn
115
124
  - test/dummy/config.ru
116
125
  - test/dummy/config/application.rb
117
126
  - test/dummy/config/boot.rb
118
127
  - test/dummy/config/buoys/breadcrumb.rb
119
128
  - test/dummy/config/buoys/buoys.rb
129
+ - test/dummy/config/cable.yml
120
130
  - test/dummy/config/database.yml
121
131
  - test/dummy/config/environment.rb
122
132
  - test/dummy/config/environments/development.rb
123
133
  - test/dummy/config/environments/production.rb
124
134
  - test/dummy/config/environments/test.rb
135
+ - test/dummy/config/initializers/application_controller_renderer.rb
125
136
  - test/dummy/config/initializers/assets.rb
126
137
  - test/dummy/config/initializers/backtrace_silencers.rb
138
+ - test/dummy/config/initializers/content_security_policy.rb
127
139
  - test/dummy/config/initializers/cookies_serializer.rb
128
140
  - test/dummy/config/initializers/filter_parameter_logging.rb
129
141
  - test/dummy/config/initializers/inflections.rb
130
142
  - test/dummy/config/initializers/mime_types.rb
131
- - test/dummy/config/initializers/session_store.rb
132
143
  - test/dummy/config/initializers/wrap_parameters.rb
133
144
  - test/dummy/config/locales/en.yml
145
+ - test/dummy/config/puma.rb
134
146
  - test/dummy/config/routes.rb
135
- - test/dummy/config/secrets.yml
147
+ - test/dummy/config/spring.rb
148
+ - test/dummy/config/storage.yml
149
+ - test/dummy/db/development.sqlite3
136
150
  - test/dummy/db/migrate/20160602144150_create_items.rb
137
151
  - test/dummy/db/migrate/20160602144324_create_users.rb
138
152
  - test/dummy/db/schema.rb
139
153
  - test/dummy/db/test.sqlite3
154
+ - test/dummy/log/development.log
140
155
  - test/dummy/log/test.log
156
+ - test/dummy/package.json
141
157
  - test/dummy/public/404.html
142
158
  - test/dummy/public/422.html
143
159
  - test/dummy/public/500.html
160
+ - test/dummy/public/apple-touch-icon-precomposed.png
161
+ - test/dummy/public/apple-touch-icon.png
144
162
  - test/dummy/public/favicon.ico
163
+ - test/dummy/tmp/development_secret.txt
145
164
  - test/test_helper.rb
146
165
  homepage: https://github.com/muryoimpl/buoys
147
166
  licenses:
148
167
  - MIT
149
168
  metadata: {}
150
- post_install_message:
169
+ post_install_message:
151
170
  rdoc_options: []
152
171
  require_paths:
153
172
  - lib
@@ -162,60 +181,80 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
181
  - !ruby/object:Gem::Version
163
182
  version: '0'
164
183
  requirements: []
165
- rubygems_version: 3.0.3
166
- signing_key:
184
+ rubyforge_project:
185
+ rubygems_version: 2.7.6.2
186
+ signing_key:
167
187
  specification_version: 4
168
188
  summary: A Ruby on Rails breadcrumbs plugin.
169
189
  test_files:
170
- - test/test_helper.rb
190
+ - test/buoys_loader_test.rb
171
191
  - test/buoys_test.rb
172
- - test/buoys_buoy_test.rb
192
+ - test/test_helper.rb
193
+ - test/buoys_helper_test.rb
194
+ - test/buoys_generator_test.rb
195
+ - test/dummy/public/404.html
196
+ - test/dummy/public/422.html
197
+ - test/dummy/public/apple-touch-icon.png
198
+ - test/dummy/public/favicon.ico
199
+ - test/dummy/public/apple-touch-icon-precomposed.png
200
+ - test/dummy/public/500.html
173
201
  - test/dummy/bin/setup
174
202
  - test/dummy/bin/bundle
203
+ - test/dummy/bin/update
175
204
  - test/dummy/bin/rake
176
205
  - test/dummy/bin/rails
177
- - test/dummy/log/test.log
206
+ - test/dummy/bin/yarn
207
+ - test/dummy/app/jobs/application_job.rb
208
+ - test/dummy/app/views/breadcrumbs/_buoys.erb
209
+ - test/dummy/app/views/layouts/mailer.html.erb
210
+ - test/dummy/app/views/layouts/application.html.erb
211
+ - test/dummy/app/views/layouts/mailer.text.erb
212
+ - test/dummy/app/channels/application_cable/connection.rb
213
+ - test/dummy/app/channels/application_cable/channel.rb
214
+ - test/dummy/app/helpers/application_helper.rb
215
+ - test/dummy/app/mailers/application_mailer.rb
216
+ - test/dummy/app/models/item.rb
217
+ - test/dummy/app/models/user.rb
218
+ - test/dummy/app/models/application_record.rb
219
+ - test/dummy/app/assets/javascripts/application.js
220
+ - test/dummy/app/assets/javascripts/cable.js
221
+ - test/dummy/app/assets/stylesheets/application.css
222
+ - test/dummy/app/assets/config/manifest.js
223
+ - test/dummy/app/controllers/application_controller.rb
224
+ - test/dummy/app/controllers/items_controller.rb
178
225
  - test/dummy/Rakefile
179
- - test/dummy/config/application.rb
180
- - test/dummy/config/environment.rb
181
- - test/dummy/config/buoys/breadcrumb.rb
182
- - test/dummy/config/buoys/buoys.rb
183
- - test/dummy/config/initializers/filter_parameter_logging.rb
184
- - test/dummy/config/initializers/session_store.rb
185
- - test/dummy/config/initializers/backtrace_silencers.rb
186
- - test/dummy/config/initializers/wrap_parameters.rb
187
- - test/dummy/config/initializers/assets.rb
226
+ - test/dummy/package.json
227
+ - test/dummy/tmp/development_secret.txt
228
+ - test/dummy/config.ru
229
+ - test/dummy/config/database.yml
230
+ - test/dummy/config/cable.yml
231
+ - test/dummy/config/puma.rb
232
+ - test/dummy/config/spring.rb
233
+ - test/dummy/config/initializers/cookies_serializer.rb
188
234
  - test/dummy/config/initializers/inflections.rb
235
+ - test/dummy/config/initializers/application_controller_renderer.rb
189
236
  - test/dummy/config/initializers/mime_types.rb
190
- - test/dummy/config/initializers/cookies_serializer.rb
191
- - test/dummy/config/database.yml
237
+ - test/dummy/config/initializers/wrap_parameters.rb
238
+ - test/dummy/config/initializers/assets.rb
239
+ - test/dummy/config/initializers/content_security_policy.rb
240
+ - test/dummy/config/initializers/backtrace_silencers.rb
241
+ - test/dummy/config/initializers/filter_parameter_logging.rb
242
+ - test/dummy/config/routes.rb
243
+ - test/dummy/config/buoys/buoys.rb
244
+ - test/dummy/config/buoys/breadcrumb.rb
245
+ - test/dummy/config/application.rb
246
+ - test/dummy/config/environment.rb
192
247
  - test/dummy/config/boot.rb
193
248
  - test/dummy/config/locales/en.yml
249
+ - test/dummy/config/storage.yml
194
250
  - test/dummy/config/environments/test.rb
195
- - test/dummy/config/environments/production.rb
196
251
  - test/dummy/config/environments/development.rb
197
- - test/dummy/config/secrets.yml
198
- - test/dummy/config/routes.rb
199
- - test/dummy/app/views/layouts/application.html.erb
200
- - test/dummy/app/views/breadcrumbs/_buoys.erb
201
- - test/dummy/app/assets/config/manifest.js
202
- - test/dummy/app/assets/javascripts/application.js
203
- - test/dummy/app/assets/stylesheets/application.css
204
- - test/dummy/app/controllers/application_controller.rb
205
- - test/dummy/app/controllers/items_controller.rb
206
- - test/dummy/app/helpers/application_helper.rb
207
- - test/dummy/app/models/item.rb
208
- - test/dummy/app/models/user.rb
209
- - test/dummy/README.rdoc
210
- - test/dummy/config.ru
211
- - test/dummy/public/404.html
212
- - test/dummy/public/500.html
213
- - test/dummy/public/422.html
214
- - test/dummy/public/favicon.ico
252
+ - test/dummy/config/environments/production.rb
253
+ - test/dummy/db/development.sqlite3
215
254
  - test/dummy/db/test.sqlite3
216
- - test/dummy/db/schema.rb
217
- - test/dummy/db/migrate/20160602144150_create_items.rb
218
255
  - test/dummy/db/migrate/20160602144324_create_users.rb
219
- - test/buoys_generator_test.rb
220
- - test/buoys_loader_test.rb
221
- - test/buoys_helper_test.rb
256
+ - test/dummy/db/migrate/20160602144150_create_items.rb
257
+ - test/dummy/db/schema.rb
258
+ - test/dummy/log/test.log
259
+ - test/dummy/log/development.log
260
+ - test/buoys_buoy_test.rb
@@ -1,28 +0,0 @@
1
- == README
2
-
3
- This README would normally document whatever steps are necessary to get the
4
- application up and running.
5
-
6
- Things you may want to cover:
7
-
8
- * Ruby version
9
-
10
- * System dependencies
11
-
12
- * Configuration
13
-
14
- * Database creation
15
-
16
- * Database initialization
17
-
18
- * How to run the test suite
19
-
20
- * Services (job queues, cache servers, search engines, etc.)
21
-
22
- * Deployment instructions
23
-
24
- * ...
25
-
26
-
27
- Please feel free to use a different markup language if you do not plan to run
28
- <tt>rake doc:app</tt>.
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Be sure to restart your server when you modify this file.
4
-
5
- Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -1,22 +0,0 @@
1
- # Be sure to restart your server when you modify this file.
2
-
3
- # Your secret key is used for verifying the integrity of signed cookies.
4
- # If you change this key, all old signed cookies will become invalid!
5
-
6
- # Make sure the secret is at least 30 characters and all random,
7
- # no regular words or you'll be exposed to dictionary attacks.
8
- # You can use `rake secret` to generate a secure secret key.
9
-
10
- # Make sure the secrets in this file are kept private
11
- # if you're sharing your code publicly.
12
-
13
- development:
14
- secret_key_base: 0252cf0b92fd00d736f83a8d84ad14f1845b001c949727812c5e6ca41cfda624ae3db091cf456c6fa518bdf74c24598796d670bc627b975af9c29a80b1046d93
15
-
16
- test:
17
- secret_key_base: c2dfcdb8cdc863773e2edf8797ac1350ad796850997c36dd4b7d7bd695ad40a0394e78563cff9a4250f372a1b64679b50c86596f9844c0ee666b0a36dca4d662
18
-
19
- # Do not keep production secrets in the repository,
20
- # instead read values from the environment.
21
- production:
22
- secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>