sitepress-rails 3.0.1 → 3.1.3
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3591c53ea80a07772ac1cd0f99adb3ce860843e3c7c2812dfb74cbc9dae8612a
|
4
|
+
data.tar.gz: f64dfdb7bd9a2e36901b1698cc65f5d3b9da8d7353f2e24d545d59ca57114b32
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 302bbfa697edc84526cbc4b66ec7200338db18275ce82f2eea40162e6b92ba49842934e04bb6351e4fea6d73e05e48ffad7a7d2334b2667276cd81fd87d8288d
|
7
|
+
data.tar.gz: 5420ab9f275d7abcd680fba93d5f515cba18fbf9c805952fe09f66481a41e56639fed0431ffbb6603732005a09ca06330685a6170f83edf282140b8f99275661
|
data/lib/sitepress/model.rb
CHANGED
@@ -24,7 +24,8 @@ module Sitepress
|
|
24
24
|
to: :all
|
25
25
|
|
26
26
|
# Defines a class method that may be called later to return a
|
27
|
-
# collection of objects.
|
27
|
+
# collection of objects. The default glob, for example, is named `:all`,
|
28
|
+
# which defines `MyModel.all` on the class.
|
28
29
|
def collection(name = Models::Collection::DEFAULT_NAME, glob:, **kwargs)
|
29
30
|
define_singleton_method name do
|
30
31
|
self.glob glob, **kwargs
|
@@ -10,5 +10,10 @@ module Sitepress
|
|
10
10
|
route "sitepress_root"
|
11
11
|
route "sitepress_pages"
|
12
12
|
end
|
13
|
+
|
14
|
+
def append_sitepress_path_to_tailwind_config
|
15
|
+
inject_into_file 'config/tailwind.config.js', ",\n './app/content/**/*.{erb,haml,html,slim,rb}'",
|
16
|
+
after: " './app/views/**/*.{erb,haml,html,slim}'"
|
17
|
+
end
|
13
18
|
end
|
14
19
|
end
|
@@ -8,10 +8,4 @@ describe "Sitepress.configuration" do
|
|
8
8
|
it "has Rails.application as parent engine" do
|
9
9
|
expect(subject.parent_engine).to eql(app)
|
10
10
|
end
|
11
|
-
|
12
|
-
describe "Sitepress::Path.template_extensions" do
|
13
|
-
subject { Sitepress::Path.handler_extensions }
|
14
|
-
it { is_expected.to eql ActionView::Template::Handlers.extensions }
|
15
|
-
it { is_expected.to_not be_empty }
|
16
|
-
end
|
17
11
|
end
|
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.
|
4
|
+
version: 3.1.3
|
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-
|
11
|
+
date: 2022-09-12 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.
|
61
|
+
version: 3.1.3
|
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.
|
68
|
+
version: 3.1.3
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: railties
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -199,7 +199,6 @@ 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
|
203
202
|
- spec/dummy/public/404.html
|
204
203
|
- spec/dummy/public/422.html
|
205
204
|
- spec/dummy/public/500.html
|
@@ -239,7 +238,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
239
238
|
- !ruby/object:Gem::Version
|
240
239
|
version: '0'
|
241
240
|
requirements: []
|
242
|
-
rubygems_version: 3.3.
|
241
|
+
rubygems_version: 3.3.20
|
243
242
|
signing_key:
|
244
243
|
specification_version: 4
|
245
244
|
summary: Sitepress rails integration.
|
@@ -295,7 +294,6 @@ test_files:
|
|
295
294
|
- spec/dummy/config/secrets.yml
|
296
295
|
- spec/dummy/config/spring.rb
|
297
296
|
- spec/dummy/config.ru
|
298
|
-
- spec/dummy/log/test.log
|
299
297
|
- spec/dummy/public/404.html
|
300
298
|
- spec/dummy/public/422.html
|
301
299
|
- spec/dummy/public/500.html
|
data/spec/dummy/log/test.log
DELETED
@@ -1,296 +0,0 @@
|
|
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)
|