sitepress-rails 2.0.0.beta5 → 2.0.0.beta6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/sitepress/compiler.rb +2 -0
- data/lib/sitepress/renderers/controller.rb +2 -0
- data/lib/sitepress/renderers/server.rb +8 -0
- data/rails/app/controllers/sitepress/site_controller.rb +1 -1
- data/spec/dummy/log/test.log +262 -0
- data/spec/sitepress/sitepress_site_controller_spec.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56f5e9a3099ff4ed2482dc64bb279b4d6bae6490f9730160b6aca70ce49fdab2
|
4
|
+
data.tar.gz: dc5b8207d25bee40911b6e03443efcd9a7f0c447a8835072f5427846580c617e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9efc2c72960749d48d3efbea750eafa2aac4ddd6127f19f8f2a71ad0f8b149b1a901d35ea7830b4860b4d1950524e9786b21f915655b7526af8caa20c7c03a36
|
7
|
+
data.tar.gz: 4479ffc29e860ff98b6eb06ad6ff04bbd580a92d2fe74ec286cf98ac421d6bb6d723b07fc5a95db9fd5bf64d6e08340b7da4e6ff6a73b4344650f9bb3fee6bd2
|
data/lib/sitepress/compiler.rb
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
module Sitepress
|
2
2
|
module Renderers
|
3
|
+
# Renders pages by invoking a rack call to the Rails application. From my
|
4
|
+
# experiments rendering as of 2021, this is the most reliable way to render
|
5
|
+
# pages. Rendering via `Renderers::Controller` has lots of various subtle issues
|
6
|
+
# that are surprising. People don't like surprises, so I opted to render through a
|
7
|
+
# slightly heavier stack.
|
3
8
|
class Server
|
4
9
|
attr_reader :rails_app, :page
|
5
10
|
|
@@ -11,8 +16,11 @@ module Sitepress
|
|
11
16
|
def render
|
12
17
|
code, headers, response = rails_app.routes.call env
|
13
18
|
response.body
|
19
|
+
rescue => e
|
20
|
+
raise Compiler::RenderingError.new "Error rendering #{page.request_path.inspect} at #{page.asset.path.expand_path.to_s.inspect}:\n#{e.message}"
|
14
21
|
end
|
15
22
|
|
23
|
+
private
|
16
24
|
def env
|
17
25
|
{
|
18
26
|
"PATH_INFO"=> page.request_path,
|
data/spec/dummy/log/test.log
CHANGED
@@ -3170,3 +3170,265 @@ Processing by Sitepress::SiteController#show as HTML
|
|
3170
3170
|
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 266)
|
3171
3171
|
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.9ms | Allocations: 309)
|
3172
3172
|
Completed 200 OK in 4ms (Views: 1.4ms | Allocations: 1266)
|
3173
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3174
|
+
Processing by Sitepress::SiteController#show as HTML
|
3175
|
+
Parameters: {"resource_path"=>"time"}
|
3176
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3177
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3178
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.5ms | Allocations: 99)
|
3179
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.2ms | Allocations: 71)
|
3180
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 4.2ms | Allocations: 1118)
|
3181
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 4.5ms | Allocations: 1301)
|
3182
|
+
Completed 200 OK in 17ms (Views: 11.1ms | Allocations: 4120)
|
3183
|
+
Processing by Sitepress::SiteController#show as HTML
|
3184
|
+
Parameters: {"resource_path"=>"hi"}
|
3185
|
+
Rendering layout layouts/application.html.erb
|
3186
|
+
Rendering inline template within layouts/application
|
3187
|
+
Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 65)
|
3188
|
+
Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 216)
|
3189
|
+
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 695)
|
3190
|
+
Processing by Sitepress::SiteController#show as HTML
|
3191
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
3192
|
+
Completed 404 Not Found in 1ms (Allocations: 423)
|
3193
|
+
Processing by Sitepress::SiteController#show as HTML
|
3194
|
+
Parameters: {"resource_path"=>"/time"}
|
3195
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3196
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3197
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3198
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3199
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 272)
|
3200
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 315)
|
3201
|
+
Completed 200 OK in 2ms (Views: 1.3ms | Allocations: 1128)
|
3202
|
+
Processing by Sitepress::SiteController#show as HTML
|
3203
|
+
Parameters: {"resource_path"=>"/time"}
|
3204
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3205
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3206
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3207
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3208
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3209
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 309)
|
3210
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 1104)
|
3211
|
+
Processing by Sitepress::SiteController#show as HTML
|
3212
|
+
Parameters: {"resource_path"=>"/time"}
|
3213
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3214
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3215
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3216
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3217
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3218
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 309)
|
3219
|
+
Completed 200 OK in 2ms (Views: 1.1ms | Allocations: 1104)
|
3220
|
+
Processing by Sitepress::SiteController#show as HTML
|
3221
|
+
Parameters: {"resource_path"=>"/time"}
|
3222
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3223
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3224
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3225
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3226
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3227
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 309)
|
3228
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 1104)
|
3229
|
+
Processing by Sitepress::SiteController#show as HTML
|
3230
|
+
Parameters: {"resource_path"=>"/time"}
|
3231
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3232
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3233
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3234
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3235
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3236
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 309)
|
3237
|
+
Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 1104)
|
3238
|
+
Processing by Sitepress::SiteController#show as HTML
|
3239
|
+
Parameters: {"resource_path"=>"/time"}
|
3240
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3241
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3242
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3243
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 5)
|
3244
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 2.2ms | Allocations: 266)
|
3245
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 4.8ms | Allocations: 309)
|
3246
|
+
Completed 200 OK in 8ms (Views: 6.5ms | Allocations: 1104)
|
3247
|
+
Processing by Sitepress::SiteController#show as HTML
|
3248
|
+
Parameters: {"resource_path"=>"/hi"}
|
3249
|
+
Rendering layout layouts/application.html.erb
|
3250
|
+
Rendering inline template within layouts/application
|
3251
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 64)
|
3252
|
+
Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 107)
|
3253
|
+
Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 856)
|
3254
|
+
Processing by Sitepress::SiteController#show as HTML
|
3255
|
+
Parameters: {"resource_path"=>"/hi"}
|
3256
|
+
Rendering layout layouts/application.html.erb
|
3257
|
+
Rendering inline template within layouts/application
|
3258
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 64)
|
3259
|
+
Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 107)
|
3260
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 856)
|
3261
|
+
Processing by Sitepress::SiteController#show as HTML
|
3262
|
+
Parameters: {"resource_path"=>"/hi"}
|
3263
|
+
Rendering layout layouts/application.html.erb
|
3264
|
+
Rendering inline template within layouts/application
|
3265
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 66)
|
3266
|
+
Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 109)
|
3267
|
+
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 858)
|
3268
|
+
Processing by Sitepress::SiteController#show as HTML
|
3269
|
+
Parameters: {"resource_path"=>"/hi"}
|
3270
|
+
Rendering layout layouts/application.html.erb
|
3271
|
+
Rendering inline template within layouts/application
|
3272
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 64)
|
3273
|
+
Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 107)
|
3274
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 856)
|
3275
|
+
Processing by Sitepress::SiteController#show as HTML
|
3276
|
+
Parameters: {"resource_path"=>"/time"}
|
3277
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3278
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3279
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3280
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 49)
|
3281
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3282
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 46)
|
3283
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 383)
|
3284
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3285
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.8ms | Allocations: 460)
|
3286
|
+
Completed 200 OK in 2ms (Views: 1.2ms | Allocations: 1485)
|
3287
|
+
Processing by Sitepress::SiteController#show as HTML
|
3288
|
+
Parameters: {"resource_path"=>"/time"}
|
3289
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3290
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3291
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3292
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 47)
|
3293
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3294
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 46)
|
3295
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 381)
|
3296
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3297
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.8ms | Allocations: 458)
|
3298
|
+
Completed 200 OK in 2ms (Views: 1.1ms | Allocations: 1410)
|
3299
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3300
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3301
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3302
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3303
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3304
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3305
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3306
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3307
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3308
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3309
|
+
WARNING: Sitepress could not enable Sprockets because it could not find a manifest file at "/Users/bradgessler/Projects/sitepress/gems/sitepress-rails/spec/dummy/app/content/assets/config/manifest.js".
|
3310
|
+
Processing by Sitepress::SiteController#show as HTML
|
3311
|
+
Parameters: {"resource_path"=>"time"}
|
3312
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3313
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3314
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.2ms | Allocations: 99)
|
3315
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.2ms | Allocations: 71)
|
3316
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 1.9ms | Allocations: 977)
|
3317
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 2.3ms | Allocations: 1160)
|
3318
|
+
Completed 200 OK in 8ms (Views: 3.6ms | Allocations: 4512)
|
3319
|
+
Processing by Sitepress::SiteController#show as HTML
|
3320
|
+
Parameters: {"resource_path"=>"hi"}
|
3321
|
+
Rendering layout layouts/application.html.erb
|
3322
|
+
Rendering inline template within layouts/application
|
3323
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 65)
|
3324
|
+
Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 216)
|
3325
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 740)
|
3326
|
+
Processing by Sitepress::SiteController#show as HTML
|
3327
|
+
Parameters: {"resource_path"=>"/non-existent"}
|
3328
|
+
Completed 404 Not Found in 1ms (Allocations: 423)
|
3329
|
+
Processing by Sitepress::SiteController#show as HTML
|
3330
|
+
Parameters: {"resource_path"=>"/hi"}
|
3331
|
+
Rendering layout layouts/application.html.erb
|
3332
|
+
Rendering inline template within layouts/application
|
3333
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 64)
|
3334
|
+
Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 107)
|
3335
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 913)
|
3336
|
+
Processing by Sitepress::SiteController#show as HTML
|
3337
|
+
Parameters: {"resource_path"=>"/hi"}
|
3338
|
+
Rendering layout layouts/application.html.erb
|
3339
|
+
Rendering inline template within layouts/application
|
3340
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 64)
|
3341
|
+
Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 107)
|
3342
|
+
Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 901)
|
3343
|
+
Processing by Sitepress::SiteController#show as HTML
|
3344
|
+
Parameters: {"resource_path"=>"/hi"}
|
3345
|
+
Rendering layout layouts/application.html.erb
|
3346
|
+
Rendering inline template within layouts/application
|
3347
|
+
Rendered inline template within layouts/application (Duration: 0.2ms | Allocations: 66)
|
3348
|
+
Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 109)
|
3349
|
+
Completed 200 OK in 2ms (Views: 0.7ms | Allocations: 903)
|
3350
|
+
Processing by Sitepress::SiteController#show as HTML
|
3351
|
+
Parameters: {"resource_path"=>"/hi"}
|
3352
|
+
Rendering layout layouts/application.html.erb
|
3353
|
+
Rendering inline template within layouts/application
|
3354
|
+
Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 64)
|
3355
|
+
Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 107)
|
3356
|
+
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 901)
|
3357
|
+
Processing by Sitepress::SiteController#show as HTML
|
3358
|
+
Parameters: {"resource_path"=>"/time"}
|
3359
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3360
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3361
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3362
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 49)
|
3363
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3364
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 47)
|
3365
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 384)
|
3366
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3367
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.9ms | Allocations: 461)
|
3368
|
+
Completed 200 OK in 2ms (Views: 1.2ms | Allocations: 1573)
|
3369
|
+
Processing by Sitepress::SiteController#show as HTML
|
3370
|
+
Parameters: {"resource_path"=>"/time"}
|
3371
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3372
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3373
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3374
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 47)
|
3375
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3376
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 46)
|
3377
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.7ms | Allocations: 381)
|
3378
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
3379
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.8ms | Allocations: 458)
|
3380
|
+
Completed 200 OK in 2ms (Views: 1.1ms | Allocations: 1503)
|
3381
|
+
Processing by Sitepress::SiteController#show as HTML
|
3382
|
+
Parameters: {"resource_path"=>"/time"}
|
3383
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3384
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3385
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3386
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3387
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 269)
|
3388
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.7ms | Allocations: 312)
|
3389
|
+
Completed 200 OK in 2ms (Views: 1.1ms | Allocations: 1156)
|
3390
|
+
Processing by Sitepress::SiteController#show as HTML
|
3391
|
+
Parameters: {"resource_path"=>"/time"}
|
3392
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3393
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3394
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3395
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3396
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3397
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 309)
|
3398
|
+
Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 1149)
|
3399
|
+
Processing by Sitepress::SiteController#show as HTML
|
3400
|
+
Parameters: {"resource_path"=>"/time"}
|
3401
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3402
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3403
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3404
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3405
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3406
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 309)
|
3407
|
+
Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 1149)
|
3408
|
+
Processing by Sitepress::SiteController#show as HTML
|
3409
|
+
Parameters: {"resource_path"=>"/time"}
|
3410
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3411
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3412
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3413
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3414
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.9ms | Allocations: 266)
|
3415
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.1ms | Allocations: 309)
|
3416
|
+
Completed 200 OK in 3ms (Views: 1.6ms | Allocations: 1149)
|
3417
|
+
Processing by Sitepress::SiteController#show as HTML
|
3418
|
+
Parameters: {"resource_path"=>"/time"}
|
3419
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3420
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3421
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3422
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3423
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3424
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.6ms | Allocations: 309)
|
3425
|
+
Completed 200 OK in 3ms (Views: 1.0ms | Allocations: 1149)
|
3426
|
+
Processing by Sitepress::SiteController#show as HTML
|
3427
|
+
Parameters: {"resource_path"=>"/time"}
|
3428
|
+
Rendering layout app/content/layouts/sitepress_test_layout.html.erb
|
3429
|
+
Rendering inline template within layouts/sitepress_test_layout
|
3430
|
+
Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 6)
|
3431
|
+
Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
|
3432
|
+
Rendered inline template within layouts/sitepress_test_layout (Duration: 0.5ms | Allocations: 266)
|
3433
|
+
Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.7ms | Allocations: 309)
|
3434
|
+
Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 1149)
|
@@ -48,8 +48,8 @@ describe Sitepress::SiteController, type: :controller do
|
|
48
48
|
it "renders body" do
|
49
49
|
expect(response.body).to include("<h1>Hi!</h1>")
|
50
50
|
end
|
51
|
-
it "
|
52
|
-
expect(response.body).
|
51
|
+
it "renders default 'layouts/application' layout" do
|
52
|
+
expect(response.body).to include("<title>Dummy</title>")
|
53
53
|
end
|
54
54
|
it "responds with content type" do
|
55
55
|
expect(response.content_type).to include("text/html")
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sitepress-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.beta6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brad Gessler
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-rails
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.0.0.
|
61
|
+
version: 2.0.0.beta6
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 2.0.0.
|
68
|
+
version: 2.0.0.beta6
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: railties
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|