buoys 1.0.0 → 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 (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 +2 -2
  5. data/lib/buoys/helper.rb +1 -1
  6. data/lib/buoys/loader.rb +1 -1
  7. data/lib/buoys/version.rb +1 -1
  8. data/lib/generators/buoys/install_generator.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 +1 -0
  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 +105 -0
  61. data/test/dummy/log/test.log +396 -267
  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 +6 -7
  70. metadata +87 -53
  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,22 +3,21 @@
3
3
  # Configure Rails Environment
4
4
  ENV['RAILS_ENV'] = 'test'
5
5
 
6
- require File.expand_path('../../test/dummy/config/environment.rb', __FILE__)
7
- ActiveRecord::Migrator.migrations_paths = [File.expand_path('../../test/dummy/db/migrate', __FILE__)]
6
+ require_relative '../test/dummy/config/environment'
7
+ ActiveRecord::Migrator.migrations_paths = [File.expand_path('../test/dummy/db/migrate', __dir__)]
8
8
  require 'rails/test_help'
9
9
 
10
10
  # Filter out Minitest backtrace while allowing backtrace from other libraries
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
- ActiveSupport::TestCase.fixture_path = File.expand_path('../fixtures', __FILE__)
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.0.0
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: 2017-08-13 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,20 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '0.49'
62
- - - ">="
63
- - !ruby/object:Gem::Version
64
- version: 0.49.1
61
+ version: '0.54'
65
62
  type: :development
66
63
  prerelease: false
67
64
  version_requirements: !ruby/object:Gem::Requirement
68
65
  requirements:
69
66
  - - "~>"
70
67
  - !ruby/object:Gem::Version
71
- version: '0.49'
72
- - - ">="
73
- - !ruby/object:Gem::Version
74
- version: 0.49.1
68
+ version: '0.54'
75
69
  description: A Ruby on Rails breadcrumbs plugin.
76
70
  email:
77
71
  - muryoimpl@gmail.com
@@ -102,57 +96,77 @@ files:
102
96
  - test/buoys_helper_test.rb
103
97
  - test/buoys_loader_test.rb
104
98
  - test/buoys_test.rb
105
- - test/dummy/README.rdoc
106
99
  - test/dummy/Rakefile
100
+ - test/dummy/app/assets/config/manifest.js
107
101
  - test/dummy/app/assets/javascripts/application.js
102
+ - test/dummy/app/assets/javascripts/cable.js
108
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
109
106
  - test/dummy/app/controllers/application_controller.rb
110
107
  - test/dummy/app/controllers/items_controller.rb
111
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
112
112
  - test/dummy/app/models/item.rb
113
113
  - test/dummy/app/models/user.rb
114
114
  - test/dummy/app/views/breadcrumbs/_buoys.erb
115
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
116
118
  - test/dummy/bin/bundle
117
119
  - test/dummy/bin/rails
118
120
  - test/dummy/bin/rake
119
121
  - test/dummy/bin/setup
122
+ - test/dummy/bin/update
123
+ - test/dummy/bin/yarn
120
124
  - test/dummy/config.ru
121
125
  - test/dummy/config/application.rb
122
126
  - test/dummy/config/boot.rb
123
127
  - test/dummy/config/buoys/breadcrumb.rb
124
128
  - test/dummy/config/buoys/buoys.rb
129
+ - test/dummy/config/cable.yml
125
130
  - test/dummy/config/database.yml
126
131
  - test/dummy/config/environment.rb
127
132
  - test/dummy/config/environments/development.rb
128
133
  - test/dummy/config/environments/production.rb
129
134
  - test/dummy/config/environments/test.rb
135
+ - test/dummy/config/initializers/application_controller_renderer.rb
130
136
  - test/dummy/config/initializers/assets.rb
131
137
  - test/dummy/config/initializers/backtrace_silencers.rb
138
+ - test/dummy/config/initializers/content_security_policy.rb
132
139
  - test/dummy/config/initializers/cookies_serializer.rb
133
140
  - test/dummy/config/initializers/filter_parameter_logging.rb
134
141
  - test/dummy/config/initializers/inflections.rb
135
142
  - test/dummy/config/initializers/mime_types.rb
136
- - test/dummy/config/initializers/session_store.rb
137
143
  - test/dummy/config/initializers/wrap_parameters.rb
138
144
  - test/dummy/config/locales/en.yml
145
+ - test/dummy/config/puma.rb
139
146
  - test/dummy/config/routes.rb
140
- - test/dummy/config/secrets.yml
147
+ - test/dummy/config/spring.rb
148
+ - test/dummy/config/storage.yml
149
+ - test/dummy/db/development.sqlite3
141
150
  - test/dummy/db/migrate/20160602144150_create_items.rb
142
151
  - test/dummy/db/migrate/20160602144324_create_users.rb
143
152
  - test/dummy/db/schema.rb
144
153
  - test/dummy/db/test.sqlite3
154
+ - test/dummy/log/development.log
145
155
  - test/dummy/log/test.log
156
+ - test/dummy/package.json
146
157
  - test/dummy/public/404.html
147
158
  - test/dummy/public/422.html
148
159
  - test/dummy/public/500.html
160
+ - test/dummy/public/apple-touch-icon-precomposed.png
161
+ - test/dummy/public/apple-touch-icon.png
149
162
  - test/dummy/public/favicon.ico
163
+ - test/dummy/tmp/development_secret.txt
150
164
  - test/test_helper.rb
151
165
  homepage: https://github.com/muryoimpl/buoys
152
166
  licenses:
153
167
  - MIT
154
168
  metadata: {}
155
- post_install_message:
169
+ post_install_message:
156
170
  rdoc_options: []
157
171
  require_paths:
158
172
  - lib
@@ -167,60 +181,80 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
181
  - !ruby/object:Gem::Version
168
182
  version: '0'
169
183
  requirements: []
170
- rubyforge_project:
171
- rubygems_version: 2.5.1
172
- signing_key:
184
+ rubyforge_project:
185
+ rubygems_version: 2.7.6.2
186
+ signing_key:
173
187
  specification_version: 4
174
188
  summary: A Ruby on Rails breadcrumbs plugin.
175
189
  test_files:
176
- - test/buoys_generator_test.rb
177
- - test/buoys_buoy_test.rb
178
- - test/buoys_test.rb
179
190
  - test/buoys_loader_test.rb
180
- - test/buoys_helper_test.rb
191
+ - test/buoys_test.rb
181
192
  - test/test_helper.rb
182
- - test/dummy/app/assets/javascripts/application.js
183
- - test/dummy/app/assets/stylesheets/application.css
184
- - test/dummy/app/models/item.rb
185
- - test/dummy/app/models/user.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
201
+ - test/dummy/bin/setup
202
+ - test/dummy/bin/bundle
203
+ - test/dummy/bin/update
204
+ - test/dummy/bin/rake
205
+ - test/dummy/bin/rails
206
+ - test/dummy/bin/yarn
207
+ - test/dummy/app/jobs/application_job.rb
186
208
  - test/dummy/app/views/breadcrumbs/_buoys.erb
209
+ - test/dummy/app/views/layouts/mailer.html.erb
187
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
188
223
  - test/dummy/app/controllers/application_controller.rb
189
224
  - test/dummy/app/controllers/items_controller.rb
190
- - test/dummy/app/helpers/application_helper.rb
191
- - test/dummy/bin/setup
192
- - test/dummy/bin/rails
193
- - test/dummy/bin/rake
194
- - test/dummy/bin/bundle
195
- - test/dummy/db/migrate/20160602144324_create_users.rb
196
- - test/dummy/db/migrate/20160602144150_create_items.rb
197
- - test/dummy/db/test.sqlite3
198
- - test/dummy/db/schema.rb
199
- - test/dummy/public/422.html
200
- - test/dummy/public/404.html
201
- - test/dummy/public/500.html
202
- - test/dummy/public/favicon.ico
203
225
  - test/dummy/Rakefile
204
- - test/dummy/log/test.log
226
+ - test/dummy/package.json
227
+ - test/dummy/tmp/development_secret.txt
228
+ - test/dummy/config.ru
205
229
  - test/dummy/config/database.yml
206
- - test/dummy/config/initializers/assets.rb
230
+ - test/dummy/config/cable.yml
231
+ - test/dummy/config/puma.rb
232
+ - test/dummy/config/spring.rb
207
233
  - test/dummy/config/initializers/cookies_serializer.rb
208
234
  - test/dummy/config/initializers/inflections.rb
209
- - test/dummy/config/initializers/session_store.rb
210
- - test/dummy/config/initializers/backtrace_silencers.rb
211
- - test/dummy/config/initializers/filter_parameter_logging.rb
235
+ - test/dummy/config/initializers/application_controller_renderer.rb
212
236
  - test/dummy/config/initializers/mime_types.rb
213
237
  - test/dummy/config/initializers/wrap_parameters.rb
214
- - test/dummy/config/secrets.yml
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
215
245
  - test/dummy/config/application.rb
246
+ - test/dummy/config/environment.rb
216
247
  - test/dummy/config/boot.rb
217
- - test/dummy/config/buoys/breadcrumb.rb
218
- - test/dummy/config/buoys/buoys.rb
219
- - test/dummy/config/routes.rb
220
248
  - test/dummy/config/locales/en.yml
249
+ - test/dummy/config/storage.yml
221
250
  - test/dummy/config/environments/test.rb
222
251
  - test/dummy/config/environments/development.rb
223
252
  - test/dummy/config/environments/production.rb
224
- - test/dummy/config/environment.rb
225
- - test/dummy/README.rdoc
226
- - test/dummy/config.ru
253
+ - test/dummy/db/development.sqlite3
254
+ - test/dummy/db/test.sqlite3
255
+ - test/dummy/db/migrate/20160602144324_create_users.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"] %>