mascot-rails 0.1.14 → 0.1.15

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2e3d24929e65ce95f9706e1b19a9c73bdd7daf7
4
- data.tar.gz: 1420175c8e4e062ea24c480cf02224a165bb77d6
3
+ metadata.gz: 00831559c0a5ba3a27c647dd9f118eba08dd7fbf
4
+ data.tar.gz: f5e2100fc8b7e5b84b35b4c9086798b9497a7089
5
5
  SHA512:
6
- metadata.gz: 495e11ae1c807812075cda07c951c7b35fb58fc40be8f5c13fd46d431a55db2b187009c43e0f9589aaaa9aa3d6468fe9200df7e5691698339ab5754573c12658
7
- data.tar.gz: a68bd323f3c6eff4acd86b0c20e7ee2daeb0a7269712b5d9fd36d80f3bb93ebdd92827bcafe97231e4af65a4d66b875a965090768d3c039c0c3c4e7f4f997ecd
6
+ metadata.gz: 7c3522193c310c705e533d76f4c23bb00c5d845aa26d5e33bae8f6e86df8e40c5d5ac2c68cb4200fbbd184b9ff51d12051a362c243e425080b2bcf4c63b8224d
7
+ data.tar.gz: 23f76d33bba0ac47395e22140aae3e7297967c9637c2a8a47cee2cc90970637e8d8c03001edbb833e865191e81aa9d9192f8679fac13270027c8f7b920be526a
@@ -0,0 +1,66 @@
1
+ module Mascot
2
+ # Serves up Mascot site pages in a rails application. This is mixed into the
3
+ # Mascot::SiteController, but may be included into other controllers for static
4
+ # page behavior.
5
+ module SitePages
6
+ extend ActiveSupport::Concern
7
+
8
+ included do
9
+ rescue_from Mascot::PageNotFoundError, with: :page_not_found
10
+ helper_method :current_page, :resources
11
+ end
12
+
13
+ def show
14
+ render inline: current_page.body,
15
+ type: current_page.asset.template_extensions.last,
16
+ layout: current_page.data.fetch("layout", controller_layout),
17
+ content_type: current_page.mime_type.to_s
18
+ end
19
+
20
+ protected
21
+ def current_page
22
+ @_current_page ||= find_resource
23
+ end
24
+
25
+ def resources
26
+ @_resources ||= root.flatten
27
+ end
28
+
29
+ def page_not_found(e)
30
+ raise ActionController::RoutingError, e.message
31
+ end
32
+
33
+ private
34
+
35
+ # Mascot::PageNotFoundError is handled in the default Mascot::SiteController
36
+ # with an execption that Rails can use to display a 404 error.
37
+ def get(path)
38
+ resource = root.get(path)
39
+ if resource.nil?
40
+ # TODO: Display error in context of Reources class root.
41
+ raise Mascot::PageNotFoundError, "No such page: #{path}"
42
+ else
43
+ resource
44
+ end
45
+ end
46
+
47
+ # Default finder of the resource for the current controller context.###
48
+ def find_resource
49
+ get params[:resource_path]
50
+ end
51
+
52
+ # Returns the current layout for the inline Mascot renderer.
53
+ def controller_layout
54
+ layout = self.send(:_layout)
55
+ if layout.instance_of? String
56
+ layout
57
+ else
58
+ File.basename(layout.identifier).split('.').first
59
+ end
60
+ end
61
+
62
+ def root
63
+ @_root ||= Mascot.configuration.root
64
+ end
65
+ end
66
+ end
@@ -1,56 +1,7 @@
1
1
  module Mascot
2
2
  class SiteController < ::ApplicationController
3
- rescue_from Mascot::PageNotFoundError, with: :page_not_found
4
-
5
- def show
6
- render inline: current_page.body,
7
- type: current_page.asset.template_extensions.last,
8
- layout: current_page.data.fetch("layout", controller_layout),
9
- content_type: current_page.mime_type.to_s
10
- end
11
-
12
- protected
13
- def current_page
14
- @_current_page ||= find_resource
15
- end
16
- helper_method :current_page
17
-
18
- def root
19
- @_root ||= Mascot.configuration.root
20
- end
21
- helper_method :root
22
-
23
- def page_not_found(e)
24
- raise ActionController::RoutingError, e.message
25
- end
26
-
27
- private
28
-
29
- # Mascot::PageNotFoundError is handled in the default Mascot::SiteController
30
- # with an execption that Rails can use to display a 404 error.
31
- def get_resource(path)
32
- resource = root.get_resource(path)
33
- if resource.nil?
34
- # TODO: Display error in context of Reources class root.
35
- raise Mascot::PageNotFoundError, "No such page: #{path}"
36
- else
37
- resource
38
- end
39
- end
40
-
41
- # Default finder of the resource for the current controller context.###
42
- def find_resource
43
- get_resource params[:resource_path]
44
- end
45
-
46
- # Returns the current layout for the inline Mascot renderer.
47
- def controller_layout
48
- layout = self.send(:_layout)
49
- if layout.instance_of? String
50
- layout
51
- else
52
- File.basename(layout.identifier).split('.').first
53
- end
54
- end
3
+ # Extracted into a module because other controllers may need
4
+ # to be capable of serving Mascot pages.
5
+ include Mascot::SitePages
55
6
  end
56
7
  end
data/lib/mascot/engine.rb CHANGED
@@ -3,5 +3,13 @@ module Mascot
3
3
  initializer "Add site root to view paths" do |app|
4
4
  ActionController::Base.prepend_view_path Mascot.configuration.site.root_path
5
5
  end
6
+
7
+ initializer "Require concerns path" do |app|
8
+ concerns_path = "app/controllers/concerns"
9
+
10
+ unless app.paths.keys.include?(concerns_path)
11
+ app.paths.add(concerns_path)
12
+ end
13
+ end
6
14
  end
7
15
  end
@@ -10,7 +10,7 @@ module Mascot
10
10
  end
11
11
 
12
12
  def process_resources(node)
13
- node.resources.each do |r|
13
+ node.flatten.each do |r|
14
14
  asset = r.asset
15
15
  if asset.path.basename.to_s.start_with? @file_name
16
16
  request_path = Pathname.new("/").join(r.request_path).dirname.cleanpath.to_s
@@ -6,7 +6,7 @@ module Mascot
6
6
  PARTIAL_PREFIX = "_".freeze
7
7
 
8
8
  def process_resources(node)
9
- node.resources.each do |r|
9
+ node.flatten.each do |r|
10
10
  r.node.remove if self.class.partial? r.asset.path # Looks like a smiley face, doesn't it?
11
11
  end
12
12
  end
@@ -4,7 +4,7 @@ module Mascot
4
4
  # resolved via /hi/there/fun.
5
5
  class RailsRequestPaths
6
6
  def process_resources(node)
7
- node.resources.each do |r|
7
+ node.flatten.each do |r|
8
8
  asset = r.asset
9
9
  request_path = r.request_path
10
10
  r.node.remove
@@ -3671,3 +3671,339 @@ I, [2016-09-03T00:11:29.392239 #18914] INFO -- : Processing by Mascot::SiteCont
3671
3671
  I, [2016-09-03T00:11:29.392273 #18914] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3672
3672
  I, [2016-09-03T00:11:31.890533 #18914] INFO -- : Rendered inline template within layouts/application (1171.7ms)
3673
3673
  I, [2016-09-03T00:11:31.891976 #18914] INFO -- : Completed 200 OK in 2500ms (Views: 1173.3ms | ActiveRecord: 0.0ms)
3674
+ I, [2016-09-05T09:28:26.318452 #48401] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 09:28:26 -0700
3675
+ I, [2016-09-05T09:28:26.338364 #48401] INFO -- : Processing by BaselineController#show as HTML
3676
+ I, [2016-09-05T09:28:26.345061 #48401] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
3677
+ I, [2016-09-05T09:28:26.351564 #48401] INFO -- : Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
3678
+ I, [2016-09-05T09:28:26.352737 #48401] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 09:28:26 -0700
3679
+ I, [2016-09-05T09:28:26.353753 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3680
+ I, [2016-09-05T09:28:26.353787 #48401] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3681
+ I, [2016-09-05T09:28:27.720824 #48401] INFO -- : Rendered inline template within layouts/application (1363.1ms)
3682
+ I, [2016-09-05T09:28:27.722897 #48401] INFO -- : Completed 200 OK in 1369ms (Views: 1366.8ms | ActiveRecord: 0.0ms)
3683
+ I, [2016-09-05T09:28:27.726295 #48401] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 09:28:27 -0700
3684
+ I, [2016-09-05T09:28:27.726930 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3685
+ I, [2016-09-05T09:28:27.726971 #48401] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3686
+ I, [2016-09-05T09:28:28.071731 #48401] INFO -- : Rendered inline template within layouts/application (343.8ms)
3687
+ I, [2016-09-05T09:28:28.073563 #48401] INFO -- : Completed 200 OK in 346ms (Views: 346.2ms | ActiveRecord: 0.0ms)
3688
+ I, [2016-09-05T09:28:28.389451 #48401] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 09:28:28 -0700
3689
+ I, [2016-09-05T09:28:28.389996 #48401] INFO -- : Processing by BaselineController#show as HTML
3690
+ I, [2016-09-05T09:28:28.390556 #48401] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3691
+ I, [2016-09-05T09:28:28.391004 #48401] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3692
+ I, [2016-09-05T09:28:28.468202 #48401] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 09:28:28 -0700
3693
+ I, [2016-09-05T09:28:28.468724 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3694
+ I, [2016-09-05T09:28:28.468758 #48401] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3695
+ I, [2016-09-05T09:28:28.651285 #48401] INFO -- : Rendered inline template within layouts/application (182.1ms)
3696
+ I, [2016-09-05T09:28:28.652302 #48401] INFO -- : Completed 200 OK in 183ms (Views: 183.2ms | ActiveRecord: 0.0ms)
3697
+ I, [2016-09-05T09:28:28.767963 #48401] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 09:28:28 -0700
3698
+ I, [2016-09-05T09:28:28.768490 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3699
+ I, [2016-09-05T09:28:28.768535 #48401] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3700
+ I, [2016-09-05T09:28:28.952980 #48401] INFO -- : Rendered inline template within layouts/application (184.0ms)
3701
+ I, [2016-09-05T09:28:28.954709 #48401] INFO -- : Completed 200 OK in 186ms (Views: 185.8ms | ActiveRecord: 0.0ms)
3702
+ I, [2016-09-05T09:28:32.195984 #48401] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 09:28:32 -0700
3703
+ I, [2016-09-05T09:28:32.196660 #48401] INFO -- : Processing by BaselineController#show as HTML
3704
+ I, [2016-09-05T09:28:32.197080 #48401] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3705
+ I, [2016-09-05T09:28:32.197586 #48401] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3706
+ I, [2016-09-05T09:28:32.198455 #48401] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 09:28:32 -0700
3707
+ I, [2016-09-05T09:28:32.198923 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3708
+ I, [2016-09-05T09:28:32.198956 #48401] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3709
+ I, [2016-09-05T09:28:35.046216 #48401] INFO -- : Rendered inline template within layouts/application (1324.3ms)
3710
+ I, [2016-09-05T09:28:35.048013 #48401] INFO -- : Completed 200 OK in 2849ms (Views: 1326.0ms | ActiveRecord: 0.0ms)
3711
+ I, [2016-09-05T09:28:35.052289 #48401] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 09:28:35 -0700
3712
+ I, [2016-09-05T09:28:35.053008 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3713
+ I, [2016-09-05T09:28:35.053049 #48401] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3714
+ I, [2016-09-05T09:28:38.168520 #48401] INFO -- : Rendered inline template within layouts/application (1368.3ms)
3715
+ I, [2016-09-05T09:28:38.170118 #48401] INFO -- : Completed 200 OK in 3117ms (Views: 1370.0ms | ActiveRecord: 0.0ms)
3716
+ I, [2016-09-05T09:28:40.424746 #48401] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 09:28:40 -0700
3717
+ I, [2016-09-05T09:28:40.425320 #48401] INFO -- : Processing by BaselineController#show as HTML
3718
+ I, [2016-09-05T09:28:40.425849 #48401] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
3719
+ I, [2016-09-05T09:28:40.426298 #48401] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3720
+ I, [2016-09-05T09:28:40.598550 #48401] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 09:28:40 -0700
3721
+ I, [2016-09-05T09:28:40.599056 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3722
+ I, [2016-09-05T09:28:40.599087 #48401] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3723
+ I, [2016-09-05T09:28:43.353106 #48401] INFO -- : Rendered inline template within layouts/application (1396.1ms)
3724
+ I, [2016-09-05T09:28:43.354061 #48401] INFO -- : Completed 200 OK in 2755ms (Views: 1397.2ms | ActiveRecord: 0.0ms)
3725
+ I, [2016-09-05T09:28:43.633763 #48401] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 09:28:43 -0700
3726
+ I, [2016-09-05T09:28:43.634305 #48401] INFO -- : Processing by Mascot::SiteController#show as HTML
3727
+ I, [2016-09-05T09:28:43.634350 #48401] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3728
+ I, [2016-09-05T09:28:46.363032 #48401] INFO -- : Rendered inline template within layouts/application (1268.5ms)
3729
+ I, [2016-09-05T09:28:46.364876 #48401] INFO -- : Completed 200 OK in 2730ms (Views: 1270.4ms | ActiveRecord: 0.0ms)
3730
+ I, [2016-09-05T22:08:44.427869 #63113] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:08:44 -0700
3731
+ I, [2016-09-05T22:08:44.444686 #63113] INFO -- : Processing by BaselineController#show as HTML
3732
+ I, [2016-09-05T22:08:44.452013 #63113] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.7ms)
3733
+ I, [2016-09-05T22:08:44.457919 #63113] INFO -- : Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
3734
+ I, [2016-09-05T22:08:44.461235 #63113] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:08:44 -0700
3735
+ I, [2016-09-05T22:08:44.462270 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3736
+ I, [2016-09-05T22:08:44.462304 #63113] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3737
+ I, [2016-09-05T22:08:46.634270 #63113] INFO -- : Rendered inline template within layouts/application (2168.3ms)
3738
+ I, [2016-09-05T22:08:46.636784 #63113] INFO -- : Completed 200 OK in 2174ms (Views: 2172.3ms | ActiveRecord: 0.0ms)
3739
+ I, [2016-09-05T22:08:46.639992 #63113] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:08:46 -0700
3740
+ I, [2016-09-05T22:08:46.640490 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3741
+ I, [2016-09-05T22:08:46.640529 #63113] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3742
+ I, [2016-09-05T22:08:46.900685 #63113] INFO -- : Rendered inline template within layouts/application (259.6ms)
3743
+ I, [2016-09-05T22:08:46.902794 #63113] INFO -- : Completed 200 OK in 262ms (Views: 261.9ms | ActiveRecord: 0.0ms)
3744
+ I, [2016-09-05T22:08:47.175995 #63113] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:08:47 -0700
3745
+ I, [2016-09-05T22:08:47.176520 #63113] INFO -- : Processing by BaselineController#show as HTML
3746
+ I, [2016-09-05T22:08:47.176881 #63113] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3747
+ I, [2016-09-05T22:08:47.177279 #63113] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3748
+ I, [2016-09-05T22:08:47.244946 #63113] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:08:47 -0700
3749
+ I, [2016-09-05T22:08:47.245414 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3750
+ I, [2016-09-05T22:08:47.245446 #63113] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3751
+ I, [2016-09-05T22:08:47.397599 #63113] INFO -- : Rendered inline template within layouts/application (151.8ms)
3752
+ I, [2016-09-05T22:08:47.398523 #63113] INFO -- : Completed 200 OK in 153ms (Views: 152.8ms | ActiveRecord: 0.0ms)
3753
+ I, [2016-09-05T22:08:47.504182 #63113] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:08:47 -0700
3754
+ I, [2016-09-05T22:08:47.504627 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3755
+ I, [2016-09-05T22:08:47.504659 #63113] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3756
+ I, [2016-09-05T22:08:47.661641 #63113] INFO -- : Rendered inline template within layouts/application (156.6ms)
3757
+ I, [2016-09-05T22:08:47.663109 #63113] INFO -- : Completed 200 OK in 158ms (Views: 158.2ms | ActiveRecord: 0.0ms)
3758
+ I, [2016-09-05T22:08:50.681430 #63113] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:08:50 -0700
3759
+ I, [2016-09-05T22:08:50.681921 #63113] INFO -- : Processing by BaselineController#show as HTML
3760
+ I, [2016-09-05T22:08:50.682485 #63113] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3761
+ I, [2016-09-05T22:08:50.682853 #63113] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3762
+ I, [2016-09-05T22:08:50.683837 #63113] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:08:50 -0700
3763
+ I, [2016-09-05T22:08:50.684167 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3764
+ I, [2016-09-05T22:08:50.684195 #63113] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3765
+ I, [2016-09-05T22:08:54.206823 #63113] INFO -- : Rendered inline template within layouts/application (2070.0ms)
3766
+ I, [2016-09-05T22:08:54.208449 #63113] INFO -- : Completed 200 OK in 3524ms (Views: 2071.8ms | ActiveRecord: 0.0ms)
3767
+ I, [2016-09-05T22:08:54.211935 #63113] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:08:54 -0700
3768
+ I, [2016-09-05T22:08:54.212433 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3769
+ I, [2016-09-05T22:08:54.212462 #63113] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3770
+ I, [2016-09-05T22:08:57.061912 #63113] INFO -- : Rendered inline template within layouts/application (1190.5ms)
3771
+ I, [2016-09-05T22:08:57.089345 #63113] INFO -- : Completed 200 OK in 2877ms (Views: 1192.0ms | ActiveRecord: 0.0ms)
3772
+ I, [2016-09-05T22:08:59.100067 #63113] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:08:59 -0700
3773
+ I, [2016-09-05T22:08:59.100579 #63113] INFO -- : Processing by BaselineController#show as HTML
3774
+ I, [2016-09-05T22:08:59.100927 #63113] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3775
+ I, [2016-09-05T22:08:59.101310 #63113] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3776
+ I, [2016-09-05T22:08:59.262327 #63113] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:08:59 -0700
3777
+ I, [2016-09-05T22:08:59.262799 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3778
+ I, [2016-09-05T22:08:59.262832 #63113] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3779
+ I, [2016-09-05T22:09:01.828536 #63113] INFO -- : Rendered inline template within layouts/application (1281.2ms)
3780
+ I, [2016-09-05T22:09:01.829397 #63113] INFO -- : Completed 200 OK in 2567ms (Views: 1282.2ms | ActiveRecord: 0.0ms)
3781
+ I, [2016-09-05T22:09:02.072160 #63113] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:09:02 -0700
3782
+ I, [2016-09-05T22:09:02.072687 #63113] INFO -- : Processing by Mascot::SiteController#show as HTML
3783
+ I, [2016-09-05T22:09:02.072725 #63113] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3784
+ I, [2016-09-05T22:09:04.615991 #63113] INFO -- : Rendered inline template within layouts/application (1201.4ms)
3785
+ I, [2016-09-05T22:09:04.616765 #63113] INFO -- : Completed 200 OK in 2544ms (Views: 1202.2ms | ActiveRecord: 0.0ms)
3786
+ I, [2016-09-05T22:17:49.711295 #63346] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:17:49 -0700
3787
+ I, [2016-09-05T22:17:49.726247 #63346] INFO -- : Processing by BaselineController#show as HTML
3788
+ I, [2016-09-05T22:17:49.732217 #63346] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
3789
+ I, [2016-09-05T22:17:49.738044 #63346] INFO -- : Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
3790
+ I, [2016-09-05T22:17:49.739129 #63346] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:17:49 -0700
3791
+ I, [2016-09-05T22:17:49.740274 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3792
+ I, [2016-09-05T22:17:49.740334 #63346] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3793
+ I, [2016-09-05T22:17:51.124973 #63346] INFO -- : Rendered inline template within layouts/application (1379.4ms)
3794
+ I, [2016-09-05T22:17:51.127033 #63346] INFO -- : Completed 200 OK in 1387ms (Views: 1383.0ms | ActiveRecord: 0.0ms)
3795
+ I, [2016-09-05T22:17:51.130892 #63346] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:17:51 -0700
3796
+ I, [2016-09-05T22:17:51.131464 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3797
+ I, [2016-09-05T22:17:51.131499 #63346] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3798
+ I, [2016-09-05T22:17:51.418340 #63346] INFO -- : Rendered inline template within layouts/application (286.4ms)
3799
+ I, [2016-09-05T22:17:51.419668 #63346] INFO -- : Completed 200 OK in 288ms (Views: 287.8ms | ActiveRecord: 0.0ms)
3800
+ I, [2016-09-05T22:17:51.701443 #63346] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:17:51 -0700
3801
+ I, [2016-09-05T22:17:51.701951 #63346] INFO -- : Processing by BaselineController#show as HTML
3802
+ I, [2016-09-05T22:17:51.702292 #63346] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3803
+ I, [2016-09-05T22:17:51.702698 #63346] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3804
+ I, [2016-09-05T22:17:51.769955 #63346] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:17:51 -0700
3805
+ I, [2016-09-05T22:17:51.770421 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3806
+ I, [2016-09-05T22:17:51.770452 #63346] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3807
+ I, [2016-09-05T22:17:51.920293 #63346] INFO -- : Rendered inline template within layouts/application (149.5ms)
3808
+ I, [2016-09-05T22:17:51.920974 #63346] INFO -- : Completed 200 OK in 150ms (Views: 150.2ms | ActiveRecord: 0.0ms)
3809
+ I, [2016-09-05T22:17:52.025566 #63346] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:17:52 -0700
3810
+ I, [2016-09-05T22:17:52.026003 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3811
+ I, [2016-09-05T22:17:52.026034 #63346] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3812
+ I, [2016-09-05T22:17:52.188713 #63346] INFO -- : Rendered inline template within layouts/application (162.3ms)
3813
+ I, [2016-09-05T22:17:52.189619 #63346] INFO -- : Completed 200 OK in 164ms (Views: 163.2ms | ActiveRecord: 0.0ms)
3814
+ I, [2016-09-05T22:17:55.119670 #63346] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:17:55 -0700
3815
+ I, [2016-09-05T22:17:55.120454 #63346] INFO -- : Processing by BaselineController#show as HTML
3816
+ I, [2016-09-05T22:17:55.120802 #63346] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3817
+ I, [2016-09-05T22:17:55.121403 #63346] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3818
+ I, [2016-09-05T22:17:55.122485 #63346] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:17:55 -0700
3819
+ I, [2016-09-05T22:17:55.122873 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3820
+ I, [2016-09-05T22:17:55.122905 #63346] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3821
+ I, [2016-09-05T22:17:57.716602 #63346] INFO -- : Rendered inline template within layouts/application (1204.4ms)
3822
+ I, [2016-09-05T22:17:57.717459 #63346] INFO -- : Completed 200 OK in 2594ms (Views: 1205.4ms | ActiveRecord: 0.0ms)
3823
+ I, [2016-09-05T22:17:57.720598 #63346] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:17:57 -0700
3824
+ I, [2016-09-05T22:17:57.721135 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3825
+ I, [2016-09-05T22:17:57.721174 #63346] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3826
+ I, [2016-09-05T22:18:00.599443 #63346] INFO -- : Rendered inline template within layouts/application (1247.6ms)
3827
+ I, [2016-09-05T22:18:00.600233 #63346] INFO -- : Completed 200 OK in 2879ms (Views: 1248.4ms | ActiveRecord: 0.0ms)
3828
+ I, [2016-09-05T22:18:02.734412 #63346] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:18:02 -0700
3829
+ I, [2016-09-05T22:18:02.735016 #63346] INFO -- : Processing by BaselineController#show as HTML
3830
+ I, [2016-09-05T22:18:02.735437 #63346] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3831
+ I, [2016-09-05T22:18:02.735926 #63346] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3832
+ I, [2016-09-05T22:18:02.893508 #63346] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:18:02 -0700
3833
+ I, [2016-09-05T22:18:02.893990 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3834
+ I, [2016-09-05T22:18:02.894022 #63346] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3835
+ I, [2016-09-05T22:18:05.421410 #63346] INFO -- : Rendered inline template within layouts/application (1247.5ms)
3836
+ I, [2016-09-05T22:18:05.422122 #63346] INFO -- : Completed 200 OK in 2528ms (Views: 1248.3ms | ActiveRecord: 0.0ms)
3837
+ I, [2016-09-05T22:18:05.664485 #63346] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:18:05 -0700
3838
+ I, [2016-09-05T22:18:05.664975 #63346] INFO -- : Processing by Mascot::SiteController#show as HTML
3839
+ I, [2016-09-05T22:18:05.665008 #63346] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3840
+ I, [2016-09-05T22:18:08.163793 #63346] INFO -- : Rendered inline template within layouts/application (1173.0ms)
3841
+ I, [2016-09-05T22:18:08.164546 #63346] INFO -- : Completed 200 OK in 2499ms (Views: 1173.9ms | ActiveRecord: 0.0ms)
3842
+ I, [2016-09-05T22:33:34.133483 #64156] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:33:34 -0700
3843
+ I, [2016-09-05T22:33:34.150450 #64156] INFO -- : Processing by BaselineController#show as HTML
3844
+ I, [2016-09-05T22:33:34.156823 #64156] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.3ms)
3845
+ I, [2016-09-05T22:33:34.162733 #64156] INFO -- : Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
3846
+ I, [2016-09-05T22:33:34.165525 #64156] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:33:34 -0700
3847
+ I, [2016-09-05T22:33:34.166553 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3848
+ I, [2016-09-05T22:33:34.166587 #64156] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3849
+ I, [2016-09-05T22:33:35.791670 #64156] INFO -- : Rendered inline template within layouts/application (1621.6ms)
3850
+ I, [2016-09-05T22:33:35.794571 #64156] INFO -- : Completed 200 OK in 1628ms (Views: 1625.8ms | ActiveRecord: 0.0ms)
3851
+ I, [2016-09-05T22:33:35.798470 #64156] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:33:35 -0700
3852
+ I, [2016-09-05T22:33:35.799518 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3853
+ I, [2016-09-05T22:33:35.799552 #64156] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3854
+ I, [2016-09-05T22:33:36.116838 #64156] INFO -- : Rendered inline template within layouts/application (316.6ms)
3855
+ I, [2016-09-05T22:33:36.118248 #64156] INFO -- : Completed 200 OK in 319ms (Views: 318.3ms | ActiveRecord: 0.0ms)
3856
+ I, [2016-09-05T22:33:36.430906 #64156] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:33:36 -0700
3857
+ I, [2016-09-05T22:33:36.431451 #64156] INFO -- : Processing by BaselineController#show as HTML
3858
+ I, [2016-09-05T22:33:36.431806 #64156] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3859
+ I, [2016-09-05T22:33:36.432214 #64156] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3860
+ I, [2016-09-05T22:33:36.505281 #64156] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:33:36 -0700
3861
+ I, [2016-09-05T22:33:36.505766 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3862
+ I, [2016-09-05T22:33:36.505799 #64156] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3863
+ I, [2016-09-05T22:33:36.671696 #64156] INFO -- : Rendered inline template within layouts/application (165.5ms)
3864
+ I, [2016-09-05T22:33:36.672629 #64156] INFO -- : Completed 200 OK in 167ms (Views: 166.5ms | ActiveRecord: 0.0ms)
3865
+ I, [2016-09-05T22:33:36.784381 #64156] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:33:36 -0700
3866
+ I, [2016-09-05T22:33:36.784834 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3867
+ I, [2016-09-05T22:33:36.784864 #64156] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3868
+ I, [2016-09-05T22:33:37.056646 #64156] INFO -- : Rendered inline template within layouts/application (271.3ms)
3869
+ I, [2016-09-05T22:33:37.062812 #64156] INFO -- : Completed 200 OK in 278ms (Views: 277.2ms | ActiveRecord: 0.0ms)
3870
+ I, [2016-09-05T22:33:40.525000 #64156] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:33:40 -0700
3871
+ I, [2016-09-05T22:33:40.525572 #64156] INFO -- : Processing by BaselineController#show as HTML
3872
+ I, [2016-09-05T22:33:40.525968 #64156] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3873
+ I, [2016-09-05T22:33:40.526600 #64156] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3874
+ I, [2016-09-05T22:33:40.527620 #64156] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:33:40 -0700
3875
+ I, [2016-09-05T22:33:40.528147 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3876
+ I, [2016-09-05T22:33:40.528181 #64156] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3877
+ I, [2016-09-05T22:33:43.512990 #64156] INFO -- : Rendered inline template within layouts/application (1433.0ms)
3878
+ I, [2016-09-05T22:33:43.514609 #64156] INFO -- : Completed 200 OK in 2986ms (Views: 1434.7ms | ActiveRecord: 0.0ms)
3879
+ I, [2016-09-05T22:33:43.517983 #64156] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:33:43 -0700
3880
+ I, [2016-09-05T22:33:43.518660 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3881
+ I, [2016-09-05T22:33:43.518694 #64156] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3882
+ I, [2016-09-05T22:33:46.692580 #64156] INFO -- : Rendered inline template within layouts/application (1379.7ms)
3883
+ I, [2016-09-05T22:33:46.694283 #64156] INFO -- : Completed 200 OK in 3176ms (Views: 1381.5ms | ActiveRecord: 0.0ms)
3884
+ I, [2016-09-05T22:33:48.966838 #64156] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-05 22:33:48 -0700
3885
+ I, [2016-09-05T22:33:48.967366 #64156] INFO -- : Processing by BaselineController#show as HTML
3886
+ I, [2016-09-05T22:33:48.967776 #64156] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.1ms)
3887
+ I, [2016-09-05T22:33:48.968198 #64156] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3888
+ I, [2016-09-05T22:33:49.133082 #64156] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-05 22:33:49 -0700
3889
+ I, [2016-09-05T22:33:49.133667 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3890
+ I, [2016-09-05T22:33:49.133701 #64156] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3891
+ I, [2016-09-05T22:33:51.924046 #64156] INFO -- : Rendered inline template within layouts/application (1368.4ms)
3892
+ I, [2016-09-05T22:33:51.925134 #64156] INFO -- : Completed 200 OK in 2791ms (Views: 1369.8ms | ActiveRecord: 0.0ms)
3893
+ I, [2016-09-05T22:33:52.196089 #64156] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-05 22:33:52 -0700
3894
+ I, [2016-09-05T22:33:52.196569 #64156] INFO -- : Processing by Mascot::SiteController#show as HTML
3895
+ I, [2016-09-05T22:33:52.196603 #64156] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3896
+ I, [2016-09-05T22:33:54.935680 #64156] INFO -- : Rendered inline template within layouts/application (1285.0ms)
3897
+ I, [2016-09-05T22:33:54.937426 #64156] INFO -- : Completed 200 OK in 2741ms (Views: 1286.7ms | ActiveRecord: 0.0ms)
3898
+ I, [2016-09-06T01:36:42.972547 #68837] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 01:36:42 -0700
3899
+ I, [2016-09-06T01:36:42.987392 #68837] INFO -- : Processing by BaselineController#show as HTML
3900
+ I, [2016-09-06T01:36:42.996074 #68837] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.5ms)
3901
+ I, [2016-09-06T01:36:43.004656 #68837] INFO -- : Completed 200 OK in 17ms (Views: 16.8ms | ActiveRecord: 0.0ms)
3902
+ I, [2016-09-06T01:36:43.008229 #68837] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 01:36:43 -0700
3903
+ I, [2016-09-06T01:36:43.009303 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3904
+ I, [2016-09-06T01:36:43.009337 #68837] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3905
+ I, [2016-09-06T01:36:44.189845 #68837] INFO -- : Rendered inline template within layouts/application (1176.8ms)
3906
+ I, [2016-09-06T01:36:44.192876 #68837] INFO -- : Completed 200 OK in 1183ms (Views: 1181.3ms | ActiveRecord: 0.0ms)
3907
+ I, [2016-09-06T01:36:44.196202 #68837] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 01:36:44 -0700
3908
+ I, [2016-09-06T01:36:44.196731 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3909
+ I, [2016-09-06T01:36:44.196761 #68837] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3910
+ I, [2016-09-06T01:36:44.470662 #68837] INFO -- : Rendered inline template within layouts/application (273.4ms)
3911
+ I, [2016-09-06T01:36:44.472272 #68837] INFO -- : Completed 200 OK in 275ms (Views: 275.1ms | ActiveRecord: 0.0ms)
3912
+ I, [2016-09-06T01:36:44.781059 #68837] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 01:36:44 -0700
3913
+ I, [2016-09-06T01:36:44.781625 #68837] INFO -- : Processing by BaselineController#show as HTML
3914
+ I, [2016-09-06T01:36:44.782039 #68837] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3915
+ I, [2016-09-06T01:36:44.782480 #68837] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3916
+ I, [2016-09-06T01:36:44.855538 #68837] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 01:36:44 -0700
3917
+ I, [2016-09-06T01:36:44.856091 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3918
+ I, [2016-09-06T01:36:44.856138 #68837] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3919
+ I, [2016-09-06T01:36:44.978761 #68837] INFO -- : Rendered inline template within layouts/application (122.2ms)
3920
+ I, [2016-09-06T01:36:44.979808 #68837] INFO -- : Completed 200 OK in 124ms (Views: 123.3ms | ActiveRecord: 0.0ms)
3921
+ I, [2016-09-06T01:36:45.074198 #68837] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 01:36:45 -0700
3922
+ I, [2016-09-06T01:36:45.074746 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3923
+ I, [2016-09-06T01:36:45.074794 #68837] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3924
+ I, [2016-09-06T01:36:45.202791 #68837] INFO -- : Rendered inline template within layouts/application (127.6ms)
3925
+ I, [2016-09-06T01:36:45.204602 #68837] INFO -- : Completed 200 OK in 130ms (Views: 129.5ms | ActiveRecord: 0.0ms)
3926
+ I, [2016-09-06T01:36:48.192128 #68837] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 01:36:48 -0700
3927
+ I, [2016-09-06T01:36:48.192642 #68837] INFO -- : Processing by BaselineController#show as HTML
3928
+ I, [2016-09-06T01:36:48.193292 #68837] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3929
+ I, [2016-09-06T01:36:48.193674 #68837] INFO -- : Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
3930
+ I, [2016-09-06T01:36:48.194892 #68837] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 01:36:48 -0700
3931
+ I, [2016-09-06T01:36:48.195259 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3932
+ I, [2016-09-06T01:36:48.195288 #68837] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3933
+ I, [2016-09-06T01:36:50.744376 #68837] INFO -- : Rendered inline template within layouts/application (1129.3ms)
3934
+ I, [2016-09-06T01:36:50.767612 #68837] INFO -- : Completed 200 OK in 2572ms (Views: 1130.8ms | ActiveRecord: 0.0ms)
3935
+ I, [2016-09-06T01:36:50.771214 #68837] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 01:36:50 -0700
3936
+ I, [2016-09-06T01:36:50.771795 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3937
+ I, [2016-09-06T01:36:50.771838 #68837] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3938
+ I, [2016-09-06T01:36:53.855567 #68837] INFO -- : Rendered inline template within layouts/application (1214.4ms)
3939
+ I, [2016-09-06T01:36:53.857873 #68837] INFO -- : Completed 200 OK in 3086ms (Views: 1216.7ms | ActiveRecord: 0.0ms)
3940
+ I, [2016-09-06T01:36:56.011359 #68837] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 01:36:56 -0700
3941
+ I, [2016-09-06T01:36:56.012003 #68837] INFO -- : Processing by BaselineController#show as HTML
3942
+ I, [2016-09-06T01:36:56.012449 #68837] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3943
+ I, [2016-09-06T01:36:56.013021 #68837] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3944
+ I, [2016-09-06T01:36:56.178487 #68837] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 01:36:56 -0700
3945
+ I, [2016-09-06T01:36:56.179043 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3946
+ I, [2016-09-06T01:36:56.179089 #68837] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3947
+ I, [2016-09-06T01:36:58.747398 #68837] INFO -- : Rendered inline template within layouts/application (1226.2ms)
3948
+ I, [2016-09-06T01:36:58.748508 #68837] INFO -- : Completed 200 OK in 2569ms (Views: 1227.4ms | ActiveRecord: 0.0ms)
3949
+ I, [2016-09-06T01:36:59.104630 #68837] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 01:36:59 -0700
3950
+ I, [2016-09-06T01:36:59.105178 #68837] INFO -- : Processing by Mascot::SiteController#show as HTML
3951
+ I, [2016-09-06T01:36:59.105235 #68837] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3952
+ I, [2016-09-06T01:37:01.895004 #68837] INFO -- : Rendered inline template within layouts/application (1278.8ms)
3953
+ I, [2016-09-06T01:37:01.896782 #68837] INFO -- : Completed 200 OK in 2791ms (Views: 1280.6ms | ActiveRecord: 0.0ms)
3954
+ I, [2016-09-06T02:09:12.039841 #69893] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 02:09:12 -0700
3955
+ I, [2016-09-06T02:09:12.055595 #69893] INFO -- : Processing by BaselineController#show as HTML
3956
+ I, [2016-09-06T02:09:12.062709 #69893] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.9ms)
3957
+ I, [2016-09-06T02:09:12.069455 #69893] INFO -- : Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
3958
+ I, [2016-09-06T02:09:12.070650 #69893] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 02:09:12 -0700
3959
+ I, [2016-09-06T02:09:12.071603 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
3960
+ I, [2016-09-06T02:09:12.071663 #69893] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3961
+ I, [2016-09-06T02:09:13.375163 #69893] INFO -- : Rendered inline template within layouts/application (1298.8ms)
3962
+ I, [2016-09-06T02:09:13.376926 #69893] INFO -- : Completed 200 OK in 1305ms (Views: 1303.1ms | ActiveRecord: 0.0ms)
3963
+ I, [2016-09-06T02:09:13.380588 #69893] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 02:09:13 -0700
3964
+ I, [2016-09-06T02:09:13.381161 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
3965
+ I, [2016-09-06T02:09:13.381194 #69893] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3966
+ I, [2016-09-06T02:09:13.658820 #69893] INFO -- : Rendered inline template within layouts/application (277.1ms)
3967
+ I, [2016-09-06T02:09:13.660197 #69893] INFO -- : Completed 200 OK in 279ms (Views: 278.5ms | ActiveRecord: 0.0ms)
3968
+ I, [2016-09-06T02:09:13.961662 #69893] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 02:09:13 -0700
3969
+ I, [2016-09-06T02:09:13.962195 #69893] INFO -- : Processing by BaselineController#show as HTML
3970
+ I, [2016-09-06T02:09:13.962554 #69893] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3971
+ I, [2016-09-06T02:09:13.962954 #69893] INFO -- : Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
3972
+ I, [2016-09-06T02:09:14.031724 #69893] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 02:09:14 -0700
3973
+ I, [2016-09-06T02:09:14.032478 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
3974
+ I, [2016-09-06T02:09:14.032542 #69893] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3975
+ I, [2016-09-06T02:09:14.169509 #69893] INFO -- : Rendered inline template within layouts/application (136.4ms)
3976
+ I, [2016-09-06T02:09:14.170461 #69893] INFO -- : Completed 200 OK in 138ms (Views: 137.5ms | ActiveRecord: 0.0ms)
3977
+ I, [2016-09-06T02:09:14.274073 #69893] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 02:09:14 -0700
3978
+ I, [2016-09-06T02:09:14.274577 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
3979
+ I, [2016-09-06T02:09:14.274621 #69893] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3980
+ I, [2016-09-06T02:09:14.436067 #69893] INFO -- : Rendered inline template within layouts/application (161.0ms)
3981
+ I, [2016-09-06T02:09:14.437587 #69893] INFO -- : Completed 200 OK in 163ms (Views: 162.6ms | ActiveRecord: 0.0ms)
3982
+ I, [2016-09-06T02:09:17.527176 #69893] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 02:09:17 -0700
3983
+ I, [2016-09-06T02:09:17.527895 #69893] INFO -- : Processing by BaselineController#show as HTML
3984
+ I, [2016-09-06T02:09:17.528236 #69893] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3985
+ I, [2016-09-06T02:09:17.528823 #69893] INFO -- : Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
3986
+ I, [2016-09-06T02:09:17.530007 #69893] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 02:09:17 -0700
3987
+ I, [2016-09-06T02:09:17.530441 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
3988
+ I, [2016-09-06T02:09:17.530482 #69893] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
3989
+ I, [2016-09-06T02:09:20.166370 #69893] INFO -- : Rendered inline template within layouts/application (1168.8ms)
3990
+ I, [2016-09-06T02:09:20.188480 #69893] INFO -- : Completed 200 OK in 2658ms (Views: 1170.5ms | ActiveRecord: 0.0ms)
3991
+ I, [2016-09-06T02:09:20.191848 #69893] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 02:09:20 -0700
3992
+ I, [2016-09-06T02:09:20.192403 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
3993
+ I, [2016-09-06T02:09:20.192443 #69893] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
3994
+ I, [2016-09-06T02:09:23.105085 #69893] INFO -- : Rendered inline template within layouts/application (1243.4ms)
3995
+ I, [2016-09-06T02:09:23.106555 #69893] INFO -- : Completed 200 OK in 2914ms (Views: 1244.9ms | ActiveRecord: 0.0ms)
3996
+ I, [2016-09-06T02:09:25.095460 #69893] INFO -- : Started GET "/baseline/render" for 127.0.0.1 at 2016-09-06 02:09:25 -0700
3997
+ I, [2016-09-06T02:09:25.096070 #69893] INFO -- : Processing by BaselineController#show as HTML
3998
+ I, [2016-09-06T02:09:25.096491 #69893] INFO -- : Rendered baseline/show.html.erb within layouts/application (0.0ms)
3999
+ I, [2016-09-06T02:09:25.096985 #69893] INFO -- : Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
4000
+ I, [2016-09-06T02:09:25.258660 #69893] INFO -- : Started GET "/page-1.html" for 127.0.0.1 at 2016-09-06 02:09:25 -0700
4001
+ I, [2016-09-06T02:09:25.259264 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
4002
+ I, [2016-09-06T02:09:25.259300 #69893] INFO -- : Parameters: {"resource_path"=>"page-1.html"}
4003
+ I, [2016-09-06T02:09:27.821317 #69893] INFO -- : Rendered inline template within layouts/application (1236.4ms)
4004
+ I, [2016-09-06T02:09:27.822218 #69893] INFO -- : Completed 200 OK in 2563ms (Views: 1237.5ms | ActiveRecord: 0.0ms)
4005
+ I, [2016-09-06T02:09:28.122971 #69893] INFO -- : Started GET "/page-9999.html" for 127.0.0.1 at 2016-09-06 02:09:28 -0700
4006
+ I, [2016-09-06T02:09:28.123440 #69893] INFO -- : Processing by Mascot::SiteController#show as HTML
4007
+ I, [2016-09-06T02:09:28.123475 #69893] INFO -- : Parameters: {"resource_path"=>"page-9999.html"}
4008
+ I, [2016-09-06T02:09:30.711438 #69893] INFO -- : Rendered inline template within layouts/application (1208.6ms)
4009
+ I, [2016-09-06T02:09:30.712898 #69893] INFO -- : Completed 200 OK in 2589ms (Views: 1210.2ms | ActiveRecord: 0.0ms)