trusty-cms 5.0.2 → 5.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,16 +7,6 @@
7
7
  breadcrumb:
8
8
  Renders the @breadcrumb@ attribute of the current page.
9
9
 
10
- breadcrumbs:
11
- Renders a trail of breadcrumbs to the current page. The separator attribute
12
- specifies the HTML fragment that is inserted between each of the breadcrumbs. By
13
- default it is set to @>@. The boolean nolinks attribute can be specified to render
14
- breadcrumbs in plain text, without any links (useful when generating title tag).
15
-
16
- *Usage:*
17
-
18
- <pre><code><r&#58;breadcrumbs [separator="separator_string"] [nolinks="true"] /></code></pre>
19
-
20
10
  children-count:
21
11
  Renders the total number of children.
22
12
 
@@ -165,15 +155,6 @@
165
155
 
166
156
  <pre><code><r&#58;content [part="part_name"] [inherit="true|false"] [contextual="true|false"] /></code></pre>
167
157
 
168
- cycle:
169
- Renders one of the passed values based on a global cycle counter. Use the @reset@
170
- attribute to reset the cycle to the beginning. Use the @name@ attribute to track
171
- multiple cycles; the default is @cycle@.
172
-
173
- *Usage&#58;*
174
-
175
- <pre><code><r&#58;cycle values="first, second, third" [reset="true|false"] [name="cycle"] /></code></pre>
176
-
177
158
  date:
178
159
  Renders the date based on the current page (by default when it was published or created).
179
160
  The format attribute uses the same formating codes used by the Ruby @strftime@ function. By
@@ -200,15 +181,6 @@
200
181
 
201
182
  <pre><code><r&#58;find url="value_to_find">...</r&#58;find></code></pre>
202
183
 
203
- if_ancestor_or_self:
204
- Renders the contained elements if the current contextual page is either the actual page or one of its parents.
205
-
206
- This is typically used inside another tag (like &lt;r&#58;children&#58;each&gt;) to add conditional mark-up if the child element is or descends from the current page.
207
-
208
- *Usage&#58;*
209
-
210
- <pre><code><r&#58;if_ancestor_or_self>...</r&#58;if_ancestor_or_self></code></pre>
211
-
212
184
  if_children:
213
185
  Renders the contained elements only if the current contextual page has one or
214
186
  more child pages. The @status@ attribute limits the status of found child pages
@@ -233,13 +205,6 @@
233
205
 
234
206
  <pre><code><r&#58;if_content [part="part_name, other_part"] [inherit="true"] [find="any"]>...</r&#58;if_content></code></pre>
235
207
 
236
- if_dev:
237
- Renders the containing elements only if TrustyCms in is development mode.
238
-
239
- *Usage&#58;*
240
-
241
- <pre><code><r&#58;if_dev>...</r&#58;if_dev></code></pre>
242
-
243
208
  if_parent:
244
209
  Renders the contained elements only if the current contextual page has a parent, i.e.
245
210
  is not the root page.
@@ -266,23 +231,6 @@
266
231
 
267
232
  <pre><code><r&#58;if_url matches="regexp" [ignore_case="true|false"]>...</r&#58;if_url></code></pre>
268
233
 
269
- link:
270
- Renders a link to the page. When used as a single tag it uses the page's title
271
- for the link name. When used as a double tag the part in between both tags will
272
- be used as the link text. The link tag passes all attributes over to the HTML
273
- @a@ tag. This is very useful for passing attributes like the @class@ attribute
274
- or @id@ attribute. If the @anchor@ attribute is passed to the tag it will
275
- append a pound sign (<code>#</code>) followed by the value of the attribute to
276
- the @href@ attribute of the HTML @a@ tag--effectively making an HTML anchor.
277
-
278
- *Usage&#58;*
279
-
280
- <pre><code><r&#58;link [anchor="name"] [other attributes...] /></code></pre>
281
-
282
- or
283
-
284
- <pre><code><r&#58;link [anchor="name"] [other attributes...]>link text here</r&#58;link></code></pre>
285
-
286
234
  markdown:
287
235
  Filters its contents with the Markdown filter.
288
236
 
@@ -426,14 +374,6 @@
426
374
 
427
375
  <pre><code><r&#58;snippet name="snippet_name">Lorem ipsum dolor...</r&#58;snippet></code></pre>
428
376
 
429
- status:
430
- Prints the page's status as a string. Optional attribute 'downcase'
431
- will cause the status to be all lowercase.
432
-
433
- *Usage&#58;*
434
-
435
- <pre><code><r&#58;status [downcase='true'] /></code></pre>
436
-
437
377
  textile:
438
378
  Filters its contents with the Textile filter.
439
379
 
@@ -486,13 +426,6 @@
486
426
 
487
427
  <pre><code><r&#58;unless_content [part="part_name, other_part"] [inherit="false"] [find="any"]>...</r&#58;unless_content></code></pre>
488
428
 
489
- unless_dev:
490
- The opposite of the @if_dev@ tag.
491
-
492
- *Usage&#58;*
493
-
494
- <pre><code><r&#58;unless_dev>...</r&#58;unless_dev></code></pre>
495
-
496
429
  unless_parent:
497
430
  Renders the contained elements only if the current contextual page has no parent, i.e.
498
431
  is the root page.
data/lib/trusty_cms.rb CHANGED
@@ -2,6 +2,6 @@ TRUSTY_CMS_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..')) unle
2
2
 
3
3
  unless defined? TrustyCms::VERSION
4
4
  module TrustyCms
5
- VERSION = '5.0.2'.freeze
5
+ VERSION = '5.0.6'.freeze
6
6
  end
7
7
  end
@@ -0,0 +1,456 @@
1
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
2
+
3
+ Being able to do this is deprecated. Autoloading during initialization is going
4
+ to be an error condition in future versions of Rails.
5
+
6
+ Reloading does not reboot the application, and therefore code executed during
7
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
8
+ the expected changes won't be reflected in that stale Class object.
9
+
10
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
11
+
12
+ In order to autoload safely at boot time, please wrap your code in a reloader
13
+ callback this way:
14
+
15
+ Rails.application.reloader.to_prepare do
16
+ # Autoload classes and modules needed at boot time here.
17
+ end
18
+
19
+ That block runs when the application boots, and every time there is a reload.
20
+ For historical reasons, it may run twice, so it has to be idempotent.
21
+
22
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
23
+ Rails autoloads and reloads.
24
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
25
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
26
+
27
+ Being able to do this is deprecated. Autoloading during initialization is going
28
+ to be an error condition in future versions of Rails.
29
+
30
+ Reloading does not reboot the application, and therefore code executed during
31
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
32
+ the expected changes won't be reflected in that stale Class object.
33
+
34
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
35
+
36
+ In order to autoload safely at boot time, please wrap your code in a reloader
37
+ callback this way:
38
+
39
+ Rails.application.reloader.to_prepare do
40
+ # Autoload classes and modules needed at boot time here.
41
+ end
42
+
43
+ That block runs when the application boots, and every time there is a reload.
44
+ For historical reasons, it may run twice, so it has to be idempotent.
45
+
46
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
47
+ Rails autoloads and reloads.
48
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
49
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
50
+
51
+ Being able to do this is deprecated. Autoloading during initialization is going
52
+ to be an error condition in future versions of Rails.
53
+
54
+ Reloading does not reboot the application, and therefore code executed during
55
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
56
+ the expected changes won't be reflected in that stale Class object.
57
+
58
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
59
+
60
+ In order to autoload safely at boot time, please wrap your code in a reloader
61
+ callback this way:
62
+
63
+ Rails.application.reloader.to_prepare do
64
+ # Autoload classes and modules needed at boot time here.
65
+ end
66
+
67
+ That block runs when the application boots, and every time there is a reload.
68
+ For historical reasons, it may run twice, so it has to be idempotent.
69
+
70
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
71
+ Rails autoloads and reloads.
72
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
73
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
74
+
75
+ Being able to do this is deprecated. Autoloading during initialization is going
76
+ to be an error condition in future versions of Rails.
77
+
78
+ Reloading does not reboot the application, and therefore code executed during
79
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
80
+ the expected changes won't be reflected in that stale Class object.
81
+
82
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
83
+
84
+ In order to autoload safely at boot time, please wrap your code in a reloader
85
+ callback this way:
86
+
87
+ Rails.application.reloader.to_prepare do
88
+ # Autoload classes and modules needed at boot time here.
89
+ end
90
+
91
+ That block runs when the application boots, and every time there is a reload.
92
+ For historical reasons, it may run twice, so it has to be idempotent.
93
+
94
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
95
+ Rails autoloads and reloads.
96
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
97
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
98
+
99
+ Being able to do this is deprecated. Autoloading during initialization is going
100
+ to be an error condition in future versions of Rails.
101
+
102
+ Reloading does not reboot the application, and therefore code executed during
103
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
104
+ the expected changes won't be reflected in that stale Class object.
105
+
106
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
107
+
108
+ In order to autoload safely at boot time, please wrap your code in a reloader
109
+ callback this way:
110
+
111
+ Rails.application.reloader.to_prepare do
112
+ # Autoload classes and modules needed at boot time here.
113
+ end
114
+
115
+ That block runs when the application boots, and every time there is a reload.
116
+ For historical reasons, it may run twice, so it has to be idempotent.
117
+
118
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
119
+ Rails autoloads and reloads.
120
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
121
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
122
+
123
+ Being able to do this is deprecated. Autoloading during initialization is going
124
+ to be an error condition in future versions of Rails.
125
+
126
+ Reloading does not reboot the application, and therefore code executed during
127
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
128
+ the expected changes won't be reflected in that stale Class object.
129
+
130
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
131
+
132
+ In order to autoload safely at boot time, please wrap your code in a reloader
133
+ callback this way:
134
+
135
+ Rails.application.reloader.to_prepare do
136
+ # Autoload classes and modules needed at boot time here.
137
+ end
138
+
139
+ That block runs when the application boots, and every time there is a reload.
140
+ For historical reasons, it may run twice, so it has to be idempotent.
141
+
142
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
143
+ Rails autoloads and reloads.
144
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
145
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
146
+
147
+ Being able to do this is deprecated. Autoloading during initialization is going
148
+ to be an error condition in future versions of Rails.
149
+
150
+ Reloading does not reboot the application, and therefore code executed during
151
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
152
+ the expected changes won't be reflected in that stale Class object.
153
+
154
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
155
+
156
+ In order to autoload safely at boot time, please wrap your code in a reloader
157
+ callback this way:
158
+
159
+ Rails.application.reloader.to_prepare do
160
+ # Autoload classes and modules needed at boot time here.
161
+ end
162
+
163
+ That block runs when the application boots, and every time there is a reload.
164
+ For historical reasons, it may run twice, so it has to be idempotent.
165
+
166
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
167
+ Rails autoloads and reloads.
168
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
169
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
170
+
171
+ Being able to do this is deprecated. Autoloading during initialization is going
172
+ to be an error condition in future versions of Rails.
173
+
174
+ Reloading does not reboot the application, and therefore code executed during
175
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
176
+ the expected changes won't be reflected in that stale Class object.
177
+
178
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
179
+
180
+ In order to autoload safely at boot time, please wrap your code in a reloader
181
+ callback this way:
182
+
183
+ Rails.application.reloader.to_prepare do
184
+ # Autoload classes and modules needed at boot time here.
185
+ end
186
+
187
+ That block runs when the application boots, and every time there is a reload.
188
+ For historical reasons, it may run twice, so it has to be idempotent.
189
+
190
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
191
+ Rails autoloads and reloads.
192
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
193
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
194
+
195
+ Being able to do this is deprecated. Autoloading during initialization is going
196
+ to be an error condition in future versions of Rails.
197
+
198
+ Reloading does not reboot the application, and therefore code executed during
199
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
200
+ the expected changes won't be reflected in that stale Class object.
201
+
202
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
203
+
204
+ In order to autoload safely at boot time, please wrap your code in a reloader
205
+ callback this way:
206
+
207
+ Rails.application.reloader.to_prepare do
208
+ # Autoload classes and modules needed at boot time here.
209
+ end
210
+
211
+ That block runs when the application boots, and every time there is a reload.
212
+ For historical reasons, it may run twice, so it has to be idempotent.
213
+
214
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
215
+ Rails autoloads and reloads.
216
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
217
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
218
+
219
+ Being able to do this is deprecated. Autoloading during initialization is going
220
+ to be an error condition in future versions of Rails.
221
+
222
+ Reloading does not reboot the application, and therefore code executed during
223
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
224
+ the expected changes won't be reflected in that stale Class object.
225
+
226
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
227
+
228
+ In order to autoload safely at boot time, please wrap your code in a reloader
229
+ callback this way:
230
+
231
+ Rails.application.reloader.to_prepare do
232
+ # Autoload classes and modules needed at boot time here.
233
+ end
234
+
235
+ That block runs when the application boots, and every time there is a reload.
236
+ For historical reasons, it may run twice, so it has to be idempotent.
237
+
238
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
239
+ Rails autoloads and reloads.
240
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
241
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
242
+
243
+ Being able to do this is deprecated. Autoloading during initialization is going
244
+ to be an error condition in future versions of Rails.
245
+
246
+ Reloading does not reboot the application, and therefore code executed during
247
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
248
+ the expected changes won't be reflected in that stale Class object.
249
+
250
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
251
+
252
+ In order to autoload safely at boot time, please wrap your code in a reloader
253
+ callback this way:
254
+
255
+ Rails.application.reloader.to_prepare do
256
+ # Autoload classes and modules needed at boot time here.
257
+ end
258
+
259
+ That block runs when the application boots, and every time there is a reload.
260
+ For historical reasons, it may run twice, so it has to be idempotent.
261
+
262
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
263
+ Rails autoloads and reloads.
264
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
265
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
266
+
267
+ Being able to do this is deprecated. Autoloading during initialization is going
268
+ to be an error condition in future versions of Rails.
269
+
270
+ Reloading does not reboot the application, and therefore code executed during
271
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
272
+ the expected changes won't be reflected in that stale Class object.
273
+
274
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
275
+
276
+ In order to autoload safely at boot time, please wrap your code in a reloader
277
+ callback this way:
278
+
279
+ Rails.application.reloader.to_prepare do
280
+ # Autoload classes and modules needed at boot time here.
281
+ end
282
+
283
+ That block runs when the application boots, and every time there is a reload.
284
+ For historical reasons, it may run twice, so it has to be idempotent.
285
+
286
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
287
+ Rails autoloads and reloads.
288
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
289
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
290
+
291
+ Being able to do this is deprecated. Autoloading during initialization is going
292
+ to be an error condition in future versions of Rails.
293
+
294
+ Reloading does not reboot the application, and therefore code executed during
295
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
296
+ the expected changes won't be reflected in that stale Class object.
297
+
298
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
299
+
300
+ In order to autoload safely at boot time, please wrap your code in a reloader
301
+ callback this way:
302
+
303
+ Rails.application.reloader.to_prepare do
304
+ # Autoload classes and modules needed at boot time here.
305
+ end
306
+
307
+ That block runs when the application boots, and every time there is a reload.
308
+ For historical reasons, it may run twice, so it has to be idempotent.
309
+
310
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
311
+ Rails autoloads and reloads.
312
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
313
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
314
+
315
+ Being able to do this is deprecated. Autoloading during initialization is going
316
+ to be an error condition in future versions of Rails.
317
+
318
+ Reloading does not reboot the application, and therefore code executed during
319
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
320
+ the expected changes won't be reflected in that stale Class object.
321
+
322
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
323
+
324
+ In order to autoload safely at boot time, please wrap your code in a reloader
325
+ callback this way:
326
+
327
+ Rails.application.reloader.to_prepare do
328
+ # Autoload classes and modules needed at boot time here.
329
+ end
330
+
331
+ That block runs when the application boots, and every time there is a reload.
332
+ For historical reasons, it may run twice, so it has to be idempotent.
333
+
334
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
335
+ Rails autoloads and reloads.
336
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
337
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
338
+
339
+ Being able to do this is deprecated. Autoloading during initialization is going
340
+ to be an error condition in future versions of Rails.
341
+
342
+ Reloading does not reboot the application, and therefore code executed during
343
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
344
+ the expected changes won't be reflected in that stale Class object.
345
+
346
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
347
+
348
+ In order to autoload safely at boot time, please wrap your code in a reloader
349
+ callback this way:
350
+
351
+ Rails.application.reloader.to_prepare do
352
+ # Autoload classes and modules needed at boot time here.
353
+ end
354
+
355
+ That block runs when the application boots, and every time there is a reload.
356
+ For historical reasons, it may run twice, so it has to be idempotent.
357
+
358
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
359
+ Rails autoloads and reloads.
360
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
361
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
362
+
363
+ Being able to do this is deprecated. Autoloading during initialization is going
364
+ to be an error condition in future versions of Rails.
365
+
366
+ Reloading does not reboot the application, and therefore code executed during
367
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
368
+ the expected changes won't be reflected in that stale Class object.
369
+
370
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
371
+
372
+ In order to autoload safely at boot time, please wrap your code in a reloader
373
+ callback this way:
374
+
375
+ Rails.application.reloader.to_prepare do
376
+ # Autoload classes and modules needed at boot time here.
377
+ end
378
+
379
+ That block runs when the application boots, and every time there is a reload.
380
+ For historical reasons, it may run twice, so it has to be idempotent.
381
+
382
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
383
+ Rails autoloads and reloads.
384
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
385
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
386
+
387
+ Being able to do this is deprecated. Autoloading during initialization is going
388
+ to be an error condition in future versions of Rails.
389
+
390
+ Reloading does not reboot the application, and therefore code executed during
391
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
392
+ the expected changes won't be reflected in that stale Class object.
393
+
394
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
395
+
396
+ In order to autoload safely at boot time, please wrap your code in a reloader
397
+ callback this way:
398
+
399
+ Rails.application.reloader.to_prepare do
400
+ # Autoload classes and modules needed at boot time here.
401
+ end
402
+
403
+ That block runs when the application boots, and every time there is a reload.
404
+ For historical reasons, it may run twice, so it has to be idempotent.
405
+
406
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
407
+ Rails autoloads and reloads.
408
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
409
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
410
+
411
+ Being able to do this is deprecated. Autoloading during initialization is going
412
+ to be an error condition in future versions of Rails.
413
+
414
+ Reloading does not reboot the application, and therefore code executed during
415
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
416
+ the expected changes won't be reflected in that stale Class object.
417
+
418
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
419
+
420
+ In order to autoload safely at boot time, please wrap your code in a reloader
421
+ callback this way:
422
+
423
+ Rails.application.reloader.to_prepare do
424
+ # Autoload classes and modules needed at boot time here.
425
+ end
426
+
427
+ That block runs when the application boots, and every time there is a reload.
428
+ For historical reasons, it may run twice, so it has to be idempotent.
429
+
430
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
431
+ Rails autoloads and reloads.
432
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)
433
+ DEPRECATION WARNING: Initialization autoloaded the constants TrustyCms::Config, Admin, Admin::RegionsHelper, ApplicationHelper, DeviseHelper, ApplicationController, Admin::ResourceHelper, Admin::ResourceController, Admin::LayoutsHelper, Admin::LayoutsController, MultiSite::SiteChooserHelper, Admin::SnippetsController, ActionText::ContentHelper, and ActionText::TagHelper.
434
+
435
+ Being able to do this is deprecated. Autoloading during initialization is going
436
+ to be an error condition in future versions of Rails.
437
+
438
+ Reloading does not reboot the application, and therefore code executed during
439
+ initialization does not run again. So, if you reload TrustyCms::Config, for example,
440
+ the expected changes won't be reflected in that stale Class object.
441
+
442
+ `config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
443
+
444
+ In order to autoload safely at boot time, please wrap your code in a reloader
445
+ callback this way:
446
+
447
+ Rails.application.reloader.to_prepare do
448
+ # Autoload classes and modules needed at boot time here.
449
+ end
450
+
451
+ That block runs when the application boots, and every time there is a reload.
452
+ For historical reasons, it may run twice, so it has to be idempotent.
453
+
454
+ Check the "Autoloading and Reloading Constants" guide to learn more about how
455
+ Rails autoloads and reloads.
456
+ (called from <top (required)> at /Users/donavin/Documents/development/trusty-cms/spec/dummy/config/environment.rb:5)