mascot-rails 0.1.7 → 0.1.8
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 +4 -4
- data/lib/mascot/extensions/partials_remover.rb +19 -0
- data/lib/mascot/extensions/rails_request_paths.rb +17 -0
- data/lib/mascot/rails.rb +8 -0
- data/lib/mascot/rails_configuration.rb +5 -14
- data/lib/mascot/route_constraint.rb +1 -1
- data/spec/dummy/log/production.log +951 -0
- data/spec/dummy/log/test.log +8001 -0
- data/spec/mascot/extensions/partials_remover_spec.rb +12 -0
- data/spec/mascot/extensions/rails_request_paths_spec.rb +9 -0
- data/spec/mascot/rails_configuration_spec.rb +12 -5
- data/spec/mascot/route_constraint_spec.rb +4 -5
- data/spec/spec_helper.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c8f75b9c928c6100afdf542f5c1613d50599bce2
|
4
|
+
data.tar.gz: 048b5189fbb78e517da38b523f4af3447bf31188
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6883892fb9176d61dff68831542610b381b2faf829da5c9ce03aa44ff30d9ed48a5189b489d58778b3900a2fa09b470ca9ed11d08f9728338f3898b007df0ef
|
7
|
+
data.tar.gz: 0a63879f28f859ab19faae79461eb29d17e989f54e1aafce8cbf8404111cc12cff74101ca4d06d89d3fb4ac1fea63912f30f5ba651bad610390e387c1b3077c4
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Mascot
|
2
|
+
module Extensions
|
3
|
+
# Removes files beginning with "_" from the resource collection.
|
4
|
+
class PartialsRemover
|
5
|
+
# Partial rails prefix.
|
6
|
+
PARTIAL_PREFIX = "_".freeze
|
7
|
+
|
8
|
+
def process_resources(resources)
|
9
|
+
resources.each do |r|
|
10
|
+
resources.remove r if self.class.partial? r.asset.path # Looks like a smiley face, doesn't it?
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.partial?(path)
|
15
|
+
File.basename(path).starts_with? PARTIAL_PREFIX
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Mascot
|
2
|
+
module Extensions
|
3
|
+
# Removes the file extension from the file so that /hi/there/fun.html can be
|
4
|
+
# resolved via /hi/there/fun.
|
5
|
+
class RailsRequestPaths
|
6
|
+
def process_resources(resources)
|
7
|
+
resources.each do |r|
|
8
|
+
r.request_path = self.class.format_path r.request_path
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.format_path(request_path)
|
13
|
+
File.join(File.dirname(File.join("/", request_path)), File.basename(request_path, ".*"))
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/lib/mascot/rails.rb
CHANGED
@@ -10,12 +10,20 @@ module Mascot
|
|
10
10
|
autoload :ActionControllerContext, "mascot/action_controller_context"
|
11
11
|
autoload :RailsConfiguration, "mascot/rails_configuration"
|
12
12
|
autoload :RouteConstraint, "mascot/route_constraint"
|
13
|
+
module Extensions
|
14
|
+
autoload :RailsRequestPaths, "mascot/extensions/rails_request_paths"
|
15
|
+
autoload :PartialsRemover, "mascot/extensions/partials_remover"
|
16
|
+
end
|
13
17
|
|
14
18
|
# Default configuration object for Mascot Rails integration.
|
15
19
|
def self.configuration
|
16
20
|
@configuration ||= RailsConfiguration.new
|
17
21
|
end
|
18
22
|
|
23
|
+
def self.reset_configuration
|
24
|
+
@configuration = nil
|
25
|
+
end
|
26
|
+
|
19
27
|
def self.configure(&block)
|
20
28
|
block.call configuration
|
21
29
|
end
|
@@ -4,9 +4,6 @@ module Mascot
|
|
4
4
|
# Store in ./app/pages by default.
|
5
5
|
DEFAULT_SITEMAP_ROOT = "app/pages".freeze
|
6
6
|
|
7
|
-
# Partial rails prefix.
|
8
|
-
PARTIAL_PREFIX = "_".freeze
|
9
|
-
|
10
7
|
attr_accessor :sitemap, :resources, :parent_engine, :routes, :cache_resources, :partials
|
11
8
|
|
12
9
|
# Set defaults.
|
@@ -18,14 +15,17 @@ module Mascot
|
|
18
15
|
end
|
19
16
|
|
20
17
|
def sitemap
|
21
|
-
@sitemap ||= Sitemap.new(root: default_root)
|
18
|
+
@sitemap ||= Sitemap.new(root: default_root).tap do |sitemap|
|
19
|
+
sitemap.extensions << Extensions::PartialsRemover.new unless partials
|
20
|
+
sitemap.extensions << Extensions::RailsRequestPaths.new
|
21
|
+
end
|
22
22
|
end
|
23
23
|
|
24
24
|
def resources
|
25
25
|
# Production will cache resources globally. This drastically speeds up
|
26
26
|
# the speed at which resources are served, but if they change it won't be updated.
|
27
27
|
@resources = nil unless cache_resources?
|
28
|
-
@resources ||=
|
28
|
+
@resources ||= sitemap.resources
|
29
29
|
end
|
30
30
|
|
31
31
|
def cache_resources?
|
@@ -36,14 +36,5 @@ module Mascot
|
|
36
36
|
def default_root
|
37
37
|
Rails.root.join(DEFAULT_SITEMAP_ROOT)
|
38
38
|
end
|
39
|
-
|
40
|
-
def remove_partials(resources)
|
41
|
-
resources.each do |r|
|
42
|
-
if not partials
|
43
|
-
resources.remove r if r.asset.path.basename.to_s.starts_with? PARTIAL_PREFIX # Looks like a smiley face, doesn't it?
|
44
|
-
end
|
45
|
-
end
|
46
|
-
resources
|
47
|
-
end
|
48
39
|
end
|
49
40
|
end
|
@@ -297,3 +297,954 @@ I, [2016-07-29T10:26:33.925251 #34638] INFO -- : Processing by Mascot::SitemapC
|
|
297
297
|
I, [2016-07-29T10:26:33.925283 #34638] INFO -- : Parameters: {"path"=>"page-9999"}
|
298
298
|
I, [2016-07-29T10:26:36.319683 #34638] INFO -- : Rendered inline template within layouts/application (1172.7ms)
|
299
299
|
I, [2016-07-29T10:26:36.320476 #34638] INFO -- : Completed 200 OK in 2395ms (Views: 1173.6ms | ActiveRecord: 0.0ms)
|
300
|
+
I, [2016-07-29T10:51:04.737754 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:04 -0700
|
301
|
+
I, [2016-07-29T10:51:04.741581 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
302
|
+
I, [2016-07-29T10:51:04.741635 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
303
|
+
I, [2016-07-29T10:51:05.980715 #36434] INFO -- : Rendered inline template within layouts/application (1232.8ms)
|
304
|
+
I, [2016-07-29T10:51:05.999386 #36434] INFO -- : Completed 200 OK in 1258ms (Views: 1253.8ms | ActiveRecord: 0.0ms)
|
305
|
+
I, [2016-07-29T10:51:06.002715 #36434] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 10:51:06 -0700
|
306
|
+
I, [2016-07-29T10:51:06.011533 #36434] INFO -- : Processing by BaselineController#show as HTML
|
307
|
+
I, [2016-07-29T10:51:06.015434 #36434] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
308
|
+
I, [2016-07-29T10:51:06.016086 #36434] INFO -- : Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
309
|
+
I, [2016-07-29T10:51:06.017083 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:06 -0700
|
310
|
+
I, [2016-07-29T10:51:06.017566 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
311
|
+
I, [2016-07-29T10:51:06.017598 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
312
|
+
I, [2016-07-29T10:51:06.206500 #36434] INFO -- : Rendered inline template within layouts/application (188.5ms)
|
313
|
+
I, [2016-07-29T10:51:06.208337 #36434] INFO -- : Completed 200 OK in 191ms (Views: 190.4ms | ActiveRecord: 0.0ms)
|
314
|
+
I, [2016-07-29T10:51:06.212093 #36434] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 10:51:06 -0700
|
315
|
+
I, [2016-07-29T10:51:06.212802 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
316
|
+
I, [2016-07-29T10:51:06.212835 #36434] INFO -- : Parameters: {"path"=>"page-9999"}
|
317
|
+
I, [2016-07-29T10:51:06.361883 #36434] INFO -- : Rendered inline template within layouts/application (148.3ms)
|
318
|
+
I, [2016-07-29T10:51:06.363585 #36434] INFO -- : Completed 200 OK in 151ms (Views: 150.1ms | ActiveRecord: 0.0ms)
|
319
|
+
I, [2016-07-29T10:51:06.549285 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:06 -0700
|
320
|
+
I, [2016-07-29T10:51:06.549834 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
321
|
+
I, [2016-07-29T10:51:06.549878 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
322
|
+
I, [2016-07-29T10:51:06.639081 #36434] INFO -- : Rendered inline template within layouts/application (88.8ms)
|
323
|
+
I, [2016-07-29T10:51:06.640651 #36434] INFO -- : Completed 200 OK in 91ms (Views: 90.4ms | ActiveRecord: 0.0ms)
|
324
|
+
I, [2016-07-29T10:51:06.720108 #36434] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 10:51:06 -0700
|
325
|
+
I, [2016-07-29T10:51:06.720790 #36434] INFO -- : Processing by BaselineController#show as HTML
|
326
|
+
I, [2016-07-29T10:51:06.721566 #36434] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.2ms)
|
327
|
+
I, [2016-07-29T10:51:06.722702 #36434] INFO -- : Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
328
|
+
I, [2016-07-29T10:51:06.786438 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:06 -0700
|
329
|
+
I, [2016-07-29T10:51:06.786984 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
330
|
+
I, [2016-07-29T10:51:06.787030 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
331
|
+
I, [2016-07-29T10:51:06.887855 #36434] INFO -- : Rendered inline template within layouts/application (100.3ms)
|
332
|
+
I, [2016-07-29T10:51:06.888851 #36434] INFO -- : Completed 200 OK in 102ms (Views: 101.4ms | ActiveRecord: 0.0ms)
|
333
|
+
I, [2016-07-29T10:51:06.964619 #36434] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 10:51:06 -0700
|
334
|
+
I, [2016-07-29T10:51:06.965339 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
335
|
+
I, [2016-07-29T10:51:06.965391 #36434] INFO -- : Parameters: {"path"=>"page-9999"}
|
336
|
+
I, [2016-07-29T10:51:07.056106 #36434] INFO -- : Rendered inline template within layouts/application (90.1ms)
|
337
|
+
I, [2016-07-29T10:51:07.057674 #36434] INFO -- : Completed 200 OK in 92ms (Views: 91.8ms | ActiveRecord: 0.0ms)
|
338
|
+
I, [2016-07-29T10:51:09.422362 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:09 -0700
|
339
|
+
I, [2016-07-29T10:51:09.422875 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
340
|
+
I, [2016-07-29T10:51:09.422908 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
341
|
+
I, [2016-07-29T10:51:11.962230 #36434] INFO -- : Rendered inline template within layouts/application (1290.9ms)
|
342
|
+
I, [2016-07-29T10:51:11.964926 #36434] INFO -- : Completed 200 OK in 2542ms (Views: 1293.7ms | ActiveRecord: 0.0ms)
|
343
|
+
I, [2016-07-29T10:51:11.968485 #36434] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 10:51:11 -0700
|
344
|
+
I, [2016-07-29T10:51:11.969085 #36434] INFO -- : Processing by BaselineController#show as HTML
|
345
|
+
I, [2016-07-29T10:51:11.969518 #36434] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
|
346
|
+
I, [2016-07-29T10:51:11.970739 #36434] INFO -- : Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
347
|
+
I, [2016-07-29T10:51:11.971862 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:11 -0700
|
348
|
+
I, [2016-07-29T10:51:11.972353 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
349
|
+
I, [2016-07-29T10:51:11.972386 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
350
|
+
I, [2016-07-29T10:51:14.670138 #36434] INFO -- : Rendered inline template within layouts/application (1305.5ms)
|
351
|
+
I, [2016-07-29T10:51:14.672158 #36434] INFO -- : Completed 200 OK in 2700ms (Views: 1307.7ms | ActiveRecord: 0.0ms)
|
352
|
+
I, [2016-07-29T10:51:14.675408 #36434] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 10:51:14 -0700
|
353
|
+
I, [2016-07-29T10:51:14.675951 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
354
|
+
I, [2016-07-29T10:51:14.675997 #36434] INFO -- : Parameters: {"path"=>"page-9999"}
|
355
|
+
I, [2016-07-29T10:51:17.067517 #36434] INFO -- : Rendered inline template within layouts/application (1149.1ms)
|
356
|
+
I, [2016-07-29T10:51:17.069116 #36434] INFO -- : Completed 200 OK in 2393ms (Views: 1150.7ms | ActiveRecord: 0.0ms)
|
357
|
+
I, [2016-07-29T10:51:18.742750 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:18 -0700
|
358
|
+
I, [2016-07-29T10:51:18.743283 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
359
|
+
I, [2016-07-29T10:51:18.743319 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
360
|
+
I, [2016-07-29T10:51:20.993214 #36434] INFO -- : Rendered inline template within layouts/application (1088.5ms)
|
361
|
+
I, [2016-07-29T10:51:20.994682 #36434] INFO -- : Completed 200 OK in 2251ms (Views: 1090.1ms | ActiveRecord: 0.0ms)
|
362
|
+
I, [2016-07-29T10:51:21.373336 #36434] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 10:51:21 -0700
|
363
|
+
I, [2016-07-29T10:51:21.373983 #36434] INFO -- : Processing by BaselineController#show as HTML
|
364
|
+
I, [2016-07-29T10:51:21.374449 #36434] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
365
|
+
I, [2016-07-29T10:51:21.375006 #36434] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
366
|
+
I, [2016-07-29T10:51:21.496825 #36434] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 10:51:21 -0700
|
367
|
+
I, [2016-07-29T10:51:21.497337 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
368
|
+
I, [2016-07-29T10:51:21.497370 #36434] INFO -- : Parameters: {"path"=>"page-1"}
|
369
|
+
I, [2016-07-29T10:51:23.744200 #36434] INFO -- : Rendered inline template within layouts/application (1130.6ms)
|
370
|
+
I, [2016-07-29T10:51:23.745597 #36434] INFO -- : Completed 200 OK in 2248ms (Views: 1132.1ms | ActiveRecord: 0.0ms)
|
371
|
+
I, [2016-07-29T10:51:24.054160 #36434] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 10:51:24 -0700
|
372
|
+
I, [2016-07-29T10:51:24.054859 #36434] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
373
|
+
I, [2016-07-29T10:51:24.054905 #36434] INFO -- : Parameters: {"path"=>"page-9999"}
|
374
|
+
I, [2016-07-29T10:51:26.666663 #36434] INFO -- : Rendered inline template within layouts/application (1399.8ms)
|
375
|
+
I, [2016-07-29T10:51:26.668184 #36434] INFO -- : Completed 200 OK in 2613ms (Views: 1401.4ms | ActiveRecord: 0.0ms)
|
376
|
+
I, [2016-07-29T11:11:07.129097 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:07 -0700
|
377
|
+
I, [2016-07-29T11:11:07.133015 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
378
|
+
I, [2016-07-29T11:11:07.133215 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
379
|
+
I, [2016-07-29T11:11:08.266639 #37164] INFO -- : Rendered inline template within layouts/application (1127.3ms)
|
380
|
+
I, [2016-07-29T11:11:08.284605 #37164] INFO -- : Completed 200 OK in 1151ms (Views: 1147.7ms | ActiveRecord: 0.0ms)
|
381
|
+
I, [2016-07-29T11:11:08.288053 #37164] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:11:08 -0700
|
382
|
+
I, [2016-07-29T11:11:08.296376 #37164] INFO -- : Processing by BaselineController#show as HTML
|
383
|
+
I, [2016-07-29T11:11:08.300065 #37164] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.2ms)
|
384
|
+
I, [2016-07-29T11:11:08.300673 #37164] INFO -- : Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
385
|
+
I, [2016-07-29T11:11:08.301600 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:08 -0700
|
386
|
+
I, [2016-07-29T11:11:08.302076 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
387
|
+
I, [2016-07-29T11:11:08.302107 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
388
|
+
I, [2016-07-29T11:11:08.488496 #37164] INFO -- : Rendered inline template within layouts/application (186.0ms)
|
389
|
+
I, [2016-07-29T11:11:08.490510 #37164] INFO -- : Completed 200 OK in 188ms (Views: 188.0ms | ActiveRecord: 0.0ms)
|
390
|
+
I, [2016-07-29T11:11:08.493886 #37164] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:11:08 -0700
|
391
|
+
I, [2016-07-29T11:11:08.494328 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
392
|
+
I, [2016-07-29T11:11:08.494358 #37164] INFO -- : Parameters: {"path"=>"page-9999"}
|
393
|
+
I, [2016-07-29T11:11:08.638385 #37164] INFO -- : Rendered inline template within layouts/application (143.5ms)
|
394
|
+
I, [2016-07-29T11:11:08.639908 #37164] INFO -- : Completed 200 OK in 145ms (Views: 145.1ms | ActiveRecord: 0.0ms)
|
395
|
+
I, [2016-07-29T11:11:08.822940 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:08 -0700
|
396
|
+
I, [2016-07-29T11:11:08.823509 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
397
|
+
I, [2016-07-29T11:11:08.823549 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
398
|
+
I, [2016-07-29T11:11:08.910248 #37164] INFO -- : Rendered inline template within layouts/application (86.2ms)
|
399
|
+
I, [2016-07-29T11:11:08.911802 #37164] INFO -- : Completed 200 OK in 88ms (Views: 87.9ms | ActiveRecord: 0.0ms)
|
400
|
+
I, [2016-07-29T11:11:08.987775 #37164] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:11:08 -0700
|
401
|
+
I, [2016-07-29T11:11:08.988312 #37164] INFO -- : Processing by BaselineController#show as HTML
|
402
|
+
I, [2016-07-29T11:11:08.988652 #37164] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
403
|
+
I, [2016-07-29T11:11:08.989052 #37164] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
404
|
+
I, [2016-07-29T11:11:09.052073 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:09 -0700
|
405
|
+
I, [2016-07-29T11:11:09.052697 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
406
|
+
I, [2016-07-29T11:11:09.052745 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
407
|
+
I, [2016-07-29T11:11:09.139202 #37164] INFO -- : Rendered inline template within layouts/application (85.8ms)
|
408
|
+
I, [2016-07-29T11:11:09.140216 #37164] INFO -- : Completed 200 OK in 87ms (Views: 87.0ms | ActiveRecord: 0.0ms)
|
409
|
+
I, [2016-07-29T11:11:09.225727 #37164] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:11:09 -0700
|
410
|
+
I, [2016-07-29T11:11:09.226223 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
411
|
+
I, [2016-07-29T11:11:09.226256 #37164] INFO -- : Parameters: {"path"=>"page-9999"}
|
412
|
+
I, [2016-07-29T11:11:09.318642 #37164] INFO -- : Rendered inline template within layouts/application (92.0ms)
|
413
|
+
I, [2016-07-29T11:11:09.320381 #37164] INFO -- : Completed 200 OK in 94ms (Views: 93.8ms | ActiveRecord: 0.0ms)
|
414
|
+
I, [2016-07-29T11:11:12.104515 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:12 -0700
|
415
|
+
I, [2016-07-29T11:11:12.105146 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
416
|
+
I, [2016-07-29T11:11:12.105212 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
417
|
+
I, [2016-07-29T11:11:14.902070 #37164] INFO -- : Rendered inline template within layouts/application (1278.9ms)
|
418
|
+
I, [2016-07-29T11:11:14.904234 #37164] INFO -- : Completed 200 OK in 2799ms (Views: 1281.2ms | ActiveRecord: 0.0ms)
|
419
|
+
I, [2016-07-29T11:11:14.907953 #37164] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:11:14 -0700
|
420
|
+
I, [2016-07-29T11:11:14.908524 #37164] INFO -- : Processing by BaselineController#show as HTML
|
421
|
+
I, [2016-07-29T11:11:14.908860 #37164] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
422
|
+
I, [2016-07-29T11:11:14.909641 #37164] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
423
|
+
I, [2016-07-29T11:11:14.911010 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:14 -0700
|
424
|
+
I, [2016-07-29T11:11:14.911749 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
425
|
+
I, [2016-07-29T11:11:14.911796 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
426
|
+
I, [2016-07-29T11:11:18.037533 #37164] INFO -- : Rendered inline template within layouts/application (1577.7ms)
|
427
|
+
I, [2016-07-29T11:11:18.040104 #37164] INFO -- : Completed 200 OK in 3128ms (Views: 1580.4ms | ActiveRecord: 0.0ms)
|
428
|
+
I, [2016-07-29T11:11:18.044697 #37164] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:11:18 -0700
|
429
|
+
I, [2016-07-29T11:11:18.045393 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
430
|
+
I, [2016-07-29T11:11:18.045454 #37164] INFO -- : Parameters: {"path"=>"page-9999"}
|
431
|
+
I, [2016-07-29T11:11:21.351228 #37164] INFO -- : Rendered inline template within layouts/application (1578.2ms)
|
432
|
+
I, [2016-07-29T11:11:21.424097 #37164] INFO -- : Completed 200 OK in 3379ms (Views: 1580.9ms | ActiveRecord: 0.0ms)
|
433
|
+
I, [2016-07-29T11:11:23.543504 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:23 -0700
|
434
|
+
I, [2016-07-29T11:11:23.543993 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
435
|
+
I, [2016-07-29T11:11:23.544026 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
436
|
+
I, [2016-07-29T11:11:26.452776 #37164] INFO -- : Rendered inline template within layouts/application (1290.7ms)
|
437
|
+
I, [2016-07-29T11:11:26.454545 #37164] INFO -- : Completed 200 OK in 2910ms (Views: 1292.6ms | ActiveRecord: 0.0ms)
|
438
|
+
I, [2016-07-29T11:11:26.822442 #37164] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:11:26 -0700
|
439
|
+
I, [2016-07-29T11:11:26.823064 #37164] INFO -- : Processing by BaselineController#show as HTML
|
440
|
+
I, [2016-07-29T11:11:26.823492 #37164] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
441
|
+
I, [2016-07-29T11:11:26.824067 #37164] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
442
|
+
I, [2016-07-29T11:11:26.969679 #37164] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:11:26 -0700
|
443
|
+
I, [2016-07-29T11:11:26.970196 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
444
|
+
I, [2016-07-29T11:11:26.970229 #37164] INFO -- : Parameters: {"path"=>"page-1"}
|
445
|
+
I, [2016-07-29T11:11:29.241288 #37164] INFO -- : Rendered inline template within layouts/application (1099.6ms)
|
446
|
+
I, [2016-07-29T11:11:29.242315 #37164] INFO -- : Completed 200 OK in 2272ms (Views: 1100.8ms | ActiveRecord: 0.0ms)
|
447
|
+
I, [2016-07-29T11:11:29.561242 #37164] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:11:29 -0700
|
448
|
+
I, [2016-07-29T11:11:29.561817 #37164] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
449
|
+
I, [2016-07-29T11:11:29.561864 #37164] INFO -- : Parameters: {"path"=>"page-9999"}
|
450
|
+
I, [2016-07-29T11:11:31.694538 #37164] INFO -- : Rendered inline template within layouts/application (1042.1ms)
|
451
|
+
I, [2016-07-29T11:11:31.695953 #37164] INFO -- : Completed 200 OK in 2134ms (Views: 1043.7ms | ActiveRecord: 0.0ms)
|
452
|
+
I, [2016-07-29T11:27:51.352057 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:27:51 -0700
|
453
|
+
I, [2016-07-29T11:27:51.356126 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
454
|
+
I, [2016-07-29T11:27:51.356175 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
455
|
+
I, [2016-07-29T11:27:55.160162 #38271] INFO -- : Rendered inline template within layouts/application (3796.7ms)
|
456
|
+
I, [2016-07-29T11:27:55.182216 #38271] INFO -- : Completed 200 OK in 3826ms (Views: 3821.4ms | ActiveRecord: 0.0ms)
|
457
|
+
I, [2016-07-29T11:27:55.186184 #38271] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:27:55 -0700
|
458
|
+
I, [2016-07-29T11:27:55.194656 #38271] INFO -- : Processing by BaselineController#show as HTML
|
459
|
+
I, [2016-07-29T11:27:55.198120 #38271] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.2ms)
|
460
|
+
I, [2016-07-29T11:27:55.198780 #38271] INFO -- : Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
461
|
+
I, [2016-07-29T11:27:55.199698 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:27:55 -0700
|
462
|
+
I, [2016-07-29T11:27:55.200172 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
463
|
+
I, [2016-07-29T11:27:55.200204 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
464
|
+
I, [2016-07-29T11:27:55.391909 #38271] INFO -- : Rendered inline template within layouts/application (191.3ms)
|
465
|
+
I, [2016-07-29T11:27:55.394668 #38271] INFO -- : Completed 200 OK in 194ms (Views: 194.1ms | ActiveRecord: 0.0ms)
|
466
|
+
I, [2016-07-29T11:27:55.398783 #38271] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:27:55 -0700
|
467
|
+
I, [2016-07-29T11:27:55.399404 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
468
|
+
I, [2016-07-29T11:27:55.399437 #38271] INFO -- : Parameters: {"path"=>"page-9999"}
|
469
|
+
I, [2016-07-29T11:27:55.560563 #38271] INFO -- : Rendered inline template within layouts/application (160.4ms)
|
470
|
+
I, [2016-07-29T11:27:55.562002 #38271] INFO -- : Completed 200 OK in 163ms (Views: 162.0ms | ActiveRecord: 0.0ms)
|
471
|
+
I, [2016-07-29T11:27:55.765630 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:27:55 -0700
|
472
|
+
I, [2016-07-29T11:27:55.768916 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
473
|
+
I, [2016-07-29T11:27:55.769000 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
474
|
+
I, [2016-07-29T11:27:55.901275 #38271] INFO -- : Rendered inline template within layouts/application (131.6ms)
|
475
|
+
I, [2016-07-29T11:27:55.904285 #38271] INFO -- : Completed 200 OK in 135ms (Views: 134.4ms | ActiveRecord: 0.0ms)
|
476
|
+
I, [2016-07-29T11:27:55.993409 #38271] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:27:55 -0700
|
477
|
+
I, [2016-07-29T11:27:55.993955 #38271] INFO -- : Processing by BaselineController#show as HTML
|
478
|
+
I, [2016-07-29T11:27:55.994299 #38271] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
479
|
+
I, [2016-07-29T11:27:55.994703 #38271] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
480
|
+
I, [2016-07-29T11:27:56.059741 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:27:56 -0700
|
481
|
+
I, [2016-07-29T11:27:56.060319 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
482
|
+
I, [2016-07-29T11:27:56.060364 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
483
|
+
I, [2016-07-29T11:27:56.161696 #38271] INFO -- : Rendered inline template within layouts/application (100.8ms)
|
484
|
+
I, [2016-07-29T11:27:56.162673 #38271] INFO -- : Completed 200 OK in 102ms (Views: 102.0ms | ActiveRecord: 0.0ms)
|
485
|
+
I, [2016-07-29T11:27:56.251999 #38271] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:27:56 -0700
|
486
|
+
I, [2016-07-29T11:27:56.252655 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
487
|
+
I, [2016-07-29T11:27:56.252714 #38271] INFO -- : Parameters: {"path"=>"page-9999"}
|
488
|
+
I, [2016-07-29T11:27:56.381349 #38271] INFO -- : Rendered inline template within layouts/application (128.2ms)
|
489
|
+
I, [2016-07-29T11:27:56.383421 #38271] INFO -- : Completed 200 OK in 131ms (Views: 130.3ms | ActiveRecord: 0.0ms)
|
490
|
+
I, [2016-07-29T11:27:59.041858 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:27:59 -0700
|
491
|
+
I, [2016-07-29T11:27:59.043373 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
492
|
+
I, [2016-07-29T11:27:59.043431 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
493
|
+
I, [2016-07-29T11:28:03.961571 #38271] INFO -- : Rendered inline template within layouts/application (3629.8ms)
|
494
|
+
I, [2016-07-29T11:28:03.963246 #38271] INFO -- : Completed 200 OK in 4920ms (Views: 3631.4ms | ActiveRecord: 0.0ms)
|
495
|
+
I, [2016-07-29T11:28:03.966701 #38271] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:28:03 -0700
|
496
|
+
I, [2016-07-29T11:28:03.967309 #38271] INFO -- : Processing by BaselineController#show as HTML
|
497
|
+
I, [2016-07-29T11:28:03.967692 #38271] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
498
|
+
I, [2016-07-29T11:28:03.968158 #38271] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
499
|
+
I, [2016-07-29T11:28:03.969297 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:28:03 -0700
|
500
|
+
I, [2016-07-29T11:28:03.969983 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
501
|
+
I, [2016-07-29T11:28:03.970023 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
502
|
+
I, [2016-07-29T11:28:06.715330 #38271] INFO -- : Rendered inline template within layouts/application (1318.6ms)
|
503
|
+
I, [2016-07-29T11:28:06.717237 #38271] INFO -- : Completed 200 OK in 2747ms (Views: 1320.7ms | ActiveRecord: 0.0ms)
|
504
|
+
I, [2016-07-29T11:28:06.720391 #38271] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:28:06 -0700
|
505
|
+
I, [2016-07-29T11:28:06.720947 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
506
|
+
I, [2016-07-29T11:28:06.720985 #38271] INFO -- : Parameters: {"path"=>"page-9999"}
|
507
|
+
I, [2016-07-29T11:28:09.353259 #38271] INFO -- : Rendered inline template within layouts/application (1318.4ms)
|
508
|
+
I, [2016-07-29T11:28:09.354732 #38271] INFO -- : Completed 200 OK in 2634ms (Views: 1319.9ms | ActiveRecord: 0.0ms)
|
509
|
+
I, [2016-07-29T11:28:11.027150 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:28:11 -0700
|
510
|
+
I, [2016-07-29T11:28:11.027710 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
511
|
+
I, [2016-07-29T11:28:11.027761 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
512
|
+
I, [2016-07-29T11:28:13.478480 #38271] INFO -- : Rendered inline template within layouts/application (1236.1ms)
|
513
|
+
I, [2016-07-29T11:28:13.480387 #38271] INFO -- : Completed 200 OK in 2453ms (Views: 1238.1ms | ActiveRecord: 0.0ms)
|
514
|
+
I, [2016-07-29T11:28:13.933724 #38271] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 11:28:13 -0700
|
515
|
+
I, [2016-07-29T11:28:13.934298 #38271] INFO -- : Processing by BaselineController#show as HTML
|
516
|
+
I, [2016-07-29T11:28:13.934675 #38271] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
517
|
+
I, [2016-07-29T11:28:13.935265 #38271] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
518
|
+
I, [2016-07-29T11:28:14.070070 #38271] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 11:28:14 -0700
|
519
|
+
I, [2016-07-29T11:28:14.070590 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
520
|
+
I, [2016-07-29T11:28:14.070622 #38271] INFO -- : Parameters: {"path"=>"page-1"}
|
521
|
+
I, [2016-07-29T11:28:16.486930 #38271] INFO -- : Rendered inline template within layouts/application (1298.5ms)
|
522
|
+
I, [2016-07-29T11:28:16.488009 #38271] INFO -- : Completed 200 OK in 2417ms (Views: 1299.8ms | ActiveRecord: 0.0ms)
|
523
|
+
I, [2016-07-29T11:28:16.784864 #38271] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 11:28:16 -0700
|
524
|
+
I, [2016-07-29T11:28:16.785373 #38271] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
525
|
+
I, [2016-07-29T11:28:16.785408 #38271] INFO -- : Parameters: {"path"=>"page-9999"}
|
526
|
+
I, [2016-07-29T11:28:19.012862 #38271] INFO -- : Rendered inline template within layouts/application (1104.7ms)
|
527
|
+
I, [2016-07-29T11:28:19.015325 #38271] INFO -- : Completed 200 OK in 2230ms (Views: 1107.2ms | ActiveRecord: 0.0ms)
|
528
|
+
I, [2016-07-29T12:01:53.751763 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:01:53 -0700
|
529
|
+
I, [2016-07-29T12:01:53.758119 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
530
|
+
I, [2016-07-29T12:01:53.758208 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
531
|
+
I, [2016-07-29T12:01:57.249134 #39720] INFO -- : Rendered inline template within layouts/application (3479.8ms)
|
532
|
+
I, [2016-07-29T12:01:57.269647 #39720] INFO -- : Completed 200 OK in 3511ms (Views: 3504.3ms | ActiveRecord: 0.0ms)
|
533
|
+
I, [2016-07-29T12:01:57.273756 #39720] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 12:01:57 -0700
|
534
|
+
I, [2016-07-29T12:01:57.286192 #39720] INFO -- : Processing by BaselineController#show as HTML
|
535
|
+
I, [2016-07-29T12:01:57.293758 #39720] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.6ms)
|
536
|
+
I, [2016-07-29T12:01:57.294943 #39720] INFO -- : Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
537
|
+
I, [2016-07-29T12:01:57.296205 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:01:57 -0700
|
538
|
+
I, [2016-07-29T12:01:57.296885 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
539
|
+
I, [2016-07-29T12:01:57.296940 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
540
|
+
I, [2016-07-29T12:01:57.494400 #39720] INFO -- : Rendered inline template within layouts/application (196.9ms)
|
541
|
+
I, [2016-07-29T12:01:57.496903 #39720] INFO -- : Completed 200 OK in 200ms (Views: 199.6ms | ActiveRecord: 0.0ms)
|
542
|
+
I, [2016-07-29T12:01:57.500788 #39720] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 12:01:57 -0700
|
543
|
+
I, [2016-07-29T12:01:57.501425 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
544
|
+
I, [2016-07-29T12:01:57.501461 #39720] INFO -- : Parameters: {"path"=>"page-9999"}
|
545
|
+
I, [2016-07-29T12:01:57.667970 #39720] INFO -- : Rendered inline template within layouts/application (165.8ms)
|
546
|
+
I, [2016-07-29T12:01:57.669507 #39720] INFO -- : Completed 200 OK in 168ms (Views: 167.4ms | ActiveRecord: 0.0ms)
|
547
|
+
I, [2016-07-29T12:01:57.899146 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:01:57 -0700
|
548
|
+
I, [2016-07-29T12:01:57.899784 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
549
|
+
I, [2016-07-29T12:01:57.899834 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
550
|
+
I, [2016-07-29T12:01:58.010742 #39720] INFO -- : Rendered inline template within layouts/application (110.3ms)
|
551
|
+
I, [2016-07-29T12:01:58.011690 #39720] INFO -- : Completed 200 OK in 112ms (Views: 111.5ms | ActiveRecord: 0.0ms)
|
552
|
+
I, [2016-07-29T12:01:58.098917 #39720] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 12:01:58 -0700
|
553
|
+
I, [2016-07-29T12:01:58.099529 #39720] INFO -- : Processing by BaselineController#show as HTML
|
554
|
+
I, [2016-07-29T12:01:58.099949 #39720] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
555
|
+
I, [2016-07-29T12:01:58.100543 #39720] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
556
|
+
I, [2016-07-29T12:01:58.170038 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:01:58 -0700
|
557
|
+
I, [2016-07-29T12:01:58.170537 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
558
|
+
I, [2016-07-29T12:01:58.170569 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
559
|
+
I, [2016-07-29T12:01:58.282186 #39720] INFO -- : Rendered inline template within layouts/application (111.2ms)
|
560
|
+
I, [2016-07-29T12:01:58.283086 #39720] INFO -- : Completed 200 OK in 112ms (Views: 112.2ms | ActiveRecord: 0.0ms)
|
561
|
+
I, [2016-07-29T12:01:58.375602 #39720] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 12:01:58 -0700
|
562
|
+
I, [2016-07-29T12:01:58.376215 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
563
|
+
I, [2016-07-29T12:01:58.376264 #39720] INFO -- : Parameters: {"path"=>"page-9999"}
|
564
|
+
I, [2016-07-29T12:01:58.520536 #39720] INFO -- : Rendered inline template within layouts/application (143.8ms)
|
565
|
+
I, [2016-07-29T12:01:58.521445 #39720] INFO -- : Completed 200 OK in 145ms (Views: 144.8ms | ActiveRecord: 0.0ms)
|
566
|
+
I, [2016-07-29T12:02:02.004277 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:02:02 -0700
|
567
|
+
I, [2016-07-29T12:02:02.004834 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
568
|
+
I, [2016-07-29T12:02:02.004877 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
569
|
+
I, [2016-07-29T12:02:05.983188 #39720] INFO -- : Rendered inline template within layouts/application (1578.2ms)
|
570
|
+
I, [2016-07-29T12:02:05.983921 #39720] INFO -- : Completed 200 OK in 3979ms (Views: 1579.0ms | ActiveRecord: 0.0ms)
|
571
|
+
I, [2016-07-29T12:02:05.987081 #39720] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 12:02:05 -0700
|
572
|
+
I, [2016-07-29T12:02:05.987639 #39720] INFO -- : Processing by BaselineController#show as HTML
|
573
|
+
I, [2016-07-29T12:02:05.988013 #39720] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
574
|
+
I, [2016-07-29T12:02:05.988510 #39720] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
575
|
+
I, [2016-07-29T12:02:05.989416 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:02:05 -0700
|
576
|
+
I, [2016-07-29T12:02:05.990049 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
577
|
+
I, [2016-07-29T12:02:05.990092 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
578
|
+
I, [2016-07-29T12:02:08.555070 #39720] INFO -- : Rendered inline template within layouts/application (1218.9ms)
|
579
|
+
I, [2016-07-29T12:02:08.556057 #39720] INFO -- : Completed 200 OK in 2566ms (Views: 1220.0ms | ActiveRecord: 0.0ms)
|
580
|
+
I, [2016-07-29T12:02:08.560212 #39720] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 12:02:08 -0700
|
581
|
+
I, [2016-07-29T12:02:08.560722 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
582
|
+
I, [2016-07-29T12:02:08.560764 #39720] INFO -- : Parameters: {"path"=>"page-9999"}
|
583
|
+
I, [2016-07-29T12:02:10.890126 #39720] INFO -- : Rendered inline template within layouts/application (1166.6ms)
|
584
|
+
I, [2016-07-29T12:02:10.891993 #39720] INFO -- : Completed 200 OK in 2331ms (Views: 1168.6ms | ActiveRecord: 0.0ms)
|
585
|
+
I, [2016-07-29T12:02:12.504014 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:02:12 -0700
|
586
|
+
I, [2016-07-29T12:02:12.504504 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
587
|
+
I, [2016-07-29T12:02:12.504536 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
588
|
+
I, [2016-07-29T12:02:14.764398 #39720] INFO -- : Rendered inline template within layouts/application (1141.2ms)
|
589
|
+
I, [2016-07-29T12:02:14.765246 #39720] INFO -- : Completed 200 OK in 2261ms (Views: 1142.2ms | ActiveRecord: 0.0ms)
|
590
|
+
I, [2016-07-29T12:02:15.140096 #39720] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-29 12:02:15 -0700
|
591
|
+
I, [2016-07-29T12:02:15.140783 #39720] INFO -- : Processing by BaselineController#show as HTML
|
592
|
+
I, [2016-07-29T12:02:15.141233 #39720] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
593
|
+
I, [2016-07-29T12:02:15.141749 #39720] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
594
|
+
I, [2016-07-29T12:02:15.274116 #39720] INFO -- : Started GET "/page-1" for 127.0.0.1 at 2016-07-29 12:02:15 -0700
|
595
|
+
I, [2016-07-29T12:02:15.274664 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
596
|
+
I, [2016-07-29T12:02:15.274710 #39720] INFO -- : Parameters: {"path"=>"page-1"}
|
597
|
+
I, [2016-07-29T12:02:17.528281 #39720] INFO -- : Rendered inline template within layouts/application (1193.4ms)
|
598
|
+
I, [2016-07-29T12:02:17.530370 #39720] INFO -- : Completed 200 OK in 2256ms (Views: 1195.6ms | ActiveRecord: 0.0ms)
|
599
|
+
I, [2016-07-29T12:02:17.850173 #39720] INFO -- : Started GET "/page-9999" for 127.0.0.1 at 2016-07-29 12:02:17 -0700
|
600
|
+
I, [2016-07-29T12:02:17.850733 #39720] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
601
|
+
I, [2016-07-29T12:02:17.850778 #39720] INFO -- : Parameters: {"path"=>"page-9999"}
|
602
|
+
I, [2016-07-29T12:02:20.194702 #39720] INFO -- : Rendered inline template within layouts/application (1219.2ms)
|
603
|
+
I, [2016-07-29T12:02:20.196818 #39720] INFO -- : Completed 200 OK in 2346ms (Views: 1221.3ms | ActiveRecord: 0.0ms)
|
604
|
+
I, [2016-07-31T23:18:20.084336 #22629] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:18:20 -0700
|
605
|
+
I, [2016-07-31T23:18:20.097067 #22629] INFO -- : Processing by BaselineController#show as HTML
|
606
|
+
I, [2016-07-31T23:18:20.102391 #22629] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
607
|
+
I, [2016-07-31T23:18:20.109330 #22629] INFO -- : Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
608
|
+
I, [2016-07-31T23:19:10.956994 #22675] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:19:10 -0700
|
609
|
+
I, [2016-07-31T23:19:10.971223 #22675] INFO -- : Processing by BaselineController#show as HTML
|
610
|
+
I, [2016-07-31T23:19:10.975947 #22675] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
611
|
+
I, [2016-07-31T23:19:10.982564 #22675] INFO -- : Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
612
|
+
I, [2016-07-31T23:19:10.983768 #22675] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:19:10 -0700
|
613
|
+
I, [2016-07-31T23:19:10.984756 #22675] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
614
|
+
I, [2016-07-31T23:19:10.984787 #22675] INFO -- : Parameters: {"path"=>"page-1.html"}
|
615
|
+
I, [2016-07-31T23:19:10.995502 #22675] INFO -- : Rendered inline template within layouts/application (4.6ms)
|
616
|
+
I, [2016-07-31T23:19:10.995798 #22675] INFO -- : Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
|
617
|
+
F, [2016-07-31T23:19:10.998111 #22675] FATAL -- :
|
618
|
+
ActionView::Template::Error (undefined method `to_model' for #<Pathname:page-1.html>
|
619
|
+
Did you mean? to_yaml):
|
620
|
+
2: <p>And they are...<p>
|
621
|
+
3: <ul>
|
622
|
+
4: <% resources.each do |r| %>
|
623
|
+
5: <li><%= link_to r.data['title'], r.request_path %></li>
|
624
|
+
6: <% end %>
|
625
|
+
7: </ul>
|
626
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:253:in `handle_model'
|
627
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:267:in `handle_model_call'
|
628
|
+
actionview (4.2.7) lib/action_view/routing_url_for.rb:114:in `url_for'
|
629
|
+
actionview (4.2.7) lib/action_view/helpers/url_helper.rb:181:in `link_to'
|
630
|
+
inline template:5:in `block in _inline_template__2441525420408418264_70277206581360'
|
631
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
632
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
633
|
+
inline template:4:in `_inline_template__2441525420408418264_70277206581360'
|
634
|
+
actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
|
635
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
|
636
|
+
actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
|
637
|
+
actionview (4.2.7) lib/action_view/template.rb:143:in `render'
|
638
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
|
639
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
|
640
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
641
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
642
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
643
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
|
644
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
|
645
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
|
646
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
|
647
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
|
648
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
|
649
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
|
650
|
+
actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
|
651
|
+
actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
652
|
+
actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
|
653
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
654
|
+
actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
655
|
+
actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
|
656
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
|
657
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
|
658
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
659
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
660
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
661
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
|
662
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
|
663
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
664
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
|
665
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/lib/mascot/action_controller_context.rb:22:in `render'
|
666
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/app/controllers/mascot/sitemap_controller.rb:6:in `show'
|
667
|
+
actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
668
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
|
669
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
670
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
671
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
|
672
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
673
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
|
674
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
675
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
676
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
677
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
678
|
+
actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
679
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
680
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
681
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
682
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
683
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
684
|
+
actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
685
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
686
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
|
687
|
+
actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
|
688
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
|
689
|
+
actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
690
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
|
691
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
692
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
693
|
+
actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:49:in `serve'
|
694
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
695
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each'
|
696
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
|
697
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
698
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
699
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
700
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
701
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
702
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
703
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
704
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
705
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
706
|
+
activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
|
707
|
+
activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
708
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
709
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
710
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
711
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
712
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
713
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
714
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
715
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
716
|
+
railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
|
717
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
|
718
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
719
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
|
720
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
|
721
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
|
722
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
723
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
724
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
725
|
+
activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
726
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
|
727
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
728
|
+
railties (4.2.7) lib/rails/engine.rb:518:in `call'
|
729
|
+
railties (4.2.7) lib/rails/application.rb:165:in `call'
|
730
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
731
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
732
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
733
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
734
|
+
/benchmarks/rails_rendering_benchmark.rb:9:in `get!'
|
735
|
+
/benchmarks/rails_rendering_benchmark.rb:71:in `block (5 levels) in <main>'
|
736
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:293:in `measure'
|
737
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:257:in `block in bmbm'
|
738
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `each'
|
739
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `inject'
|
740
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `bmbm'
|
741
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:27:in `benchmark'
|
742
|
+
/benchmarks/rails_rendering_benchmark.rb:54:in `block (2 levels) in <main>'
|
743
|
+
/benchmarks/rails_rendering_benchmark.rb:51:in `each'
|
744
|
+
/benchmarks/rails_rendering_benchmark.rb:51:in `block in <main>'
|
745
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:18:in `fake_site'
|
746
|
+
/benchmarks/rails_rendering_benchmark.rb:15:in `<main>'
|
747
|
+
|
748
|
+
|
749
|
+
I, [2016-07-31T23:19:57.431723 #22724] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:19:57 -0700
|
750
|
+
I, [2016-07-31T23:19:57.442562 #22724] INFO -- : Processing by BaselineController#show as HTML
|
751
|
+
I, [2016-07-31T23:19:57.447666 #22724] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
752
|
+
I, [2016-07-31T23:19:57.454423 #22724] INFO -- : Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
753
|
+
I, [2016-07-31T23:21:26.358055 #22781] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:21:26 -0700
|
754
|
+
I, [2016-07-31T23:21:26.368156 #22781] INFO -- : Processing by BaselineController#show as HTML
|
755
|
+
I, [2016-07-31T23:21:26.372830 #22781] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.4ms)
|
756
|
+
I, [2016-07-31T23:21:26.379663 #22781] INFO -- : Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
757
|
+
I, [2016-07-31T23:21:26.381022 #22781] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:21:26 -0700
|
758
|
+
I, [2016-07-31T23:21:26.382207 #22781] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
759
|
+
I, [2016-07-31T23:21:26.382258 #22781] INFO -- : Parameters: {"path"=>"page-1.html"}
|
760
|
+
I, [2016-07-31T23:21:26.393320 #22781] INFO -- : Rendered inline template within layouts/application (3.6ms)
|
761
|
+
I, [2016-07-31T23:21:26.393505 #22781] INFO -- : Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
|
762
|
+
F, [2016-07-31T23:21:26.395710 #22781] FATAL -- :
|
763
|
+
ActionView::Template::Error (undefined method `to_model' for #<Pathname:page-1.html>
|
764
|
+
Did you mean? to_yaml):
|
765
|
+
2: <p>And they are...<p>
|
766
|
+
3: <ul>
|
767
|
+
4: <% resources.each do |r| %>
|
768
|
+
5: <li><%= link_to r.data['title'], r.request_path %></li>
|
769
|
+
6: <% end %>
|
770
|
+
7: </ul>
|
771
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:253:in `handle_model'
|
772
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:267:in `handle_model_call'
|
773
|
+
actionview (4.2.7) lib/action_view/routing_url_for.rb:114:in `url_for'
|
774
|
+
actionview (4.2.7) lib/action_view/helpers/url_helper.rb:181:in `link_to'
|
775
|
+
inline template:5:in `block in _inline_template__3756858601369754937_70348397099080'
|
776
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
777
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
778
|
+
inline template:4:in `_inline_template__3756858601369754937_70348397099080'
|
779
|
+
actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
|
780
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
|
781
|
+
actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
|
782
|
+
actionview (4.2.7) lib/action_view/template.rb:143:in `render'
|
783
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
|
784
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
|
785
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
786
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
787
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
788
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
|
789
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
|
790
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
|
791
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
|
792
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
|
793
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
|
794
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
|
795
|
+
actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
|
796
|
+
actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
797
|
+
actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
|
798
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
799
|
+
actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
800
|
+
actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
|
801
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
|
802
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
|
803
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
804
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
805
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
806
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
|
807
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
|
808
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
809
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
|
810
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/lib/mascot/action_controller_context.rb:22:in `render'
|
811
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/app/controllers/mascot/sitemap_controller.rb:6:in `show'
|
812
|
+
actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
813
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
|
814
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
815
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
816
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
|
817
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
818
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
|
819
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
820
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
821
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
822
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
823
|
+
actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
824
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
825
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
826
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
827
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
828
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
829
|
+
actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
830
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
831
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
|
832
|
+
actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
|
833
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
|
834
|
+
actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
835
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
|
836
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
837
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
838
|
+
actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:49:in `serve'
|
839
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
840
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each'
|
841
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
|
842
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
843
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
844
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
845
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
846
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
847
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
848
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
849
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
850
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
851
|
+
activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
|
852
|
+
activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
853
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
854
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
855
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
856
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
857
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
858
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
859
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
860
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
861
|
+
railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
|
862
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
|
863
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
864
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
|
865
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
|
866
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
|
867
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
868
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
869
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
870
|
+
activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
871
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
|
872
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
873
|
+
railties (4.2.7) lib/rails/engine.rb:518:in `call'
|
874
|
+
railties (4.2.7) lib/rails/application.rb:165:in `call'
|
875
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
876
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
877
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
878
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
879
|
+
/benchmarks/rails_rendering_benchmark.rb:9:in `get!'
|
880
|
+
/benchmarks/rails_rendering_benchmark.rb:71:in `block (5 levels) in <main>'
|
881
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:293:in `measure'
|
882
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:257:in `block in bmbm'
|
883
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `each'
|
884
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `inject'
|
885
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `bmbm'
|
886
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:27:in `benchmark'
|
887
|
+
/benchmarks/rails_rendering_benchmark.rb:54:in `block (2 levels) in <main>'
|
888
|
+
/benchmarks/rails_rendering_benchmark.rb:51:in `each'
|
889
|
+
/benchmarks/rails_rendering_benchmark.rb:51:in `block in <main>'
|
890
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:18:in `fake_site'
|
891
|
+
/benchmarks/rails_rendering_benchmark.rb:15:in `<main>'
|
892
|
+
|
893
|
+
|
894
|
+
I, [2016-07-31T23:24:21.516608 #22906] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:24:21 -0700
|
895
|
+
I, [2016-07-31T23:24:21.527693 #22906] INFO -- : Processing by BaselineController#show as HTML
|
896
|
+
I, [2016-07-31T23:24:21.531952 #22906] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
897
|
+
I, [2016-07-31T23:24:21.537950 #22906] INFO -- : Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
898
|
+
I, [2016-07-31T23:24:27.828430 #22906] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:24:27 -0700
|
899
|
+
I, [2016-07-31T23:24:27.830044 #22906] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
900
|
+
I, [2016-07-31T23:24:27.830081 #22906] INFO -- : Parameters: {"path"=>"page-1.html"}
|
901
|
+
I, [2016-07-31T23:25:43.163761 #22906] INFO -- : Rendered inline template within layouts/application (4.4ms)
|
902
|
+
I, [2016-07-31T23:25:43.163999 #22906] INFO -- : Completed 500 Internal Server Error in 75334ms (ActiveRecord: 0.0ms)
|
903
|
+
F, [2016-07-31T23:25:43.166513 #22906] FATAL -- :
|
904
|
+
ActionView::Template::Error (undefined method `to_model' for #<Pathname:page-1.html>
|
905
|
+
Did you mean? to_yaml):
|
906
|
+
2: <p>And they are...<p>
|
907
|
+
3: <ul>
|
908
|
+
4: <% resources.each do |r| %>
|
909
|
+
5: <li><%= link_to r.data['title'], r.request_path %></li>
|
910
|
+
6: <% end %>
|
911
|
+
7: </ul>
|
912
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:253:in `handle_model'
|
913
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:267:in `handle_model_call'
|
914
|
+
actionview (4.2.7) lib/action_view/routing_url_for.rb:114:in `url_for'
|
915
|
+
actionview (4.2.7) lib/action_view/helpers/url_helper.rb:181:in `link_to'
|
916
|
+
inline template:5:in `block in _inline_template___1733405177359851540_70111528287320'
|
917
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
918
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
919
|
+
inline template:4:in `_inline_template___1733405177359851540_70111528287320'
|
920
|
+
actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
|
921
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
|
922
|
+
actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
|
923
|
+
actionview (4.2.7) lib/action_view/template.rb:143:in `render'
|
924
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
|
925
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
|
926
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
927
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
928
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
929
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
|
930
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
|
931
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
|
932
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
|
933
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
|
934
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
|
935
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
|
936
|
+
actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
|
937
|
+
actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
938
|
+
actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
|
939
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
940
|
+
actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
941
|
+
actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
|
942
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
|
943
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
|
944
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
945
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
946
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
947
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
|
948
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
|
949
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
950
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
|
951
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/lib/mascot/action_controller_context.rb:23:in `render'
|
952
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/app/controllers/mascot/sitemap_controller.rb:6:in `show'
|
953
|
+
actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
954
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
|
955
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
956
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
957
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
|
958
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
959
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
|
960
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
961
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
962
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
963
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
964
|
+
actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
965
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
966
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
967
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
968
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
969
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
970
|
+
actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
971
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
972
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
|
973
|
+
actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
|
974
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
|
975
|
+
actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
976
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
|
977
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
978
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
979
|
+
actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:49:in `serve'
|
980
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
981
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each'
|
982
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
|
983
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
984
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
985
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
986
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
987
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
988
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
989
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
990
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
991
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
992
|
+
activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
|
993
|
+
activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
994
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
995
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
996
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
997
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
998
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
999
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
1000
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1001
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1002
|
+
railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
|
1003
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
|
1004
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1005
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1006
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1007
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
|
1008
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1009
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
1010
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
1011
|
+
activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1012
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
|
1013
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
1014
|
+
railties (4.2.7) lib/rails/engine.rb:518:in `call'
|
1015
|
+
railties (4.2.7) lib/rails/application.rb:165:in `call'
|
1016
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
1017
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
1018
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
1019
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
1020
|
+
/benchmarks/rails_rendering_benchmark.rb:9:in `get!'
|
1021
|
+
/benchmarks/rails_rendering_benchmark.rb:72:in `block (5 levels) in <main>'
|
1022
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:293:in `measure'
|
1023
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:257:in `block in bmbm'
|
1024
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `each'
|
1025
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `inject'
|
1026
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `bmbm'
|
1027
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:27:in `benchmark'
|
1028
|
+
/benchmarks/rails_rendering_benchmark.rb:54:in `block (2 levels) in <main>'
|
1029
|
+
/benchmarks/rails_rendering_benchmark.rb:51:in `each'
|
1030
|
+
/benchmarks/rails_rendering_benchmark.rb:51:in `block in <main>'
|
1031
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:18:in `fake_site'
|
1032
|
+
/benchmarks/rails_rendering_benchmark.rb:15:in `<main>'
|
1033
|
+
|
1034
|
+
|
1035
|
+
I, [2016-07-31T23:26:03.029999 #22963] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:26:03 -0700
|
1036
|
+
I, [2016-07-31T23:26:03.040642 #22963] INFO -- : Processing by BaselineController#show as HTML
|
1037
|
+
I, [2016-07-31T23:26:03.044871 #22963] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
1038
|
+
I, [2016-07-31T23:26:03.050748 #22963] INFO -- : Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
1039
|
+
I, [2016-07-31T23:26:06.584133 #22963] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:26:06 -0700
|
1040
|
+
I, [2016-07-31T23:26:06.585640 #22963] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1041
|
+
I, [2016-07-31T23:26:06.585675 #22963] INFO -- : Parameters: {"path"=>"page-1.html"}
|
1042
|
+
I, [2016-07-31T23:26:53.765843 #22963] INFO -- : Rendered inline template within layouts/application (4.2ms)
|
1043
|
+
I, [2016-07-31T23:28:07.192244 #22963] INFO -- : Rendered inline template within layouts/application (3.5ms)
|
1044
|
+
I, [2016-07-31T23:28:07.192476 #22963] INFO -- : Completed 500 Internal Server Error in 120607ms (ActiveRecord: 0.0ms)
|
1045
|
+
F, [2016-07-31T23:28:07.194849 #22963] FATAL -- :
|
1046
|
+
ActionView::Template::Error (undefined method `to_model' for #<Pathname:page-1.html>
|
1047
|
+
Did you mean? to_yaml):
|
1048
|
+
2: <p>And they are...<p>
|
1049
|
+
3: <ul>
|
1050
|
+
4: <% resources.each do |r| %>
|
1051
|
+
5: <li><%= link_to r.data['title'], r.request_path %></li>
|
1052
|
+
6: <% end %>
|
1053
|
+
7: </ul>
|
1054
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:253:in `handle_model'
|
1055
|
+
actionpack (4.2.7) lib/action_dispatch/routing/polymorphic_routes.rb:267:in `handle_model_call'
|
1056
|
+
actionview (4.2.7) lib/action_view/routing_url_for.rb:114:in `url_for'
|
1057
|
+
actionview (4.2.7) lib/action_view/helpers/url_helper.rb:181:in `link_to'
|
1058
|
+
inline template:5:in `block in _inline_template___1364871103028819149_70356608840240'
|
1059
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
1060
|
+
/Users/bradgessler/Projects/mascot/gem/mascot/lib/mascot/resources.rb:17:in `each'
|
1061
|
+
inline template:4:in `_inline_template___1364871103028819149_70356608840240'
|
1062
|
+
actionview (4.2.7) lib/action_view/template.rb:145:in `block in render'
|
1063
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:166:in `instrument'
|
1064
|
+
actionview (4.2.7) lib/action_view/template.rb:333:in `instrument'
|
1065
|
+
actionview (4.2.7) lib/action_view/template.rb:143:in `render'
|
1066
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
|
1067
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
|
1068
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
1069
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1070
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
1071
|
+
actionview (4.2.7) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
|
1072
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
|
1073
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
|
1074
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
|
1075
|
+
actionview (4.2.7) lib/action_view/renderer/template_renderer.rb:14:in `render'
|
1076
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:46:in `render_template'
|
1077
|
+
actionview (4.2.7) lib/action_view/renderer/renderer.rb:27:in `render'
|
1078
|
+
actionview (4.2.7) lib/action_view/rendering.rb:100:in `_render_template'
|
1079
|
+
actionpack (4.2.7) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
1080
|
+
actionview (4.2.7) lib/action_view/rendering.rb:83:in `render_to_body'
|
1081
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
|
1082
|
+
actionpack (4.2.7) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
|
1083
|
+
actionpack (4.2.7) lib/abstract_controller/rendering.rb:25:in `render'
|
1084
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:16:in `render'
|
1085
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
|
1086
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
1087
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
1088
|
+
activesupport (4.2.7) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
1089
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
|
1090
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
|
1091
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
|
1092
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:43:in `render'
|
1093
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/lib/mascot/action_controller_context.rb:23:in `render'
|
1094
|
+
/Users/bradgessler/Projects/mascot/gem/mascot-rails/app/controllers/mascot/sitemap_controller.rb:6:in `show'
|
1095
|
+
actionpack (4.2.7) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
1096
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:198:in `process_action'
|
1097
|
+
actionpack (4.2.7) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
1098
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
1099
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:117:in `call'
|
1100
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
|
1101
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:505:in `call'
|
1102
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
|
1103
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
|
1104
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1105
|
+
actionpack (4.2.7) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
1106
|
+
actionpack (4.2.7) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
1107
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
1108
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `block in instrument'
|
1109
|
+
activesupport (4.2.7) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
1110
|
+
activesupport (4.2.7) lib/active_support/notifications.rb:164:in `instrument'
|
1111
|
+
actionpack (4.2.7) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
1112
|
+
actionpack (4.2.7) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
1113
|
+
activerecord (4.2.7) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
1114
|
+
actionpack (4.2.7) lib/abstract_controller/base.rb:137:in `process'
|
1115
|
+
actionview (4.2.7) lib/action_view/rendering.rb:30:in `process'
|
1116
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:196:in `dispatch'
|
1117
|
+
actionpack (4.2.7) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
1118
|
+
actionpack (4.2.7) lib/action_controller/metal.rb:237:in `block in action'
|
1119
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
|
1120
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:43:in `serve'
|
1121
|
+
actionpack (4.2.7) lib/action_dispatch/routing/mapper.rb:49:in `serve'
|
1122
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
1123
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `each'
|
1124
|
+
actionpack (4.2.7) lib/action_dispatch/journey/router.rb:30:in `serve'
|
1125
|
+
actionpack (4.2.7) lib/action_dispatch/routing/route_set.rb:817:in `call'
|
1126
|
+
rack (1.6.4) lib/rack/etag.rb:24:in `call'
|
1127
|
+
rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
|
1128
|
+
rack (1.6.4) lib/rack/head.rb:13:in `call'
|
1129
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
1130
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
1131
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
|
1132
|
+
rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
|
1133
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
1134
|
+
activerecord (4.2.7) lib/active_record/query_cache.rb:36:in `call'
|
1135
|
+
activerecord (4.2.7) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
|
1136
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
1137
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
|
1138
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
|
1139
|
+
activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1140
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1141
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
1142
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
1143
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
1144
|
+
railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
|
1145
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
|
1146
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
1147
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
|
1148
|
+
activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
|
1149
|
+
railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
|
1150
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
1151
|
+
rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
|
1152
|
+
rack (1.6.4) lib/rack/runtime.rb:18:in `call'
|
1153
|
+
activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
1154
|
+
actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
|
1155
|
+
rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
|
1156
|
+
railties (4.2.7) lib/rails/engine.rb:518:in `call'
|
1157
|
+
railties (4.2.7) lib/rails/application.rb:165:in `call'
|
1158
|
+
rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
|
1159
|
+
rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
|
1160
|
+
rack-test (0.6.3) lib/rack/test.rb:58:in `get'
|
1161
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/forwardable.rb:184:in `get'
|
1162
|
+
benchmarks/rails_rendering_benchmark.rb:9:in `get!'
|
1163
|
+
benchmarks/rails_rendering_benchmark.rb:72:in `block (5 levels) in <main>'
|
1164
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:293:in `measure'
|
1165
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:257:in `block in bmbm'
|
1166
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `each'
|
1167
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `inject'
|
1168
|
+
/Users/bradgessler/.rbenv/versions/2.3.0/lib/ruby/2.3.0/benchmark.rb:255:in `bmbm'
|
1169
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:27:in `benchmark'
|
1170
|
+
benchmarks/rails_rendering_benchmark.rb:54:in `block (2 levels) in <main>'
|
1171
|
+
benchmarks/rails_rendering_benchmark.rb:51:in `each'
|
1172
|
+
benchmarks/rails_rendering_benchmark.rb:51:in `block in <main>'
|
1173
|
+
/Users/bradgessler/Projects/mascot/gem/support/benchmark_dsl.rb:18:in `fake_site'
|
1174
|
+
benchmarks/rails_rendering_benchmark.rb:15:in `<main>'
|
1175
|
+
|
1176
|
+
|
1177
|
+
I, [2016-07-31T23:28:24.686173 #23049] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:28:24 -0700
|
1178
|
+
I, [2016-07-31T23:28:24.696219 #23049] INFO -- : Processing by BaselineController#show as HTML
|
1179
|
+
I, [2016-07-31T23:28:24.702270 #23049] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
|
1180
|
+
I, [2016-07-31T23:28:24.708483 #23049] INFO -- : Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
1181
|
+
I, [2016-07-31T23:28:24.709740 #23049] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:28:24 -0700
|
1182
|
+
I, [2016-07-31T23:28:24.712855 #23049] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1183
|
+
I, [2016-07-31T23:28:24.712954 #23049] INFO -- : Parameters: {"path"=>"page-1.html"}
|
1184
|
+
I, [2016-07-31T23:28:28.341196 #23049] INFO -- : Rendered inline template within layouts/application (1196.2ms)
|
1185
|
+
I, [2016-07-31T23:28:28.343789 #23049] INFO -- : Completed 200 OK in 3631ms (Views: 1203.1ms | ActiveRecord: 0.0ms)
|
1186
|
+
I, [2016-07-31T23:28:28.348501 #23049] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-07-31 23:28:28 -0700
|
1187
|
+
I, [2016-07-31T23:28:28.349558 #23049] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1188
|
+
I, [2016-07-31T23:28:28.349610 #23049] INFO -- : Parameters: {"path"=>"page-9999.html"}
|
1189
|
+
I, [2016-07-31T23:28:30.864326 #23049] INFO -- : Rendered inline template within layouts/application (118.6ms)
|
1190
|
+
I, [2016-07-31T23:28:30.865980 #23049] INFO -- : Completed 200 OK in 2516ms (Views: 120.4ms | ActiveRecord: 0.0ms)
|
1191
|
+
I, [2016-07-31T23:28:31.183251 #23049] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:28:31 -0700
|
1192
|
+
I, [2016-07-31T23:28:31.183909 #23049] INFO -- : Processing by BaselineController#show as HTML
|
1193
|
+
I, [2016-07-31T23:28:31.184355 #23049] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1194
|
+
I, [2016-07-31T23:28:31.184913 #23049] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1195
|
+
I, [2016-07-31T23:28:39.463376 #23080] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:28:39 -0700
|
1196
|
+
I, [2016-07-31T23:28:39.473987 #23080] INFO -- : Processing by BaselineController#show as HTML
|
1197
|
+
I, [2016-07-31T23:28:39.479676 #23080] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.9ms)
|
1198
|
+
I, [2016-07-31T23:28:39.485666 #23080] INFO -- : Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
1199
|
+
I, [2016-07-31T23:28:39.487047 #23080] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:28:39 -0700
|
1200
|
+
I, [2016-07-31T23:28:39.488066 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1201
|
+
I, [2016-07-31T23:28:39.488099 #23080] INFO -- : Parameters: {"path"=>"page-1.html"}
|
1202
|
+
I, [2016-07-31T23:28:40.697710 #23080] INFO -- : Rendered inline template within layouts/application (1205.1ms)
|
1203
|
+
I, [2016-07-31T23:28:40.699936 #23080] INFO -- : Completed 200 OK in 1212ms (Views: 1209.6ms | ActiveRecord: 0.0ms)
|
1204
|
+
I, [2016-07-31T23:28:40.703223 #23080] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-07-31 23:28:40 -0700
|
1205
|
+
I, [2016-07-31T23:28:40.703956 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1206
|
+
I, [2016-07-31T23:28:40.703990 #23080] INFO -- : Parameters: {"path"=>"page-9999.html"}
|
1207
|
+
I, [2016-07-31T23:28:40.832016 #23080] INFO -- : Rendered inline template within layouts/application (127.5ms)
|
1208
|
+
I, [2016-07-31T23:28:40.833719 #23080] INFO -- : Completed 200 OK in 130ms (Views: 129.3ms | ActiveRecord: 0.0ms)
|
1209
|
+
I, [2016-07-31T23:28:41.116494 #23080] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:28:41 -0700
|
1210
|
+
I, [2016-07-31T23:28:41.117039 #23080] INFO -- : Processing by BaselineController#show as HTML
|
1211
|
+
I, [2016-07-31T23:28:41.117390 #23080] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1212
|
+
I, [2016-07-31T23:28:41.117796 #23080] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1213
|
+
I, [2016-07-31T23:28:41.176702 #23080] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:28:41 -0700
|
1214
|
+
I, [2016-07-31T23:28:41.177253 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1215
|
+
I, [2016-07-31T23:28:41.177300 #23080] INFO -- : Parameters: {"path"=>"page-1.html"}
|
1216
|
+
I, [2016-07-31T23:28:41.282383 #23080] INFO -- : Rendered inline template within layouts/application (104.6ms)
|
1217
|
+
I, [2016-07-31T23:28:41.283155 #23080] INFO -- : Completed 200 OK in 106ms (Views: 105.5ms | ActiveRecord: 0.0ms)
|
1218
|
+
I, [2016-07-31T23:28:41.360198 #23080] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-07-31 23:28:41 -0700
|
1219
|
+
I, [2016-07-31T23:28:41.360695 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1220
|
+
I, [2016-07-31T23:28:41.360751 #23080] INFO -- : Parameters: {"path"=>"page-9999.html"}
|
1221
|
+
I, [2016-07-31T23:28:41.459807 #23080] INFO -- : Rendered inline template within layouts/application (98.6ms)
|
1222
|
+
I, [2016-07-31T23:28:41.460636 #23080] INFO -- : Completed 200 OK in 100ms (Views: 99.5ms | ActiveRecord: 0.0ms)
|
1223
|
+
I, [2016-07-31T23:28:44.405820 #23080] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:28:44 -0700
|
1224
|
+
I, [2016-07-31T23:28:44.406363 #23080] INFO -- : Processing by BaselineController#show as HTML
|
1225
|
+
I, [2016-07-31T23:28:44.406710 #23080] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1226
|
+
I, [2016-07-31T23:28:44.407126 #23080] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1227
|
+
I, [2016-07-31T23:28:44.407942 #23080] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:28:44 -0700
|
1228
|
+
I, [2016-07-31T23:28:44.408292 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1229
|
+
I, [2016-07-31T23:28:44.408328 #23080] INFO -- : Parameters: {"path"=>"page-1.html"}
|
1230
|
+
I, [2016-07-31T23:28:47.339800 #23080] INFO -- : Rendered inline template within layouts/application (1257.7ms)
|
1231
|
+
I, [2016-07-31T23:28:47.340891 #23080] INFO -- : Completed 200 OK in 2932ms (Views: 1259.0ms | ActiveRecord: 0.0ms)
|
1232
|
+
I, [2016-07-31T23:28:47.344326 #23080] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-07-31 23:28:47 -0700
|
1233
|
+
I, [2016-07-31T23:28:47.345541 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1234
|
+
I, [2016-07-31T23:28:47.345591 #23080] INFO -- : Parameters: {"path"=>"page-9999.html"}
|
1235
|
+
I, [2016-07-31T23:28:50.216075 #23080] INFO -- : Rendered inline template within layouts/application (1270.8ms)
|
1236
|
+
I, [2016-07-31T23:28:50.217375 #23080] INFO -- : Completed 200 OK in 2872ms (Views: 1272.2ms | ActiveRecord: 0.0ms)
|
1237
|
+
I, [2016-07-31T23:28:52.326406 #23080] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-07-31 23:28:52 -0700
|
1238
|
+
I, [2016-07-31T23:28:52.326982 #23080] INFO -- : Processing by BaselineController#show as HTML
|
1239
|
+
I, [2016-07-31T23:28:52.327332 #23080] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
|
1240
|
+
I, [2016-07-31T23:28:52.327734 #23080] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1241
|
+
I, [2016-07-31T23:28:52.467588 #23080] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-07-31 23:28:52 -0700
|
1242
|
+
I, [2016-07-31T23:28:52.468086 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1243
|
+
I, [2016-07-31T23:28:52.468117 #23080] INFO -- : Parameters: {"path"=>"page-1.html"}
|
1244
|
+
I, [2016-07-31T23:28:54.934103 #23080] INFO -- : Rendered inline template within layouts/application (1115.3ms)
|
1245
|
+
I, [2016-07-31T23:28:54.945598 #23080] INFO -- : Completed 200 OK in 2477ms (Views: 1116.1ms | ActiveRecord: 0.0ms)
|
1246
|
+
I, [2016-07-31T23:28:55.218076 #23080] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-07-31 23:28:55 -0700
|
1247
|
+
I, [2016-07-31T23:28:55.218581 #23080] INFO -- : Processing by Mascot::SitemapController#show as HTML
|
1248
|
+
I, [2016-07-31T23:28:55.218613 #23080] INFO -- : Parameters: {"path"=>"page-9999.html"}
|
1249
|
+
I, [2016-07-31T23:28:57.825229 #23080] INFO -- : Rendered inline template within layouts/application (1153.3ms)
|
1250
|
+
I, [2016-07-31T23:28:57.826056 #23080] INFO -- : Completed 200 OK in 2607ms (Views: 1154.2ms | ActiveRecord: 0.0ms)
|