buoys 1.1.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +1 -1
  3. data/Rakefile +2 -0
  4. data/lib/buoys/buoy.rb +3 -2
  5. data/lib/buoys/config.rb +1 -3
  6. data/lib/buoys/loader.rb +1 -1
  7. data/lib/buoys/railtie.rb +1 -1
  8. data/lib/buoys/version.rb +1 -1
  9. data/lib/generators/buoys/templates/_buoys.html.erb +1 -1
  10. data/lib/generators/buoys/templates/breadcrumbs.rb +1 -1
  11. data/test/buoys_buoy_test.rb +17 -1
  12. data/test/buoys_generator_test.rb +2 -2
  13. data/test/dummy/Rakefile +1 -1
  14. data/test/dummy/app/assets/config/manifest.js +3 -0
  15. data/test/dummy/app/assets/javascripts/application.js +3 -1
  16. data/test/dummy/app/assets/javascripts/cable.js +13 -0
  17. data/test/dummy/app/assets/stylesheets/application.css +3 -3
  18. data/test/dummy/app/channels/application_cable/channel.rb +4 -0
  19. data/test/dummy/app/channels/application_cable/connection.rb +4 -0
  20. data/test/dummy/app/controllers/application_controller.rb +0 -5
  21. data/test/dummy/app/helpers/application_helper.rb +0 -2
  22. data/test/dummy/app/jobs/application_job.rb +2 -0
  23. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  24. data/test/dummy/app/models/application_record.rb +3 -0
  25. data/test/dummy/app/models/item.rb +1 -1
  26. data/test/dummy/app/models/user.rb +1 -1
  27. data/test/dummy/app/views/layouts/application.html.erb +10 -9
  28. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  29. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  30. data/test/dummy/bin/bundle +1 -1
  31. data/test/dummy/bin/rails +1 -1
  32. data/test/dummy/bin/setup +20 -13
  33. data/test/dummy/bin/update +31 -0
  34. data/test/dummy/bin/yarn +11 -0
  35. data/test/dummy/config/application.rb +9 -21
  36. data/test/dummy/config/boot.rb +2 -4
  37. data/test/dummy/config/cable.yml +10 -0
  38. data/test/dummy/config/database.yml +1 -1
  39. data/test/dummy/config/environment.rb +1 -3
  40. data/test/dummy/config/environments/development.rb +31 -13
  41. data/test/dummy/config/environments/production.rb +31 -18
  42. data/test/dummy/config/environments/test.rb +10 -13
  43. data/test/dummy/config/initializers/application_controller_renderer.rb +8 -0
  44. data/test/dummy/config/initializers/assets.rb +6 -5
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -2
  46. data/test/dummy/config/initializers/content_security_policy.rb +25 -0
  47. data/test/dummy/config/initializers/cookies_serializer.rb +2 -2
  48. data/test/dummy/config/initializers/filter_parameter_logging.rb +0 -2
  49. data/test/dummy/config/initializers/inflections.rb +0 -2
  50. data/test/dummy/config/initializers/mime_types.rb +0 -2
  51. data/test/dummy/config/initializers/wrap_parameters.rb +2 -4
  52. data/test/dummy/config/locales/en.yml +10 -0
  53. data/test/dummy/config/puma.rb +37 -0
  54. data/test/dummy/config/routes.rb +2 -2
  55. data/test/dummy/config/spring.rb +6 -0
  56. data/test/dummy/config/storage.yml +34 -0
  57. data/test/dummy/config.ru +2 -1
  58. data/test/dummy/db/development.sqlite3 +0 -0
  59. data/test/dummy/db/test.sqlite3 +0 -0
  60. data/test/dummy/log/development.log +129 -0
  61. data/test/dummy/log/test.log +486 -263
  62. data/test/dummy/package.json +5 -0
  63. data/test/dummy/public/404.html +6 -6
  64. data/test/dummy/public/422.html +6 -6
  65. data/test/dummy/public/500.html +6 -6
  66. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  67. data/test/dummy/public/apple-touch-icon.png +0 -0
  68. data/test/dummy/tmp/development_secret.txt +1 -0
  69. data/test/test_helper.rb +4 -5
  70. metadata +101 -47
  71. data/test/dummy/README.rdoc +0 -28
  72. data/test/dummy/config/initializers/session_store.rb +0 -5
  73. 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: 1.1.0
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - muryoimpl
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-15 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
@@ -58,14 +58,28 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0.54'
61
+ version: '1.25'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '0.54'
68
+ version: '1.25'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '2.13'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '2.13'
69
83
  description: A Ruby on Rails breadcrumbs plugin.
70
84
  email:
71
85
  - muryoimpl@gmail.com
@@ -96,57 +110,77 @@ files:
96
110
  - test/buoys_helper_test.rb
97
111
  - test/buoys_loader_test.rb
98
112
  - test/buoys_test.rb
99
- - test/dummy/README.rdoc
100
113
  - test/dummy/Rakefile
114
+ - test/dummy/app/assets/config/manifest.js
101
115
  - test/dummy/app/assets/javascripts/application.js
116
+ - test/dummy/app/assets/javascripts/cable.js
102
117
  - test/dummy/app/assets/stylesheets/application.css
118
+ - test/dummy/app/channels/application_cable/channel.rb
119
+ - test/dummy/app/channels/application_cable/connection.rb
103
120
  - test/dummy/app/controllers/application_controller.rb
104
121
  - test/dummy/app/controllers/items_controller.rb
105
122
  - test/dummy/app/helpers/application_helper.rb
123
+ - test/dummy/app/jobs/application_job.rb
124
+ - test/dummy/app/mailers/application_mailer.rb
125
+ - test/dummy/app/models/application_record.rb
106
126
  - test/dummy/app/models/item.rb
107
127
  - test/dummy/app/models/user.rb
108
128
  - test/dummy/app/views/breadcrumbs/_buoys.erb
109
129
  - test/dummy/app/views/layouts/application.html.erb
130
+ - test/dummy/app/views/layouts/mailer.html.erb
131
+ - test/dummy/app/views/layouts/mailer.text.erb
110
132
  - test/dummy/bin/bundle
111
133
  - test/dummy/bin/rails
112
134
  - test/dummy/bin/rake
113
135
  - test/dummy/bin/setup
136
+ - test/dummy/bin/update
137
+ - test/dummy/bin/yarn
114
138
  - test/dummy/config.ru
115
139
  - test/dummy/config/application.rb
116
140
  - test/dummy/config/boot.rb
117
141
  - test/dummy/config/buoys/breadcrumb.rb
118
142
  - test/dummy/config/buoys/buoys.rb
143
+ - test/dummy/config/cable.yml
119
144
  - test/dummy/config/database.yml
120
145
  - test/dummy/config/environment.rb
121
146
  - test/dummy/config/environments/development.rb
122
147
  - test/dummy/config/environments/production.rb
123
148
  - test/dummy/config/environments/test.rb
149
+ - test/dummy/config/initializers/application_controller_renderer.rb
124
150
  - test/dummy/config/initializers/assets.rb
125
151
  - test/dummy/config/initializers/backtrace_silencers.rb
152
+ - test/dummy/config/initializers/content_security_policy.rb
126
153
  - test/dummy/config/initializers/cookies_serializer.rb
127
154
  - test/dummy/config/initializers/filter_parameter_logging.rb
128
155
  - test/dummy/config/initializers/inflections.rb
129
156
  - test/dummy/config/initializers/mime_types.rb
130
- - test/dummy/config/initializers/session_store.rb
131
157
  - test/dummy/config/initializers/wrap_parameters.rb
132
158
  - test/dummy/config/locales/en.yml
159
+ - test/dummy/config/puma.rb
133
160
  - test/dummy/config/routes.rb
134
- - test/dummy/config/secrets.yml
161
+ - test/dummy/config/spring.rb
162
+ - test/dummy/config/storage.yml
163
+ - test/dummy/db/development.sqlite3
135
164
  - test/dummy/db/migrate/20160602144150_create_items.rb
136
165
  - test/dummy/db/migrate/20160602144324_create_users.rb
137
166
  - test/dummy/db/schema.rb
138
167
  - test/dummy/db/test.sqlite3
168
+ - test/dummy/log/development.log
139
169
  - test/dummy/log/test.log
170
+ - test/dummy/package.json
140
171
  - test/dummy/public/404.html
141
172
  - test/dummy/public/422.html
142
173
  - test/dummy/public/500.html
174
+ - test/dummy/public/apple-touch-icon-precomposed.png
175
+ - test/dummy/public/apple-touch-icon.png
143
176
  - test/dummy/public/favicon.ico
177
+ - test/dummy/tmp/development_secret.txt
144
178
  - test/test_helper.rb
145
179
  homepage: https://github.com/muryoimpl/buoys
146
180
  licenses:
147
181
  - MIT
148
182
  metadata: {}
149
- post_install_message:
183
+ post_install_message:
150
184
  rdoc_options: []
151
185
  require_paths:
152
186
  - lib
@@ -161,60 +195,80 @@ required_rubygems_version: !ruby/object:Gem::Requirement
161
195
  - !ruby/object:Gem::Version
162
196
  version: '0'
163
197
  requirements: []
164
- rubyforge_project:
165
- rubygems_version: 2.6.13
166
- signing_key:
198
+ rubyforge_project:
199
+ rubygems_version: 2.7.6.2
200
+ signing_key:
167
201
  specification_version: 4
168
202
  summary: A Ruby on Rails breadcrumbs plugin.
169
203
  test_files:
170
- - test/buoys_generator_test.rb
171
- - test/buoys_buoy_test.rb
172
- - test/buoys_test.rb
173
204
  - test/buoys_loader_test.rb
174
- - test/buoys_helper_test.rb
205
+ - test/buoys_test.rb
175
206
  - test/test_helper.rb
176
- - test/dummy/app/assets/javascripts/application.js
177
- - test/dummy/app/assets/stylesheets/application.css
178
- - test/dummy/app/models/item.rb
179
- - test/dummy/app/models/user.rb
207
+ - test/buoys_helper_test.rb
208
+ - test/buoys_generator_test.rb
209
+ - test/dummy/public/404.html
210
+ - test/dummy/public/422.html
211
+ - test/dummy/public/apple-touch-icon.png
212
+ - test/dummy/public/favicon.ico
213
+ - test/dummy/public/apple-touch-icon-precomposed.png
214
+ - test/dummy/public/500.html
215
+ - test/dummy/bin/setup
216
+ - test/dummy/bin/bundle
217
+ - test/dummy/bin/update
218
+ - test/dummy/bin/rake
219
+ - test/dummy/bin/rails
220
+ - test/dummy/bin/yarn
221
+ - test/dummy/app/jobs/application_job.rb
180
222
  - test/dummy/app/views/breadcrumbs/_buoys.erb
223
+ - test/dummy/app/views/layouts/mailer.html.erb
181
224
  - test/dummy/app/views/layouts/application.html.erb
225
+ - test/dummy/app/views/layouts/mailer.text.erb
226
+ - test/dummy/app/channels/application_cable/connection.rb
227
+ - test/dummy/app/channels/application_cable/channel.rb
228
+ - test/dummy/app/helpers/application_helper.rb
229
+ - test/dummy/app/mailers/application_mailer.rb
230
+ - test/dummy/app/models/item.rb
231
+ - test/dummy/app/models/user.rb
232
+ - test/dummy/app/models/application_record.rb
233
+ - test/dummy/app/assets/javascripts/application.js
234
+ - test/dummy/app/assets/javascripts/cable.js
235
+ - test/dummy/app/assets/stylesheets/application.css
236
+ - test/dummy/app/assets/config/manifest.js
182
237
  - test/dummy/app/controllers/application_controller.rb
183
238
  - test/dummy/app/controllers/items_controller.rb
184
- - test/dummy/app/helpers/application_helper.rb
185
- - test/dummy/bin/setup
186
- - test/dummy/bin/rails
187
- - test/dummy/bin/rake
188
- - test/dummy/bin/bundle
189
- - test/dummy/db/migrate/20160602144324_create_users.rb
190
- - test/dummy/db/migrate/20160602144150_create_items.rb
191
- - test/dummy/db/test.sqlite3
192
- - test/dummy/db/schema.rb
193
- - test/dummy/public/422.html
194
- - test/dummy/public/404.html
195
- - test/dummy/public/500.html
196
- - test/dummy/public/favicon.ico
197
239
  - test/dummy/Rakefile
198
- - test/dummy/log/test.log
240
+ - test/dummy/package.json
241
+ - test/dummy/tmp/development_secret.txt
242
+ - test/dummy/config.ru
199
243
  - test/dummy/config/database.yml
200
- - test/dummy/config/initializers/assets.rb
244
+ - test/dummy/config/cable.yml
245
+ - test/dummy/config/puma.rb
246
+ - test/dummy/config/spring.rb
201
247
  - test/dummy/config/initializers/cookies_serializer.rb
202
248
  - test/dummy/config/initializers/inflections.rb
203
- - test/dummy/config/initializers/session_store.rb
204
- - test/dummy/config/initializers/backtrace_silencers.rb
205
- - test/dummy/config/initializers/filter_parameter_logging.rb
249
+ - test/dummy/config/initializers/application_controller_renderer.rb
206
250
  - test/dummy/config/initializers/mime_types.rb
207
251
  - test/dummy/config/initializers/wrap_parameters.rb
208
- - test/dummy/config/secrets.yml
252
+ - test/dummy/config/initializers/assets.rb
253
+ - test/dummy/config/initializers/content_security_policy.rb
254
+ - test/dummy/config/initializers/backtrace_silencers.rb
255
+ - test/dummy/config/initializers/filter_parameter_logging.rb
256
+ - test/dummy/config/routes.rb
257
+ - test/dummy/config/buoys/buoys.rb
258
+ - test/dummy/config/buoys/breadcrumb.rb
209
259
  - test/dummy/config/application.rb
260
+ - test/dummy/config/environment.rb
210
261
  - test/dummy/config/boot.rb
211
- - test/dummy/config/buoys/breadcrumb.rb
212
- - test/dummy/config/buoys/buoys.rb
213
- - test/dummy/config/routes.rb
214
262
  - test/dummy/config/locales/en.yml
263
+ - test/dummy/config/storage.yml
215
264
  - test/dummy/config/environments/test.rb
216
265
  - test/dummy/config/environments/development.rb
217
266
  - test/dummy/config/environments/production.rb
218
- - test/dummy/config/environment.rb
219
- - test/dummy/README.rdoc
220
- - test/dummy/config.ru
267
+ - test/dummy/db/development.sqlite3
268
+ - test/dummy/db/test.sqlite3
269
+ - test/dummy/db/migrate/20160602144324_create_users.rb
270
+ - test/dummy/db/migrate/20160602144150_create_items.rb
271
+ - test/dummy/db/schema.rb
272
+ - test/dummy/log/test.log
273
+ - test/dummy/log/development.log
274
+ - 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"] %>