sitepress-rails 4.0.6 → 4.0.7

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a19ae6fa84afd56632baf90af377e18dbe8374abf482622bd7830a1ed489e8d1
4
- data.tar.gz: 86a015c072a56d17595588c5d6bd547e264054a5ed2c752dfdc0e2c07c058dcf
3
+ metadata.gz: ee03af78d7c87f778abb2518239a6cdf151df3e8de2fcd41728c2d9a176d9ff4
4
+ data.tar.gz: 9fff62027c27c0262d4f3e30a946fc2baac7cad435b8add98d8ea11bad555aee
5
5
  SHA512:
6
- metadata.gz: e218c3abb19c61323938b506b8613bfac2e721e4dd62330c72ab19531110e73d1e3cd49812244a9a183911634b956c2a7c17006b9fe1e412fb6bf7dab05df351
7
- data.tar.gz: 07c3d578d2bb4749f8087c7bb6958e3bc8d7e79d50b553a05f5d38f302aa1434629f19fca12a59b4a1503f8cafd29a3b3e33515339f20591c2a2c0425acb189a
6
+ metadata.gz: 8c161e16c6b4a03f36bd0e9feb573a7a0f3b8214ff0fe98065dbe76ba07bf6df15a8d9a2ff18e7f04634aaefc2258486d572f780be7e896c937557a757233ef6
7
+ data.tar.gz: c652c6bcd3f8b0b994cdbfd5f9e0a3e7e0db449d7ff8ef8a935fb27c9d1fe13bcb463fa2a31d8e1268cfc634979e01addb1cf66e6610dfe67018c556ce37d727
@@ -113,7 +113,7 @@ module Sitepress
113
113
  # versions of Rails, so I try my best to hack out the path to the layout below.
114
114
  def resource_layout(resource)
115
115
  resource.data.fetch "layout" do
116
- case template = _layout(lookup_context, resource.node.formats)
116
+ case template = find_layout(formats: resource.node.formats)
117
117
  when ActionView::Template
118
118
  template.virtual_path
119
119
  else
@@ -122,6 +122,17 @@ module Sitepress
122
122
  end
123
123
  end
124
124
 
125
+ # For whatever reason, Rails can't stablize this API so we need to check
126
+ # the version of Rails to make the right call and stablize it.
127
+ def find_layout(formats:)
128
+ case Rails::VERSION::MAJOR
129
+ when 8
130
+ _layout(lookup_context, formats, lookup_context.prefixes)
131
+ else
132
+ _layout(lookup_context, formats)
133
+ end
134
+ end
135
+
125
136
  # When in development mode, the site is reloaded and rebuilt between each request so
126
137
  # that users can see changes to content and site structure. These rebuilds are unnecessary and
127
138
  # slow per-request in a production environment, so they should not be reloaded.
@@ -28166,3 +28166,750 @@ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepre
28166
28166
  Rendered Sitepress::Resource within layouts/application (Duration: 0.2ms | Allocations: 279)
28167
28167
  Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 320)
28168
28168
  Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 604)
28169
+ Processing by Sitepress::SiteController#show as HTML
28170
+ Parameters: {"resource_path" => "time"}
28171
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28172
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28173
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28174
+ Rendering inline template
28175
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 98)
28176
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 65)
28177
+ Rendered inline template (Duration: 1.1ms | Allocations: 746)
28178
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 1.4ms | Allocations: 870)
28179
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.6ms | Allocations: 1035)
28180
+ Completed 200 OK in 5ms (Views: 4.6ms | Allocations: 3291)
28181
+ Processing by Sitepress::SiteController#show as HTML
28182
+ Parameters: {"resource_path" => "hi"}
28183
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28184
+ Rendering layout layouts/application.html.erb
28185
+ Rendering Sitepress::Resource within layouts/application
28186
+ Rendering inline template
28187
+ Rendered inline template (Duration: 0.0ms | Allocations: 51)
28188
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 94)
28189
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 220)
28190
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 638)
28191
+ Processing by Sitepress::SiteController#show as HTML
28192
+ Parameters: {"resource_path" => "all_pages"}
28193
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28194
+ Rendering layout layouts/application.html.erb
28195
+ Rendering Sitepress::Resource within layouts/application
28196
+ Rendering inline template
28197
+ Rendered inline template (Duration: 0.1ms | Allocations: 205)
28198
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.2ms | Allocations: 247)
28199
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 287)
28200
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 560)
28201
+ Processing by Sitepress::SiteController#show as HTML
28202
+ Parameters: {"resource_path" => "/all_pages"}
28203
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28204
+ Rendering layout layouts/application.html.erb
28205
+ Rendering Sitepress::Resource within layouts/application
28206
+ Rendering inline template
28207
+ Rendered inline template (Duration: 0.1ms | Allocations: 191)
28208
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.2ms | Allocations: 233)
28209
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
28210
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 307)
28211
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 806)
28212
+ Processing by Sitepress::SiteController#show as HTML
28213
+ Parameters: {"resource_path" => "/time"}
28214
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28215
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28216
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28217
+ Rendering inline template
28218
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28219
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28220
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28221
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28222
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28223
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 907)
28224
+ Processing by Sitepress::SiteController#show as HTML
28225
+ Parameters: {"resource_path" => "/time"}
28226
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28227
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28228
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28229
+ Rendering inline template
28230
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28231
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28232
+ Rendered inline template (Duration: 0.1ms | Allocations: 224)
28233
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28234
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28235
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 907)
28236
+ Processing by Sitepress::SiteController#show as HTML
28237
+ Parameters: {"resource_path" => "/time"}
28238
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28239
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28240
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28241
+ Rendering inline template
28242
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28243
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28244
+ Rendered inline template (Duration: 0.1ms | Allocations: 224)
28245
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28246
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28247
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 907)
28248
+ Processing by Sitepress::SiteController#show as HTML
28249
+ Parameters: {"resource_path" => "/time"}
28250
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28251
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28252
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28253
+ Rendering inline template
28254
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28255
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28256
+ Rendered inline template (Duration: 0.1ms | Allocations: 224)
28257
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28258
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28259
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 907)
28260
+ Processing by Sitepress::SiteController#show as HTML
28261
+ Parameters: {"resource_path" => "/time"}
28262
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28263
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28264
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28265
+ Rendering inline template
28266
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28267
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28268
+ Rendered inline template (Duration: 0.1ms | Allocations: 224)
28269
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28270
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28271
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 907)
28272
+ Processing by Sitepress::SiteController#show as HTML
28273
+ Parameters: {"resource_path" => "/time"}
28274
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28275
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28276
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28277
+ Rendering inline template
28278
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28279
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28280
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28281
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.3ms | Allocations: 266)
28282
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | Allocations: 306)
28283
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 907)
28284
+ Processing by Sitepress::SiteController#show as HTML
28285
+ Parameters: {"resource_path" => "/hi"}
28286
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28287
+ Rendering layout layouts/application.html.erb
28288
+ Rendering Sitepress::Resource within layouts/application
28289
+ Rendering inline template
28290
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28291
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28292
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28293
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 725)
28294
+ Processing by Sitepress::SiteController#show as HTML
28295
+ Parameters: {"resource_path" => "/hi"}
28296
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28297
+ Rendering layout layouts/application.html.erb
28298
+ Rendering Sitepress::Resource within layouts/application
28299
+ Rendering inline template
28300
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28301
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28302
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28303
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 725)
28304
+ Processing by Sitepress::SiteController#show as HTML
28305
+ Parameters: {"resource_path" => "/hi"}
28306
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28307
+ Rendering layout layouts/application.html.erb
28308
+ Rendering Sitepress::Resource within layouts/application
28309
+ Rendering inline template
28310
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28311
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28312
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28313
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 725)
28314
+ Processing by Sitepress::SiteController#show as HTML
28315
+ Parameters: {"resource_path" => "/hi"}
28316
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28317
+ Rendering layout layouts/application.html.erb
28318
+ Rendering Sitepress::Resource within layouts/application
28319
+ Rendering inline template
28320
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28321
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28322
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28323
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 725)
28324
+ Processing by Sitepress::SiteController#show as HTML
28325
+ Parameters: {"resource_path" => "/non-existent"}
28326
+ Completed 404 Not Found in 0ms (Allocations: 675)
28327
+ Processing by Sitepress::SiteController#show as HTML
28328
+ Parameters: {"resource_path" => "/all_pages"}
28329
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28330
+ Completed 500 Internal Server Error in 1ms (Allocations: 1126)
28331
+ Processing by Sitepress::SiteController#show as HTML
28332
+ Parameters: {"resource_path" => "/hi"}
28333
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28334
+ Completed 500 Internal Server Error in 1ms (Allocations: 704)
28335
+ Processing by Sitepress::SiteController#show as HTML
28336
+ Parameters: {"resource_path" => "/hi"}
28337
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28338
+ Completed 500 Internal Server Error in 0ms (Allocations: 674)
28339
+ Processing by Sitepress::SiteController#show as HTML
28340
+ Parameters: {"resource_path" => "/hi"}
28341
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28342
+ Completed 500 Internal Server Error in 0ms (Allocations: 674)
28343
+ Processing by Sitepress::SiteController#show as HTML
28344
+ Parameters: {"resource_path" => "/hi"}
28345
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28346
+ Completed 500 Internal Server Error in 0ms (Allocations: 674)
28347
+ Processing by Sitepress::SiteController#show as HTML
28348
+ Parameters: {"resource_path" => "/non-existent"}
28349
+ Completed 404 Not Found in 0ms (Allocations: 652)
28350
+ Processing by Sitepress::SiteController#show as HTML
28351
+ Parameters: {"resource_path" => "/time"}
28352
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28353
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28354
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28355
+ Rendering inline template
28356
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 98)
28357
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 65)
28358
+ Rendered inline template (Duration: 1.2ms | Allocations: 741)
28359
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 1.5ms | Allocations: 865)
28360
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.6ms | Allocations: 1030)
28361
+ Completed 200 OK in 6ms (Views: 5.1ms | Allocations: 2956)
28362
+ Processing by Sitepress::SiteController#show as HTML
28363
+ Parameters: {"resource_path" => "/time"}
28364
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28365
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28366
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28367
+ Rendering inline template
28368
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28369
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28370
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28371
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28372
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28373
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 913)
28374
+ Processing by Sitepress::SiteController#show as HTML
28375
+ Parameters: {"resource_path" => "/time"}
28376
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28377
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28378
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28379
+ Rendering inline template
28380
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28381
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28382
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28383
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28384
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28385
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 907)
28386
+ Processing by Sitepress::SiteController#show as HTML
28387
+ Parameters: {"resource_path" => "/time"}
28388
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28389
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28390
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28391
+ Rendering inline template
28392
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28393
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28394
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28395
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28396
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28397
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 907)
28398
+ Processing by Sitepress::SiteController#show as HTML
28399
+ Parameters: {"resource_path" => "/time"}
28400
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28401
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28402
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28403
+ Rendering inline template
28404
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28405
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28406
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28407
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28408
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28409
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 907)
28410
+ Processing by Sitepress::SiteController#show as HTML
28411
+ Parameters: {"resource_path" => "/time"}
28412
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28413
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28414
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28415
+ Rendering inline template
28416
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28417
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28418
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28419
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28420
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | Allocations: 306)
28421
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 907)
28422
+ Processing by Sitepress::SiteController#show as HTML
28423
+ Parameters: {"resource_path" => "time"}
28424
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28425
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28426
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28427
+ Rendering inline template
28428
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28429
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28430
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28431
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.3ms | Allocations: 266)
28432
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | Allocations: 306)
28433
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 566)
28434
+ Processing by Sitepress::SiteController#show as HTML
28435
+ Parameters: {"resource_path" => "hi"}
28436
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28437
+ Completed 500 Internal Server Error in 0ms (Allocations: 297)
28438
+ Processing by Sitepress::SiteController#show as HTML
28439
+ Parameters: {"resource_path" => "all_pages"}
28440
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28441
+ Completed 500 Internal Server Error in 0ms (Allocations: 329)
28442
+ Processing by Sitepress::SiteController#show as HTML
28443
+ Parameters: {"resource_path" => "time"}
28444
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28445
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28446
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28447
+ Rendering inline template
28448
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 98)
28449
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 65)
28450
+ Rendered inline template (Duration: 1.0ms | Allocations: 748)
28451
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 1.2ms | Allocations: 872)
28452
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.4ms | Allocations: 1037)
28453
+ Completed 200 OK in 5ms (Views: 3.9ms | Allocations: 3293)
28454
+ Processing by Sitepress::SiteController#show as HTML
28455
+ Parameters: {"resource_path" => "hi"}
28456
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28457
+ Rendering layout layouts/application.html.erb
28458
+ Rendering Sitepress::Resource within layouts/application
28459
+ Rendering inline template
28460
+ Rendered inline template (Duration: 0.0ms | Allocations: 51)
28461
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 94)
28462
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 220)
28463
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 642)
28464
+ Processing by Sitepress::SiteController#show as HTML
28465
+ Parameters: {"resource_path" => "all_pages"}
28466
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28467
+ Rendering layout layouts/application.html.erb
28468
+ Rendering Sitepress::Resource within layouts/application
28469
+ Rendering inline template
28470
+ Rendered inline template (Duration: 0.1ms | Allocations: 205)
28471
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 247)
28472
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 287)
28473
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 560)
28474
+ Processing by Sitepress::SiteController#show as HTML
28475
+ Parameters: {"resource_path" => "/all_pages"}
28476
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28477
+ Rendering layout layouts/application.html.erb
28478
+ Rendering Sitepress::Resource within layouts/application
28479
+ Rendering inline template
28480
+ Rendered inline template (Duration: 0.2ms | Allocations: 192)
28481
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.2ms | Allocations: 234)
28482
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
28483
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 308)
28484
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 821)
28485
+ Processing by Sitepress::SiteController#show as HTML
28486
+ Parameters: {"resource_path" => "/hi"}
28487
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28488
+ Rendering layout layouts/application.html.erb
28489
+ Rendering Sitepress::Resource within layouts/application
28490
+ Rendering inline template
28491
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28492
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28493
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28494
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 725)
28495
+ Processing by Sitepress::SiteController#show as HTML
28496
+ Parameters: {"resource_path" => "/hi"}
28497
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28498
+ Rendering layout layouts/application.html.erb
28499
+ Rendering Sitepress::Resource within layouts/application
28500
+ Rendering inline template
28501
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28502
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28503
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28504
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 725)
28505
+ Processing by Sitepress::SiteController#show as HTML
28506
+ Parameters: {"resource_path" => "/hi"}
28507
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28508
+ Rendering layout layouts/application.html.erb
28509
+ Rendering Sitepress::Resource within layouts/application
28510
+ Rendering inline template
28511
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28512
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28513
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28514
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 725)
28515
+ Processing by Sitepress::SiteController#show as HTML
28516
+ Parameters: {"resource_path" => "/hi"}
28517
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28518
+ Rendering layout layouts/application.html.erb
28519
+ Rendering Sitepress::Resource within layouts/application
28520
+ Rendering inline template
28521
+ Rendered inline template (Duration: 0.0ms | Allocations: 46)
28522
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | Allocations: 88)
28523
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 127)
28524
+ Completed 200 OK in 0ms (Views: 0.2ms | Allocations: 725)
28525
+ Processing by Sitepress::SiteController#show as HTML
28526
+ Parameters: {"resource_path" => "/non-existent"}
28527
+ Completed 404 Not Found in 0ms (Allocations: 675)
28528
+ Processing by Sitepress::SiteController#show as HTML
28529
+ Parameters: {"resource_path" => "/time"}
28530
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28531
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28532
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28533
+ Rendering inline template
28534
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28535
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28536
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28537
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28538
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | Allocations: 306)
28539
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 907)
28540
+ Processing by Sitepress::SiteController#show as HTML
28541
+ Parameters: {"resource_path" => "/time"}
28542
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28543
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28544
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28545
+ Rendering inline template
28546
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28547
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28548
+ Rendered inline template (Duration: 0.1ms | Allocations: 224)
28549
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28550
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28551
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 907)
28552
+ Processing by Sitepress::SiteController#show as HTML
28553
+ Parameters: {"resource_path" => "/time"}
28554
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28555
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28556
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28557
+ Rendering inline template
28558
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28559
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28560
+ Rendered inline template (Duration: 0.1ms | Allocations: 224)
28561
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28562
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28563
+ Completed 200 OK in 0ms (Views: 0.3ms | Allocations: 907)
28564
+ Processing by Sitepress::SiteController#show as HTML
28565
+ Parameters: {"resource_path" => "/time"}
28566
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28567
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28568
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28569
+ Rendering inline template
28570
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28571
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28572
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28573
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28574
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 306)
28575
+ Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 907)
28576
+ Processing by Sitepress::SiteController#show as HTML
28577
+ Parameters: {"resource_path" => "/time"}
28578
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28579
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28580
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28581
+ Rendering inline template
28582
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28583
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28584
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28585
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28586
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | Allocations: 306)
28587
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 907)
28588
+ Processing by Sitepress::SiteController#show as HTML
28589
+ Parameters: {"resource_path" => "/time"}
28590
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28591
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28592
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28593
+ Rendering inline template
28594
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
28595
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
28596
+ Rendered inline template (Duration: 0.2ms | Allocations: 224)
28597
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 266)
28598
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | Allocations: 306)
28599
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 907)
28600
+ Processing by Sitepress::SiteController#show as HTML
28601
+ Parameters: {"resource_path" => "time"}
28602
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28603
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28604
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28605
+ Rendering inline template
28606
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | GC: 0.0ms)
28607
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28608
+ Rendered inline template (Duration: 0.7ms | GC: 0.0ms)
28609
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.9ms | GC: 0.0ms)
28610
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.0ms | GC: 0.0ms)
28611
+ Completed 200 OK in 7ms (Views: 5.8ms | GC: 0.0ms)
28612
+ Processing by Sitepress::SiteController#show as HTML
28613
+ Parameters: {"resource_path" => "hi"}
28614
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28615
+ Rendering layout layouts/application.html.erb
28616
+ Rendering Sitepress::Resource within layouts/application
28617
+ Rendering inline template
28618
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28619
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28620
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | GC: 0.0ms)
28621
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28622
+ Processing by Sitepress::SiteController#show as HTML
28623
+ Parameters: {"resource_path" => "all_pages"}
28624
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28625
+ Rendering layout layouts/application.html.erb
28626
+ Rendering Sitepress::Resource within layouts/application
28627
+ Rendering inline template
28628
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28629
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.2ms | GC: 0.0ms)
28630
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | GC: 0.0ms)
28631
+ Completed 200 OK in 0ms (Views: 0.3ms | GC: 0.0ms)
28632
+ Processing by Sitepress::SiteController#show as HTML
28633
+ Parameters: {"resource_path" => "/all_pages"}
28634
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28635
+ Rendering layout layouts/application.html.erb
28636
+ Rendering Sitepress::Resource within layouts/application
28637
+ Rendering inline template
28638
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28639
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.2ms | GC: 0.0ms)
28640
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
28641
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | GC: 0.0ms)
28642
+ Completed 200 OK in 1ms (Views: 0.4ms | GC: 0.0ms)
28643
+ Processing by Sitepress::SiteController#show as HTML
28644
+ Parameters: {"resource_path" => "/time"}
28645
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28646
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28647
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28648
+ Rendering inline template
28649
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28650
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28651
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28652
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.3ms | GC: 0.0ms)
28653
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.4ms | GC: 0.0ms)
28654
+ Completed 200 OK in 1ms (Views: 0.6ms | GC: 0.0ms)
28655
+ Processing by Sitepress::SiteController#show as HTML
28656
+ Parameters: {"resource_path" => "/time"}
28657
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28658
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28659
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28660
+ Rendering inline template
28661
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28662
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28663
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28664
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28665
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | GC: 0.0ms)
28666
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28667
+ Processing by Sitepress::SiteController#show as HTML
28668
+ Parameters: {"resource_path" => "/time"}
28669
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28670
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28671
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28672
+ Rendering inline template
28673
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28674
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28675
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28676
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28677
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | GC: 0.0ms)
28678
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28679
+ Processing by Sitepress::SiteController#show as HTML
28680
+ Parameters: {"resource_path" => "/time"}
28681
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28682
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28683
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28684
+ Rendering inline template
28685
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28686
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28687
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28688
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.3ms | GC: 0.0ms)
28689
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | GC: 0.0ms)
28690
+ Completed 200 OK in 1ms (Views: 0.4ms | GC: 0.0ms)
28691
+ Processing by Sitepress::SiteController#show as HTML
28692
+ Parameters: {"resource_path" => "/time"}
28693
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28694
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28695
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28696
+ Rendering inline template
28697
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28698
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28699
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28700
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28701
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | GC: 0.0ms)
28702
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28703
+ Processing by Sitepress::SiteController#show as HTML
28704
+ Parameters: {"resource_path" => "/time"}
28705
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28706
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28707
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28708
+ Rendering inline template
28709
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28710
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28711
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28712
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28713
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | GC: 0.0ms)
28714
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28715
+ Processing by Sitepress::SiteController#show as HTML
28716
+ Parameters: {"resource_path" => "/non-existent"}
28717
+ Completed 404 Not Found in 0ms (GC: 0.0ms)
28718
+ Processing by Sitepress::SiteController#show as HTML
28719
+ Parameters: {"resource_path" => "/hi"}
28720
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28721
+ Rendering layout layouts/application.html.erb
28722
+ Rendering Sitepress::Resource within layouts/application
28723
+ Rendering inline template
28724
+ Rendered inline template (Duration: 0.0ms | GC: 0.0ms)
28725
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28726
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | GC: 0.0ms)
28727
+ Completed 200 OK in 0ms (Views: 0.2ms | GC: 0.0ms)
28728
+ Processing by Sitepress::SiteController#show as HTML
28729
+ Parameters: {"resource_path" => "/hi"}
28730
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28731
+ Rendering layout layouts/application.html.erb
28732
+ Rendering Sitepress::Resource within layouts/application
28733
+ Rendering inline template
28734
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28735
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28736
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | GC: 0.0ms)
28737
+ Completed 200 OK in 0ms (Views: 0.3ms | GC: 0.0ms)
28738
+ Processing by Sitepress::SiteController#show as HTML
28739
+ Parameters: {"resource_path" => "/hi"}
28740
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28741
+ Rendering layout layouts/application.html.erb
28742
+ Rendering Sitepress::Resource within layouts/application
28743
+ Rendering inline template
28744
+ Rendered inline template (Duration: 0.0ms | GC: 0.0ms)
28745
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28746
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | GC: 0.0ms)
28747
+ Completed 200 OK in 0ms (Views: 0.2ms | GC: 0.0ms)
28748
+ Processing by Sitepress::SiteController#show as HTML
28749
+ Parameters: {"resource_path" => "/hi"}
28750
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28751
+ Rendering layout layouts/application.html.erb
28752
+ Rendering Sitepress::Resource within layouts/application
28753
+ Rendering inline template
28754
+ Rendered inline template (Duration: 0.0ms | GC: 0.0ms)
28755
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28756
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | GC: 0.0ms)
28757
+ Completed 200 OK in 0ms (Views: 0.2ms | GC: 0.0ms)
28758
+ Processing by Sitepress::SiteController#show as HTML
28759
+ Parameters: {"resource_path" => "/all_pages"}
28760
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28761
+ Rendering layout layouts/application.html.erb
28762
+ Rendering Sitepress::Resource within layouts/application
28763
+ Rendering inline template
28764
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28765
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.4ms | GC: 0.0ms)
28766
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
28767
+ Rendered layout layouts/application.html.erb (Duration: 0.5ms | GC: 0.0ms)
28768
+ Completed 200 OK in 7ms (Views: 2.7ms | GC: 0.6ms)
28769
+ Processing by Sitepress::SiteController#show as HTML
28770
+ Parameters: {"resource_path" => "/non-existent"}
28771
+ Completed 404 Not Found in 0ms (GC: 0.0ms)
28772
+ Processing by Sitepress::SiteController#show as HTML
28773
+ Parameters: {"resource_path" => "/hi"}
28774
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28775
+ Rendering layout layouts/application.html.erb
28776
+ Rendering Sitepress::Resource within layouts/application
28777
+ Rendering inline template
28778
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28779
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28780
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | GC: 0.0ms)
28781
+ Completed 200 OK in 1ms (Views: 0.5ms | GC: 0.0ms)
28782
+ Processing by Sitepress::SiteController#show as HTML
28783
+ Parameters: {"resource_path" => "/hi"}
28784
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28785
+ Rendering layout layouts/application.html.erb
28786
+ Rendering Sitepress::Resource within layouts/application
28787
+ Rendering inline template
28788
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28789
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28790
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | GC: 0.0ms)
28791
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28792
+ Processing by Sitepress::SiteController#show as HTML
28793
+ Parameters: {"resource_path" => "/hi"}
28794
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28795
+ Rendering layout layouts/application.html.erb
28796
+ Rendering Sitepress::Resource within layouts/application
28797
+ Rendering inline template
28798
+ Rendered inline template (Duration: 0.0ms | GC: 0.0ms)
28799
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28800
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | GC: 0.0ms)
28801
+ Completed 200 OK in 0ms (Views: 0.2ms | GC: 0.0ms)
28802
+ Processing by Sitepress::SiteController#show as HTML
28803
+ Parameters: {"resource_path" => "/hi"}
28804
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28805
+ Rendering layout layouts/application.html.erb
28806
+ Rendering Sitepress::Resource within layouts/application
28807
+ Rendering inline template
28808
+ Rendered inline template (Duration: 0.0ms | GC: 0.0ms)
28809
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28810
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | GC: 0.0ms)
28811
+ Completed 200 OK in 0ms (Views: 0.2ms | GC: 0.0ms)
28812
+ Processing by Sitepress::SiteController#show as HTML
28813
+ Parameters: {"resource_path" => "/time"}
28814
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28815
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28816
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28817
+ Rendering inline template
28818
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | GC: 0.0ms)
28819
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28820
+ Rendered inline template (Duration: 0.5ms | GC: 0.0ms)
28821
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.6ms | GC: 0.0ms)
28822
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.7ms | GC: 0.0ms)
28823
+ Completed 200 OK in 1ms (Views: 1.0ms | GC: 0.0ms)
28824
+ Processing by Sitepress::SiteController#show as HTML
28825
+ Parameters: {"resource_path" => "/time"}
28826
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28827
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28828
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28829
+ Rendering inline template
28830
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28831
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28832
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28833
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28834
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | GC: 0.0ms)
28835
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28836
+ Processing by Sitepress::SiteController#show as HTML
28837
+ Parameters: {"resource_path" => "/time"}
28838
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28839
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28840
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28841
+ Rendering inline template
28842
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28843
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28844
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28845
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28846
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | GC: 0.0ms)
28847
+ Completed 200 OK in 1ms (Views: 0.3ms | GC: 0.0ms)
28848
+ Processing by Sitepress::SiteController#show as HTML
28849
+ Parameters: {"resource_path" => "/time"}
28850
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28851
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28852
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28853
+ Rendering inline template
28854
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28855
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28856
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28857
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28858
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | GC: 0.0ms)
28859
+ Completed 200 OK in 0ms (Views: 0.3ms | GC: 0.0ms)
28860
+ Processing by Sitepress::SiteController#show as HTML
28861
+ Parameters: {"resource_path" => "/time"}
28862
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28863
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28864
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28865
+ Rendering inline template
28866
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28867
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28868
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28869
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.2ms | GC: 0.0ms)
28870
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | GC: 0.0ms)
28871
+ Completed 200 OK in 1ms (Views: 0.4ms | GC: 0.0ms)
28872
+ Processing by Sitepress::SiteController#show as HTML
28873
+ Parameters: {"resource_path" => "/time"}
28874
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28875
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28876
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28877
+ Rendering inline template
28878
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28879
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28880
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28881
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.3ms | GC: 0.0ms)
28882
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | GC: 0.0ms)
28883
+ Completed 200 OK in 1ms (Views: 0.4ms | GC: 0.0ms)
28884
+ Processing by Sitepress::SiteController#show as HTML
28885
+ Parameters: {"resource_path" => "time"}
28886
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
28887
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
28888
+ Rendering Sitepress::Resource within layouts/sitepress_test_layout
28889
+ Rendering inline template
28890
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28891
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | GC: 0.0ms)
28892
+ Rendered inline template (Duration: 0.2ms | GC: 0.0ms)
28893
+ Rendered Sitepress::Resource within layouts/sitepress_test_layout (Duration: 0.3ms | GC: 0.0ms)
28894
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.4ms | GC: 0.0ms)
28895
+ Completed 200 OK in 1ms (Views: 0.6ms | GC: 0.0ms)
28896
+ Processing by Sitepress::SiteController#show as HTML
28897
+ Parameters: {"resource_path" => "hi"}
28898
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
28899
+ Rendering layout layouts/application.html.erb
28900
+ Rendering Sitepress::Resource within layouts/application
28901
+ Rendering inline template
28902
+ Rendered inline template (Duration: 0.0ms | GC: 0.0ms)
28903
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.1ms | GC: 0.0ms)
28904
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | GC: 0.0ms)
28905
+ Completed 200 OK in 0ms (Views: 0.2ms | GC: 0.0ms)
28906
+ Processing by Sitepress::SiteController#show as HTML
28907
+ Parameters: {"resource_path" => "all_pages"}
28908
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
28909
+ Rendering layout layouts/application.html.erb
28910
+ Rendering Sitepress::Resource within layouts/application
28911
+ Rendering inline template
28912
+ Rendered inline template (Duration: 0.1ms | GC: 0.0ms)
28913
+ Rendered Sitepress::Resource within layouts/application (Duration: 0.2ms | GC: 0.0ms)
28914
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | GC: 0.0ms)
28915
+ Completed 200 OK in 0ms (Views: 0.3ms | GC: 0.0ms)
@@ -0,0 +1 @@
1
+ 0b6fbfb4055bb9947ef9e77eb2089e22f780ba281a366a3757aef872cb5b307085e5997b666ffd715290bfa71774092d2fe20727495f8719a0a6bcffd550c151
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sitepress-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.6
4
+ version: 4.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Gessler
@@ -57,14 +57,14 @@ dependencies:
57
57
  requirements:
58
58
  - - '='
59
59
  - !ruby/object:Gem::Version
60
- version: 4.0.6
60
+ version: 4.0.7
61
61
  type: :runtime
62
62
  prerelease: false
63
63
  version_requirements: !ruby/object:Gem::Requirement
64
64
  requirements:
65
65
  - - '='
66
66
  - !ruby/object:Gem::Version
67
- version: 4.0.6
67
+ version: 4.0.7
68
68
  - !ruby/object:Gem::Dependency
69
69
  name: railties
70
70
  requirement: !ruby/object:Gem::Requirement
@@ -203,6 +203,7 @@ files:
203
203
  - spec/dummy/public/apple-touch-icon-precomposed.png
204
204
  - spec/dummy/public/apple-touch-icon.png
205
205
  - spec/dummy/public/favicon.ico
206
+ - spec/dummy/tmp/local_secret.txt
206
207
  - spec/sitepress-rails_spec.rb
207
208
  - spec/sitepress/compiler_spec.rb
208
209
  - spec/sitepress/model_spec.rb
@@ -300,6 +301,7 @@ test_files:
300
301
  - spec/dummy/public/apple-touch-icon-precomposed.png
301
302
  - spec/dummy/public/apple-touch-icon.png
302
303
  - spec/dummy/public/favicon.ico
304
+ - spec/dummy/tmp/local_secret.txt
303
305
  - spec/sitepress/compiler_spec.rb
304
306
  - spec/sitepress/model_spec.rb
305
307
  - spec/sitepress/rails_configuration_spec.rb