sitepress-rails 3.1.3 → 3.2.0

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
  SHA256:
3
- metadata.gz: 3591c53ea80a07772ac1cd0f99adb3ce860843e3c7c2812dfb74cbc9dae8612a
4
- data.tar.gz: f64dfdb7bd9a2e36901b1698cc65f5d3b9da8d7353f2e24d545d59ca57114b32
3
+ metadata.gz: 1356fbda9e34b8034c28662d8fd814c2f8bf04052f0a4f9da9215d67f51ad3ec
4
+ data.tar.gz: fa83a3e0e53b713b01ecefae60bb7c9bab99b6fdf96a60d6fadb6fb73da777d9
5
5
  SHA512:
6
- metadata.gz: 302bbfa697edc84526cbc4b66ec7200338db18275ce82f2eea40162e6b92ba49842934e04bb6351e4fea6d73e05e48ffad7a7d2334b2667276cd81fd87d8288d
7
- data.tar.gz: 5420ab9f275d7abcd680fba93d5f515cba18fbf9c805952fe09f66481a41e56639fed0431ffbb6603732005a09ca06330685a6170f83edf282140b8f99275661
6
+ metadata.gz: fe31c430a7872a636e7db6a1576965948ccf8bfe0b60b36c5aa3ab6f36593e49d8487c4c800bf130497f6d232bc6c83166f3808f50d307906e1ee8457d83d2c2
7
+ data.tar.gz: 22e56dbcf71232a3d7f6211ce4d0db8885d4401c1774e73a232597e2246fc2a1619d63394bf30d59bbb55748c8c071a4ba7759bd03e9ad6f5631d962cd0d59d2
@@ -18,6 +18,12 @@ module Sitepress
18
18
  load site_file if site_file
19
19
  end
20
20
 
21
+ # Set the path for the site configuration file.
22
+ paths.add "app/markdown", with: [
23
+ File.expand_path("./markdown"), # When Sitepress is launched via `sitepress server`.
24
+ "app/markdown" # When Sitepress is launched embedded in Rails project.
25
+ ], autoload: true
26
+
21
27
  # Load paths from `Sitepress#site` into rails so it can render views, helpers, etc. properly.
22
28
  initializer :set_sitepress_paths, before: :set_autoload_paths do |app|
23
29
  app.paths["app/helpers"].push site.helpers_path.expand_path
@@ -25,6 +31,9 @@ module Sitepress
25
31
  app.paths["app/views"].push site.root_path.expand_path
26
32
  app.paths["app/views"].push site.pages_path.expand_path
27
33
  app.paths["app/models"].push site.models_path.expand_path
34
+
35
+ # Set for view_components to load at ./components
36
+ app.config.autoload_paths << File.expand_path("./components")
28
37
  end
29
38
 
30
39
  # Configure sprockets paths for the site.
@@ -48,6 +57,7 @@ module Sitepress
48
57
  end
49
58
 
50
59
  private
60
+
51
61
  def sitepress_configuration
52
62
  Sitepress.configuration
53
63
  end
@@ -9,9 +9,12 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ["Brad Gessler"]
10
10
  spec.email = ["bradgessler@gmail.com"]
11
11
  spec.licenses = ["MIT"]
12
-
13
12
  spec.summary = %q{Sitepress rails integration.}
14
- spec.homepage = "https://github.com/sitepress/sitepress"
13
+ spec.homepage = "https://sitepress.cc/"
14
+
15
+ spec.metadata["homepage_uri"] = spec.homepage
16
+ spec.metadata["source_code_uri"] = "https://github.com/sitepress/sitepress"
17
+ spec.metadata["changelog_uri"] = "https://github.com/sitepress/sitepress/tags"
15
18
 
16
19
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
20
  spec.bindir = "exe"
@@ -0,0 +1,908 @@
1
+ Processing by Sitepress::SiteController#show as HTML
2
+ Parameters: {"resource_path"=>"time"}
3
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
4
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
5
+ Rendering inline template within layouts/sitepress_test_layout
6
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 110)
7
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 76)
8
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.8ms | Allocations: 939)
9
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.9ms | Allocations: 1133)
10
+ Rendering text template
11
+ Rendered text template (Duration: 0.0ms | Allocations: 4)
12
+ Completed 200 OK in 5ms (Views: 0.3ms | Allocations: 4330)
13
+ Processing by Sitepress::SiteController#show as HTML
14
+ Parameters: {"resource_path"=>"all_pages"}
15
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
16
+ Rendering layout layouts/application.html.erb
17
+ Rendering inline template within layouts/application
18
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 243)
19
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 405)
20
+ Rendering text template
21
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
22
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 895)
23
+ Processing by Sitepress::SiteController#show as HTML
24
+ Parameters: {"resource_path"=>"/all_pages"}
25
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
26
+ Rendering layout layouts/application.html.erb
27
+ Rendering inline template within layouts/application
28
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 263)
29
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
30
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 353)
31
+ Rendering text template
32
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
33
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1168)
34
+ Processing by Sitepress::SiteController#show as HTML
35
+ Parameters: {"resource_path"=>"/time"}
36
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
37
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
38
+ Rendering inline template within layouts/sitepress_test_layout
39
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
40
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
41
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 299)
42
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.3ms | Allocations: 346)
43
+ Rendering text template
44
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
45
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1311)
46
+ Processing by Sitepress::SiteController#show as HTML
47
+ Parameters: {"resource_path"=>"/time"}
48
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
49
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
50
+ Rendering inline template within layouts/sitepress_test_layout
51
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
52
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
53
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
54
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
55
+ Rendering text template
56
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
57
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
58
+ Processing by Sitepress::SiteController#show as HTML
59
+ Parameters: {"resource_path"=>"/time"}
60
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
61
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
62
+ Rendering inline template within layouts/sitepress_test_layout
63
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
64
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
65
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
66
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
67
+ Rendering text template
68
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
69
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
70
+ Processing by Sitepress::SiteController#show as HTML
71
+ Parameters: {"resource_path"=>"/time"}
72
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
73
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
74
+ Rendering inline template within layouts/sitepress_test_layout
75
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
76
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
77
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
78
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.1ms | Allocations: 343)
79
+ Rendering text template
80
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
81
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
82
+ Processing by Sitepress::SiteController#show as HTML
83
+ Parameters: {"resource_path"=>"/time"}
84
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
85
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
86
+ Rendering inline template within layouts/sitepress_test_layout
87
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
88
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
89
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
90
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.1ms | Allocations: 343)
91
+ Rendering text template
92
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
93
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1302)
94
+ Processing by Sitepress::SiteController#show as HTML
95
+ Parameters: {"resource_path"=>"/time"}
96
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
97
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
98
+ Rendering inline template within layouts/sitepress_test_layout
99
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
100
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
101
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
102
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
103
+ Rendering text template
104
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
105
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
106
+ Processing by Sitepress::SiteController#show as HTML
107
+ Parameters: {"resource_path"=>"/hi"}
108
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
109
+ Rendering layout layouts/application.html.erb
110
+ Rendering inline template within layouts/application
111
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 70)
112
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 115)
113
+ Rendering text template
114
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
115
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 1017)
116
+ Processing by Sitepress::SiteController#show as HTML
117
+ Parameters: {"resource_path"=>"/hi"}
118
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
119
+ Rendering layout layouts/application.html.erb
120
+ Rendering inline template within layouts/application
121
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
122
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
123
+ Rendering text template
124
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
125
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
126
+ Processing by Sitepress::SiteController#show as HTML
127
+ Parameters: {"resource_path"=>"/hi"}
128
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
129
+ Rendering layout layouts/application.html.erb
130
+ Rendering inline template within layouts/application
131
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 65)
132
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
133
+ Rendering text template
134
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
135
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
136
+ Processing by Sitepress::SiteController#show as HTML
137
+ Parameters: {"resource_path"=>"/hi"}
138
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
139
+ Rendering layout layouts/application.html.erb
140
+ Rendering inline template within layouts/application
141
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
142
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
143
+ Rendering text template
144
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
145
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
146
+ Processing by Sitepress::SiteController#show as HTML
147
+ Parameters: {"resource_path"=>"/non-existent"}
148
+ Completed 404 Not Found in 0ms (Allocations: 671)
149
+ Processing by Sitepress::SiteController#show as HTML
150
+ Parameters: {"resource_path"=>"time"}
151
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
152
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
153
+ Rendering inline template within layouts/sitepress_test_layout
154
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 110)
155
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 76)
156
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 940)
157
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.7ms | Allocations: 1134)
158
+ Rendering text template
159
+ Rendered text template (Duration: 0.0ms | Allocations: 4)
160
+ Completed 200 OK in 4ms (Views: 0.2ms | Allocations: 4332)
161
+ Processing by Sitepress::SiteController#show as HTML
162
+ Parameters: {"resource_path"=>"all_pages"}
163
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
164
+ Rendering layout layouts/application.html.erb
165
+ Rendering inline template within layouts/application
166
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 243)
167
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 405)
168
+ Rendering text template
169
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
170
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 895)
171
+ Processing by Sitepress::SiteController#show as HTML
172
+ Parameters: {"resource_path"=>"/all_pages"}
173
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
174
+ Rendering layout layouts/application.html.erb
175
+ Rendering inline template within layouts/application
176
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 263)
177
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
178
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 353)
179
+ Rendering text template
180
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
181
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1176)
182
+ Processing by Sitepress::SiteController#show as HTML
183
+ Parameters: {"resource_path"=>"/time"}
184
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
185
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
186
+ Rendering inline template within layouts/sitepress_test_layout
187
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
188
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
189
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
190
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
191
+ Rendering text template
192
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
193
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1304)
194
+ Processing by Sitepress::SiteController#show as HTML
195
+ Parameters: {"resource_path"=>"/time"}
196
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
197
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
198
+ Rendering inline template within layouts/sitepress_test_layout
199
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
200
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
201
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
202
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
203
+ Rendering text template
204
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
205
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
206
+ Processing by Sitepress::SiteController#show as HTML
207
+ Parameters: {"resource_path"=>"/time"}
208
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
209
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
210
+ Rendering inline template within layouts/sitepress_test_layout
211
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
212
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
213
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 296)
214
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
215
+ Rendering text template
216
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
217
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
218
+ Processing by Sitepress::SiteController#show as HTML
219
+ Parameters: {"resource_path"=>"/time"}
220
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
221
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
222
+ Rendering inline template within layouts/sitepress_test_layout
223
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
224
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
225
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
226
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
227
+ Rendering text template
228
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
229
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
230
+ Processing by Sitepress::SiteController#show as HTML
231
+ Parameters: {"resource_path"=>"/time"}
232
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
233
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
234
+ Rendering inline template within layouts/sitepress_test_layout
235
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
236
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
237
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
238
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
239
+ Rendering text template
240
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
241
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
242
+ Processing by Sitepress::SiteController#show as HTML
243
+ Parameters: {"resource_path"=>"/time"}
244
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
245
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
246
+ Rendering inline template within layouts/sitepress_test_layout
247
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
248
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
249
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.2ms | Allocations: 296)
250
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
251
+ Rendering text template
252
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
253
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
254
+ Processing by Sitepress::SiteController#show as HTML
255
+ Parameters: {"resource_path"=>"/non-existent"}
256
+ Completed 404 Not Found in 0ms (Allocations: 672)
257
+ Processing by Sitepress::SiteController#show as HTML
258
+ Parameters: {"resource_path"=>"/hi"}
259
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
260
+ Rendering layout layouts/application.html.erb
261
+ Rendering inline template within layouts/application
262
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 70)
263
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 115)
264
+ Rendering text template
265
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
266
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 1021)
267
+ Processing by Sitepress::SiteController#show as HTML
268
+ Parameters: {"resource_path"=>"/hi"}
269
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
270
+ Rendering layout layouts/application.html.erb
271
+ Rendering inline template within layouts/application
272
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
273
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
274
+ Rendering text template
275
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
276
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
277
+ Processing by Sitepress::SiteController#show as HTML
278
+ Parameters: {"resource_path"=>"/hi"}
279
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
280
+ Rendering layout layouts/application.html.erb
281
+ Rendering inline template within layouts/application
282
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
283
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
284
+ Rendering text template
285
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
286
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
287
+ Processing by Sitepress::SiteController#show as HTML
288
+ Parameters: {"resource_path"=>"/hi"}
289
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
290
+ Rendering layout layouts/application.html.erb
291
+ Rendering inline template within layouts/application
292
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
293
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
294
+ Rendering text template
295
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
296
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
297
+ Processing by Sitepress::SiteController#show as HTML
298
+ Parameters: {"resource_path"=>"time"}
299
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
300
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
301
+ Rendering inline template within layouts/sitepress_test_layout
302
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 110)
303
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 76)
304
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 1.1ms | Allocations: 942)
305
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.2ms | Allocations: 1136)
306
+ Rendering text template
307
+ Rendered text template (Duration: 0.0ms | Allocations: 4)
308
+ Completed 200 OK in 5ms (Views: 0.3ms | Allocations: 4336)
309
+ Processing by Sitepress::SiteController#show as HTML
310
+ Parameters: {"resource_path"=>"all_pages"}
311
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
312
+ Rendering layout layouts/application.html.erb
313
+ Rendering inline template within layouts/application
314
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 243)
315
+ Rendered layout layouts/application.html.erb (Duration: 0.3ms | Allocations: 405)
316
+ Rendering text template
317
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
318
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 895)
319
+ Processing by Sitepress::SiteController#show as HTML
320
+ Parameters: {"resource_path"=>"/all_pages"}
321
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
322
+ Rendering layout layouts/application.html.erb
323
+ Rendering inline template within layouts/application
324
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 263)
325
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
326
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 353)
327
+ Rendering text template
328
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
329
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1174)
330
+ Processing by Sitepress::SiteController#show as HTML
331
+ Parameters: {"resource_path"=>"/hi"}
332
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
333
+ Rendering layout layouts/application.html.erb
334
+ Rendering inline template within layouts/application
335
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 70)
336
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 115)
337
+ Rendering text template
338
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
339
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 1019)
340
+ Processing by Sitepress::SiteController#show as HTML
341
+ Parameters: {"resource_path"=>"/hi"}
342
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
343
+ Rendering layout layouts/application.html.erb
344
+ Rendering inline template within layouts/application
345
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
346
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
347
+ Rendering text template
348
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
349
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
350
+ Processing by Sitepress::SiteController#show as HTML
351
+ Parameters: {"resource_path"=>"/hi"}
352
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
353
+ Rendering layout layouts/application.html.erb
354
+ Rendering inline template within layouts/application
355
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
356
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
357
+ Rendering text template
358
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
359
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
360
+ Processing by Sitepress::SiteController#show as HTML
361
+ Parameters: {"resource_path"=>"/hi"}
362
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
363
+ Rendering layout layouts/application.html.erb
364
+ Rendering inline template within layouts/application
365
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
366
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
367
+ Rendering text template
368
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
369
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
370
+ Processing by Sitepress::SiteController#show as HTML
371
+ Parameters: {"resource_path"=>"/non-existent"}
372
+ Completed 404 Not Found in 0ms (Allocations: 671)
373
+ Processing by Sitepress::SiteController#show as HTML
374
+ Parameters: {"resource_path"=>"/time"}
375
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
376
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
377
+ Rendering inline template within layouts/sitepress_test_layout
378
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
379
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
380
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
381
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
382
+ Rendering text template
383
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
384
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1304)
385
+ Processing by Sitepress::SiteController#show as HTML
386
+ Parameters: {"resource_path"=>"/time"}
387
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
388
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
389
+ Rendering inline template within layouts/sitepress_test_layout
390
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
391
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
392
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
393
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
394
+ Rendering text template
395
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
396
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
397
+ Processing by Sitepress::SiteController#show as HTML
398
+ Parameters: {"resource_path"=>"/time"}
399
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
400
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
401
+ Rendering inline template within layouts/sitepress_test_layout
402
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
403
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
404
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
405
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
406
+ Rendering text template
407
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
408
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
409
+ Processing by Sitepress::SiteController#show as HTML
410
+ Parameters: {"resource_path"=>"/time"}
411
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
412
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
413
+ Rendering inline template within layouts/sitepress_test_layout
414
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
415
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
416
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
417
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
418
+ Rendering text template
419
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
420
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
421
+ Processing by Sitepress::SiteController#show as HTML
422
+ Parameters: {"resource_path"=>"/time"}
423
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
424
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
425
+ Rendering inline template within layouts/sitepress_test_layout
426
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
427
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
428
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
429
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
430
+ Rendering text template
431
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
432
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
433
+ Processing by Sitepress::SiteController#show as HTML
434
+ Parameters: {"resource_path"=>"/time"}
435
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
436
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
437
+ Rendering inline template within layouts/sitepress_test_layout
438
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
439
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
440
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
441
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
442
+ Rendering text template
443
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
444
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
445
+ Processing by Sitepress::SiteController#show as HTML
446
+ Parameters: {"resource_path"=>"time"}
447
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
448
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
449
+ Rendering inline template within layouts/sitepress_test_layout
450
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 110)
451
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 76)
452
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 1.1ms | Allocations: 941)
453
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 1.2ms | Allocations: 1135)
454
+ Rendering text template
455
+ Rendered text template (Duration: 0.0ms | Allocations: 4)
456
+ Completed 200 OK in 5ms (Views: 0.3ms | Allocations: 4331)
457
+ Processing by Sitepress::SiteController#show as HTML
458
+ Parameters: {"resource_path"=>"all_pages"}
459
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
460
+ Rendering layout layouts/application.html.erb
461
+ Rendering inline template within layouts/application
462
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 243)
463
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 405)
464
+ Rendering text template
465
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
466
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 895)
467
+ Processing by Sitepress::SiteController#show as HTML
468
+ Parameters: {"resource_path"=>"/all_pages"}
469
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
470
+ Rendering layout layouts/application.html.erb
471
+ Rendering inline template within layouts/application
472
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 263)
473
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
474
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 353)
475
+ Rendering text template
476
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
477
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1176)
478
+ Processing by Sitepress::SiteController#show as HTML
479
+ Parameters: {"resource_path"=>"/non-existent"}
480
+ Completed 404 Not Found in 0ms (Allocations: 671)
481
+ Processing by Sitepress::SiteController#show as HTML
482
+ Parameters: {"resource_path"=>"/hi"}
483
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
484
+ Rendering layout layouts/application.html.erb
485
+ Rendering inline template within layouts/application
486
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 70)
487
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 115)
488
+ Rendering text template
489
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
490
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1019)
491
+ Processing by Sitepress::SiteController#show as HTML
492
+ Parameters: {"resource_path"=>"/hi"}
493
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
494
+ Rendering layout layouts/application.html.erb
495
+ Rendering inline template within layouts/application
496
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
497
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
498
+ Rendering text template
499
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
500
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
501
+ Processing by Sitepress::SiteController#show as HTML
502
+ Parameters: {"resource_path"=>"/hi"}
503
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
504
+ Rendering layout layouts/application.html.erb
505
+ Rendering inline template within layouts/application
506
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
507
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
508
+ Rendering text template
509
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
510
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
511
+ Processing by Sitepress::SiteController#show as HTML
512
+ Parameters: {"resource_path"=>"/hi"}
513
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
514
+ Rendering layout layouts/application.html.erb
515
+ Rendering inline template within layouts/application
516
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
517
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
518
+ Rendering text template
519
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
520
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
521
+ Processing by Sitepress::SiteController#show as HTML
522
+ Parameters: {"resource_path"=>"/time"}
523
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
524
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
525
+ Rendering inline template within layouts/sitepress_test_layout
526
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
527
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
528
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
529
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
530
+ Rendering text template
531
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
532
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1304)
533
+ Processing by Sitepress::SiteController#show as HTML
534
+ Parameters: {"resource_path"=>"/time"}
535
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
536
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
537
+ Rendering inline template within layouts/sitepress_test_layout
538
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
539
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
540
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
541
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
542
+ Rendering text template
543
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
544
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
545
+ Processing by Sitepress::SiteController#show as HTML
546
+ Parameters: {"resource_path"=>"/time"}
547
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
548
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
549
+ Rendering inline template within layouts/sitepress_test_layout
550
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
551
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
552
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
553
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
554
+ Rendering text template
555
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
556
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
557
+ Processing by Sitepress::SiteController#show as HTML
558
+ Parameters: {"resource_path"=>"/time"}
559
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
560
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
561
+ Rendering inline template within layouts/sitepress_test_layout
562
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
563
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
564
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
565
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
566
+ Rendering text template
567
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
568
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
569
+ Processing by Sitepress::SiteController#show as HTML
570
+ Parameters: {"resource_path"=>"/time"}
571
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
572
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
573
+ Rendering inline template within layouts/sitepress_test_layout
574
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
575
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
576
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
577
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
578
+ Rendering text template
579
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
580
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
581
+ Processing by Sitepress::SiteController#show as HTML
582
+ Parameters: {"resource_path"=>"/time"}
583
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
584
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
585
+ Rendering inline template within layouts/sitepress_test_layout
586
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
587
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
588
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
589
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
590
+ Rendering text template
591
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
592
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
593
+ Processing by Sitepress::SiteController#show as HTML
594
+ Parameters: {"resource_path"=>"/all_pages"}
595
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
596
+ Rendering layout layouts/application.html.erb
597
+ Rendering inline template within layouts/application
598
+ Rendered inline template within layouts/application (Duration: 0.3ms | Allocations: 543)
599
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
600
+ Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 679)
601
+ Rendering text template
602
+ Rendered text template (Duration: 0.0ms | Allocations: 4)
603
+ Completed 200 OK in 4ms (Views: 0.3ms | Allocations: 4916)
604
+ Processing by Sitepress::SiteController#show as HTML
605
+ Parameters: {"resource_path"=>"/hi"}
606
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
607
+ Rendering layout layouts/application.html.erb
608
+ Rendering inline template within layouts/application
609
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 71)
610
+ Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 267)
611
+ Rendering text template
612
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
613
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1252)
614
+ Processing by Sitepress::SiteController#show as HTML
615
+ Parameters: {"resource_path"=>"/hi"}
616
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
617
+ Rendering layout layouts/application.html.erb
618
+ Rendering inline template within layouts/application
619
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
620
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
621
+ Rendering text template
622
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
623
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
624
+ Processing by Sitepress::SiteController#show as HTML
625
+ Parameters: {"resource_path"=>"/hi"}
626
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
627
+ Rendering layout layouts/application.html.erb
628
+ Rendering inline template within layouts/application
629
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
630
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
631
+ Rendering text template
632
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
633
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
634
+ Processing by Sitepress::SiteController#show as HTML
635
+ Parameters: {"resource_path"=>"/hi"}
636
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
637
+ Rendering layout layouts/application.html.erb
638
+ Rendering inline template within layouts/application
639
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
640
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
641
+ Rendering text template
642
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
643
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 1011)
644
+ Processing by Sitepress::SiteController#show as HTML
645
+ Parameters: {"resource_path"=>"/time"}
646
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
647
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
648
+ Rendering inline template within layouts/sitepress_test_layout
649
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 85)
650
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 76)
651
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 625)
652
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.7ms | Allocations: 785)
653
+ Rendering text template
654
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
655
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1894)
656
+ Processing by Sitepress::SiteController#show as HTML
657
+ Parameters: {"resource_path"=>"/time"}
658
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
659
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
660
+ Rendering inline template within layouts/sitepress_test_layout
661
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
662
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
663
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
664
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
665
+ Rendering text template
666
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
667
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
668
+ Processing by Sitepress::SiteController#show as HTML
669
+ Parameters: {"resource_path"=>"/time"}
670
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
671
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
672
+ Rendering inline template within layouts/sitepress_test_layout
673
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
674
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
675
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
676
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
677
+ Rendering text template
678
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
679
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
680
+ Processing by Sitepress::SiteController#show as HTML
681
+ Parameters: {"resource_path"=>"/time"}
682
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
683
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
684
+ Rendering inline template within layouts/sitepress_test_layout
685
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
686
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
687
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
688
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
689
+ Rendering text template
690
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
691
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
692
+ Processing by Sitepress::SiteController#show as HTML
693
+ Parameters: {"resource_path"=>"/time"}
694
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
695
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
696
+ Rendering inline template within layouts/sitepress_test_layout
697
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
698
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
699
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
700
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
701
+ Rendering text template
702
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
703
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1302)
704
+ Processing by Sitepress::SiteController#show as HTML
705
+ Parameters: {"resource_path"=>"/time"}
706
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
707
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
708
+ Rendering inline template within layouts/sitepress_test_layout
709
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
710
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
711
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
712
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.1ms | Allocations: 343)
713
+ Rendering text template
714
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
715
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1302)
716
+ Processing by Sitepress::SiteController#show as HTML
717
+ Parameters: {"resource_path"=>"/non-existent"}
718
+ Completed 404 Not Found in 0ms (Allocations: 671)
719
+ Processing by Sitepress::SiteController#show as HTML
720
+ Parameters: {"resource_path"=>"time"}
721
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
722
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
723
+ Rendering inline template within layouts/sitepress_test_layout
724
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
725
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
726
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
727
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
728
+ Rendering text template
729
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
730
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 873)
731
+ Processing by Sitepress::SiteController#show as HTML
732
+ Parameters: {"resource_path"=>"hi"}
733
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
734
+ Rendering layout layouts/application.html.erb
735
+ Rendering inline template within layouts/application
736
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 54)
737
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 96)
738
+ Rendering text template
739
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
740
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 471)
741
+ Processing by Sitepress::SiteController#show as HTML
742
+ Parameters: {"resource_path"=>"all_pages"}
743
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
744
+ Rendering layout layouts/application.html.erb
745
+ Rendering inline template within layouts/application
746
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 207)
747
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 250)
748
+ Rendering text template
749
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
750
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 662)
751
+ Processing by Sitepress::SiteController#show as HTML
752
+ Parameters: {"resource_path"=>"/all_pages"}
753
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
754
+ Rendering layout layouts/application.html.erb
755
+ Rendering inline template within layouts/application
756
+ Rendered inline template within layouts/application (Duration: 0.4ms | Allocations: 537)
757
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
758
+ Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 671)
759
+ Rendering text template
760
+ Rendered text template (Duration: 0.0ms | Allocations: 4)
761
+ Completed 200 OK in 4ms (Views: 0.3ms | Allocations: 3893)
762
+ Processing by Sitepress::SiteController#show as HTML
763
+ Parameters: {"resource_path"=>"/time"}
764
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
765
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
766
+ Rendering inline template within layouts/sitepress_test_layout
767
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.1ms | Allocations: 92)
768
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.1ms | Allocations: 76)
769
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.6ms | Allocations: 632)
770
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.8ms | Allocations: 810)
771
+ Rendering text template
772
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
773
+ Completed 200 OK in 2ms (Views: 0.1ms | Allocations: 1966)
774
+ Processing by Sitepress::SiteController#show as HTML
775
+ Parameters: {"resource_path"=>"/time"}
776
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
777
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
778
+ Rendering inline template within layouts/sitepress_test_layout
779
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
780
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
781
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
782
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
783
+ Rendering text template
784
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
785
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1274)
786
+ Processing by Sitepress::SiteController#show as HTML
787
+ Parameters: {"resource_path"=>"/time"}
788
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
789
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
790
+ Rendering inline template within layouts/sitepress_test_layout
791
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
792
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
793
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
794
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
795
+ Rendering text template
796
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
797
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1274)
798
+ Processing by Sitepress::SiteController#show as HTML
799
+ Parameters: {"resource_path"=>"/time"}
800
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
801
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
802
+ Rendering inline template within layouts/sitepress_test_layout
803
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
804
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
805
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
806
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
807
+ Rendering text template
808
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
809
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1274)
810
+ Processing by Sitepress::SiteController#show as HTML
811
+ Parameters: {"resource_path"=>"/time"}
812
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
813
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
814
+ Rendering inline template within layouts/sitepress_test_layout
815
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
816
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
817
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
818
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
819
+ Rendering text template
820
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
821
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1274)
822
+ Processing by Sitepress::SiteController#show as HTML
823
+ Parameters: {"resource_path"=>"/time"}
824
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
825
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
826
+ Rendering inline template within layouts/sitepress_test_layout
827
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
828
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
829
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
830
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
831
+ Rendering text template
832
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
833
+ Completed 200 OK in 1ms (Views: 0.0ms | Allocations: 1274)
834
+ Processing by Sitepress::SiteController#show as HTML
835
+ Parameters: {"resource_path"=>"/hi"}
836
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
837
+ Rendering layout layouts/application.html.erb
838
+ Rendering inline template within layouts/application
839
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 70)
840
+ Rendered layout layouts/application.html.erb (Duration: 0.2ms | Allocations: 240)
841
+ Rendering text template
842
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
843
+ Completed 200 OK in 1ms (Views: 0.1ms | Allocations: 1114)
844
+ Processing by Sitepress::SiteController#show as HTML
845
+ Parameters: {"resource_path"=>"/hi"}
846
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
847
+ Rendering layout layouts/application.html.erb
848
+ Rendering inline template within layouts/application
849
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
850
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
851
+ Rendering text template
852
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
853
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 983)
854
+ Processing by Sitepress::SiteController#show as HTML
855
+ Parameters: {"resource_path"=>"/hi"}
856
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
857
+ Rendering layout layouts/application.html.erb
858
+ Rendering inline template within layouts/application
859
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
860
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
861
+ Rendering text template
862
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
863
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 983)
864
+ Processing by Sitepress::SiteController#show as HTML
865
+ Parameters: {"resource_path"=>"/hi"}
866
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
867
+ Rendering layout layouts/application.html.erb
868
+ Rendering inline template within layouts/application
869
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 65)
870
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 110)
871
+ Rendering text template
872
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
873
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 983)
874
+ Processing by Sitepress::SiteController#show as HTML
875
+ Parameters: {"resource_path"=>"/non-existent"}
876
+ Completed 404 Not Found in 0ms (Allocations: 643)
877
+ Processing by Sitepress::SiteController#show as HTML
878
+ Parameters: {"resource_path"=>"time"}
879
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/time.html.erb
880
+ Rendering layout app/content/layouts/sitepress_test_layout.html.erb
881
+ Rendering inline template within layouts/sitepress_test_layout
882
+ Rendered app/content/pages/_stupid.html.erb (Duration: 0.0ms | Allocations: 7)
883
+ Rendered app/content/pages/partials/_really_stupid.html.erb (Duration: 0.0ms | Allocations: 5)
884
+ Rendered inline template within layouts/sitepress_test_layout (Duration: 0.1ms | Allocations: 296)
885
+ Rendered layout app/content/layouts/sitepress_test_layout.html.erb (Duration: 0.2ms | Allocations: 343)
886
+ Rendering text template
887
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
888
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 873)
889
+ Processing by Sitepress::SiteController#show as HTML
890
+ Parameters: {"resource_path"=>"hi"}
891
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/hi.html
892
+ Rendering layout layouts/application.html.erb
893
+ Rendering inline template within layouts/application
894
+ Rendered inline template within layouts/application (Duration: 0.0ms | Allocations: 54)
895
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 96)
896
+ Rendering text template
897
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
898
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 471)
899
+ Processing by Sitepress::SiteController#show as HTML
900
+ Parameters: {"resource_path"=>"all_pages"}
901
+ Sitepress resolved asset /Users/bradgessler/Projects/sitepress/sitepress/sitepress-rails/spec/dummy/app/content/pages/all_pages.html.erb
902
+ Rendering layout layouts/application.html.erb
903
+ Rendering inline template within layouts/application
904
+ Rendered inline template within layouts/application (Duration: 0.1ms | Allocations: 207)
905
+ Rendered layout layouts/application.html.erb (Duration: 0.1ms | Allocations: 250)
906
+ Rendering text template
907
+ Rendered text template (Duration: 0.0ms | Allocations: 1)
908
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 662)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sitepress-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.3
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Gessler
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-09-12 00:00:00.000000000 Z
11
+ date: 2022-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-rails
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - '='
60
60
  - !ruby/object:Gem::Version
61
- version: 3.1.3
61
+ version: 3.2.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - '='
67
67
  - !ruby/object:Gem::Version
68
- version: 3.1.3
68
+ version: 3.2.0
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: railties
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -199,6 +199,7 @@ files:
199
199
  - spec/dummy/config/routes.rb
200
200
  - spec/dummy/config/secrets.yml
201
201
  - spec/dummy/config/spring.rb
202
+ - spec/dummy/log/test.log
202
203
  - spec/dummy/public/404.html
203
204
  - spec/dummy/public/422.html
204
205
  - spec/dummy/public/500.html
@@ -219,10 +220,13 @@ files:
219
220
  - spec/sites/sample/pages/test.html.haml
220
221
  - spec/sites/sample/pages/text.txt
221
222
  - spec/spec_helper.rb
222
- homepage: https://github.com/sitepress/sitepress
223
+ homepage: https://sitepress.cc/
223
224
  licenses:
224
225
  - MIT
225
- metadata: {}
226
+ metadata:
227
+ homepage_uri: https://sitepress.cc/
228
+ source_code_uri: https://github.com/sitepress/sitepress
229
+ changelog_uri: https://github.com/sitepress/sitepress/tags
226
230
  post_install_message:
227
231
  rdoc_options: []
228
232
  require_paths:
@@ -238,7 +242,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
238
242
  - !ruby/object:Gem::Version
239
243
  version: '0'
240
244
  requirements: []
241
- rubygems_version: 3.3.20
245
+ rubygems_version: 3.3.7
242
246
  signing_key:
243
247
  specification_version: 4
244
248
  summary: Sitepress rails integration.
@@ -294,6 +298,7 @@ test_files:
294
298
  - spec/dummy/config/secrets.yml
295
299
  - spec/dummy/config/spring.rb
296
300
  - spec/dummy/config.ru
301
+ - spec/dummy/log/test.log
297
302
  - spec/dummy/public/404.html
298
303
  - spec/dummy/public/422.html
299
304
  - spec/dummy/public/500.html