vogue 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README.markdown +113 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/lib/vogue.rb +49 -0
- data/lib/vogue/dropdowns.rb +9 -0
- data/lib/vogue/form_builder.rb +241 -0
- data/lib/vogue/helpers.rb +29 -0
- data/lib/vogue/partial_locator.rb +22 -0
- data/lib/vogue/resource_controller_extensions.rb +36 -0
- data/lib/vogue/template_locator.rb +27 -0
- data/test/README +243 -0
- data/test/Rakefile +10 -0
- data/test/app/controllers/application_controller.rb +10 -0
- data/test/app/controllers/pants_controller.rb +7 -0
- data/test/app/controllers/posts_controller.rb +13 -0
- data/test/app/controllers/priorities_controller.rb +3 -0
- data/test/app/helpers/application_helper.rb +3 -0
- data/test/app/helpers/posts_helper.rb +2 -0
- data/test/app/helpers/priorities_helper.rb +2 -0
- data/test/app/models/post.rb +3 -0
- data/test/app/models/priority.rb +2 -0
- data/test/app/views/layouts/standard/_header.html.erb +3 -0
- data/test/app/views/layouts/standard/_specific.html.erb +1 -0
- data/test/app/views/layouts/standard/_sub_header.html.erb +3 -0
- data/test/app/views/layouts/standard/new.html.erb +5 -0
- data/test/app/views/posts/_form.html.erb +3 -0
- data/test/app/views/posts/_specific.html.erb +1 -0
- data/test/config/boot.rb +110 -0
- data/test/config/database.yml +22 -0
- data/test/config/environment.rb +48 -0
- data/test/config/environments/development.rb +17 -0
- data/test/config/environments/production.rb +28 -0
- data/test/config/environments/test.rb +28 -0
- data/test/config/initializers/backtrace_silencers.rb +7 -0
- data/test/config/initializers/inflections.rb +10 -0
- data/test/config/initializers/mime_types.rb +5 -0
- data/test/config/initializers/new_rails_defaults.rb +21 -0
- data/test/config/initializers/session_store.rb +15 -0
- data/test/config/locales/en.yml +5 -0
- data/test/config/routes.rb +47 -0
- data/test/db/development.sqlite3 +0 -0
- data/test/db/migrate/20100330233049_create_posts.rb +14 -0
- data/test/db/migrate/20100330233402_create_priorities.rb +13 -0
- data/test/db/schema.rb +28 -0
- data/test/db/seeds.rb +12 -0
- data/test/db/test.sqlite3 +0 -0
- data/test/lib/dropdowns.rb +7 -0
- data/test/log/development.log +1728 -0
- data/test/log/production.log +0 -0
- data/test/log/server.log +0 -0
- data/test/log/test.log +638 -0
- data/test/public/404.html +30 -0
- data/test/public/422.html +30 -0
- data/test/public/500.html +30 -0
- data/test/public/favicon.ico +0 -0
- data/test/public/images/rails.png +0 -0
- data/test/public/index.html +275 -0
- data/test/public/javascripts/application.js +2 -0
- data/test/public/javascripts/controls.js +963 -0
- data/test/public/javascripts/dragdrop.js +973 -0
- data/test/public/javascripts/effects.js +1128 -0
- data/test/public/javascripts/prototype.js +4320 -0
- data/test/public/robots.txt +5 -0
- data/test/script/about +4 -0
- data/test/script/console +3 -0
- data/test/script/dbconsole +3 -0
- data/test/script/destroy +3 -0
- data/test/script/generate +3 -0
- data/test/script/performance/benchmarker +3 -0
- data/test/script/performance/profiler +3 -0
- data/test/script/plugin +3 -0
- data/test/script/runner +3 -0
- data/test/script/server +3 -0
- data/test/test/blueprint.rb +8 -0
- data/test/test/fixtures/posts.yml +7 -0
- data/test/test/fixtures/priorities.yml +7 -0
- data/test/test/functional/pants_controller_test.rb +15 -0
- data/test/test/functional/posts_controller_test.rb +27 -0
- data/test/test/functional/priorities_controller_test.rb +8 -0
- data/test/test/performance/browsing_test.rb +9 -0
- data/test/test/test_helper.rb +39 -0
- data/test/test/unit/helpers/posts_helper_test.rb +4 -0
- data/test/test/unit/helpers/priorities_helper_test.rb +4 -0
- data/test/test/unit/post_test.rb +8 -0
- data/test/test/unit/priority_test.rb +8 -0
- data/vogue.gemspec +163 -0
- metadata +201 -0
|
File without changes
|
data/test/log/server.log
ADDED
|
File without changes
|
data/test/log/test.log
ADDED
|
@@ -0,0 +1,638 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
Processing PostsController#posts/new (for 0.0.0.0 at 2010-03-31 11:01:42) [GET]
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Processing PostsController#posts/new (for 0.0.0.0 at 2010-03-31 11:02:22) [GET]
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Processing PostsController#posts/new (for 0.0.0.0 at 2010-03-31 11:02:57) [GET]
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:03:32) [GET]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:04:34) [GET]
|
|
16
|
+
Rendering new
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:05:14) [GET]
|
|
20
|
+
Rendering new
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:05:43) [GET]
|
|
24
|
+
Rendering new
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:07:24) [GET]
|
|
28
|
+
Rendering new
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:07:41) [GET]
|
|
32
|
+
Rendering new
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:08:57) [GET]
|
|
36
|
+
Rendering new
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:09:21) [GET]
|
|
40
|
+
Rendering new
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:10:38) [GET]
|
|
44
|
+
Rendering new
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:10:48) [GET]
|
|
48
|
+
Rendering new
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:11:18) [GET]
|
|
52
|
+
Rendering new
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:14:13) [GET]
|
|
56
|
+
Rendering new
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:14:37) [GET]
|
|
60
|
+
Rendering new
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:14:53) [GET]
|
|
64
|
+
Rendering new
|
|
65
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
66
|
+
Rendered posts/_form (9.7ms)
|
|
67
|
+
Completed in 15ms (View: 13, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:16:31) [GET]
|
|
71
|
+
Rendering new
|
|
72
|
+
Rendered posts/_specific (0.2ms)
|
|
73
|
+
Rendered _sub_header (0.8ms)
|
|
74
|
+
Rendered _header (5.2ms)
|
|
75
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
76
|
+
Rendered posts/_form (8.0ms)
|
|
77
|
+
Completed in 27ms (View: 25, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:18:47) [GET]
|
|
81
|
+
Rendering new
|
|
82
|
+
Rendered posts/_specific (0.2ms)
|
|
83
|
+
Rendered _sub_header (0.7ms)
|
|
84
|
+
Rendered _header (5.1ms)
|
|
85
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
86
|
+
Rendered posts/_form (8.2ms)
|
|
87
|
+
Completed in 26ms (View: 25, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:18:47) [GET]
|
|
91
|
+
Rendering new
|
|
92
|
+
Rendered posts/_specific (0.1ms)
|
|
93
|
+
Rendered _sub_header (0.3ms)
|
|
94
|
+
Rendered _header (5.0ms)
|
|
95
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
96
|
+
Rendered posts/_form (1.4ms)
|
|
97
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:18:58) [GET]
|
|
101
|
+
Rendering new
|
|
102
|
+
Rendered posts/_specific (0.2ms)
|
|
103
|
+
Rendered _sub_header (0.8ms)
|
|
104
|
+
Rendered _header (5.6ms)
|
|
105
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
106
|
+
Rendered posts/_form (8.2ms)
|
|
107
|
+
Completed in 27ms (View: 25, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:18:59) [GET]
|
|
111
|
+
Rendering new
|
|
112
|
+
Rendered posts/_specific (0.1ms)
|
|
113
|
+
Rendered _sub_header (0.3ms)
|
|
114
|
+
Rendered _header (4.9ms)
|
|
115
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
116
|
+
Rendered posts/_form (1.4ms)
|
|
117
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:20:00) [GET]
|
|
121
|
+
Rendering new
|
|
122
|
+
Rendered posts/_specific (0.2ms)
|
|
123
|
+
Rendered _sub_header (0.7ms)
|
|
124
|
+
Rendered _header (5.1ms)
|
|
125
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
126
|
+
Rendered posts/_form (8.6ms)
|
|
127
|
+
Completed in 28ms (View: 26, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:20:00) [GET]
|
|
131
|
+
Rendering new
|
|
132
|
+
Rendered posts/_specific (0.1ms)
|
|
133
|
+
Rendered _sub_header (0.3ms)
|
|
134
|
+
Rendered _header (4.8ms)
|
|
135
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
136
|
+
Rendered posts/_form (1.4ms)
|
|
137
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:20:35) [GET]
|
|
141
|
+
Rendering new
|
|
142
|
+
Rendered posts/_specific (0.3ms)
|
|
143
|
+
Rendered _sub_header (1.0ms)
|
|
144
|
+
Rendered _header (5.4ms)
|
|
145
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
146
|
+
Rendered posts/_form (8.6ms)
|
|
147
|
+
Completed in 26ms (View: 25, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:20:35) [GET]
|
|
151
|
+
Rendering new
|
|
152
|
+
Rendered posts/_specific (0.1ms)
|
|
153
|
+
Rendered _sub_header (0.3ms)
|
|
154
|
+
Rendered _header (5.0ms)
|
|
155
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
156
|
+
Rendered posts/_form (1.4ms)
|
|
157
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:22:08) [GET]
|
|
161
|
+
Rendering new
|
|
162
|
+
Rendered posts/_specific (0.2ms)
|
|
163
|
+
Rendered _sub_header (0.8ms)
|
|
164
|
+
Rendered _header (5.6ms)
|
|
165
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
166
|
+
Rendered posts/_form (8.4ms)
|
|
167
|
+
Completed in 26ms (View: 25, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:22:08) [GET]
|
|
171
|
+
Rendering new
|
|
172
|
+
Rendered posts/_specific (0.1ms)
|
|
173
|
+
Rendered _sub_header (0.4ms)
|
|
174
|
+
Rendered _header (5.3ms)
|
|
175
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
176
|
+
Rendered posts/_form (1.4ms)
|
|
177
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:22:29) [GET]
|
|
181
|
+
Rendering new
|
|
182
|
+
Rendered posts/_specific (0.2ms)
|
|
183
|
+
Rendered _sub_header (0.9ms)
|
|
184
|
+
Rendered _header (5.6ms)
|
|
185
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
186
|
+
Rendered posts/_form (8.9ms)
|
|
187
|
+
Completed in 26ms (View: 25, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
188
|
+
|
|
189
|
+
|
|
190
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:22:29) [GET]
|
|
191
|
+
Rendering new
|
|
192
|
+
Rendered posts/_specific (0.1ms)
|
|
193
|
+
Rendered _sub_header (0.3ms)
|
|
194
|
+
Rendered _header (5.4ms)
|
|
195
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
196
|
+
Rendered posts/_form (1.5ms)
|
|
197
|
+
Completed in 17ms (View: 17, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:22:54) [GET]
|
|
201
|
+
Rendering new
|
|
202
|
+
Rendered posts/_specific (0.2ms)
|
|
203
|
+
Rendered _sub_header (0.8ms)
|
|
204
|
+
Rendered _header (5.1ms)
|
|
205
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
206
|
+
Rendered posts/_form (9.1ms)
|
|
207
|
+
Completed in 26ms (View: 24, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:22:54) [GET]
|
|
211
|
+
Rendering new
|
|
212
|
+
Rendered posts/_specific (0.1ms)
|
|
213
|
+
Rendered _sub_header (0.3ms)
|
|
214
|
+
Rendered _header (4.8ms)
|
|
215
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
216
|
+
Rendered posts/_form (1.3ms)
|
|
217
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:26:38) [GET]
|
|
221
|
+
Rendering new
|
|
222
|
+
Rendered posts/_specific (0.2ms)
|
|
223
|
+
Rendered _sub_header (0.8ms)
|
|
224
|
+
Rendered _header (5.5ms)
|
|
225
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
226
|
+
Rendered posts/_form (8.3ms)
|
|
227
|
+
Completed in 27ms (View: 26, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:26:38) [GET]
|
|
231
|
+
Rendering new
|
|
232
|
+
Rendered posts/_specific (0.1ms)
|
|
233
|
+
Rendered _sub_header (0.3ms)
|
|
234
|
+
Rendered _header (4.8ms)
|
|
235
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
236
|
+
Rendered posts/_form (1.3ms)
|
|
237
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:26:38) [GET]
|
|
241
|
+
Rendering new
|
|
242
|
+
Rendered posts/_specific (0.1ms)
|
|
243
|
+
Rendered _sub_header (0.3ms)
|
|
244
|
+
Rendered _header (5.0ms)
|
|
245
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
246
|
+
Rendered posts/_form (1.6ms)
|
|
247
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:28:26) [GET]
|
|
251
|
+
Rendering new
|
|
252
|
+
Rendered posts/_specific (0.2ms)
|
|
253
|
+
Rendered _sub_header (0.7ms)
|
|
254
|
+
Rendered _header (5.1ms)
|
|
255
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
256
|
+
Rendered posts/_form (9.5ms)
|
|
257
|
+
Completed in 27ms (View: 25, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:28:26) [GET]
|
|
261
|
+
Rendering new
|
|
262
|
+
Rendered posts/_specific (0.1ms)
|
|
263
|
+
Rendered _sub_header (0.3ms)
|
|
264
|
+
Rendered _header (4.9ms)
|
|
265
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
266
|
+
Rendered posts/_form (1.3ms)
|
|
267
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:28:26) [GET]
|
|
271
|
+
Rendering new
|
|
272
|
+
Rendered posts/_specific (0.1ms)
|
|
273
|
+
Rendered _sub_header (0.3ms)
|
|
274
|
+
Rendered _header (5.0ms)
|
|
275
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
276
|
+
Rendered posts/_form (1.6ms)
|
|
277
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:33) [GET]
|
|
281
|
+
Rendering new
|
|
282
|
+
Rendered posts/_specific (0.2ms)
|
|
283
|
+
Rendered _sub_header (0.8ms)
|
|
284
|
+
Rendered _header (5.5ms)
|
|
285
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
286
|
+
Rendered posts/_form (8.4ms)
|
|
287
|
+
Completed in 24ms (View: 23, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:33) [GET]
|
|
291
|
+
Rendering new
|
|
292
|
+
Rendered posts/_specific (0.1ms)
|
|
293
|
+
Rendered _sub_header (0.3ms)
|
|
294
|
+
Rendered _header (4.9ms)
|
|
295
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
296
|
+
Rendered posts/_form (1.3ms)
|
|
297
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:33) [GET]
|
|
301
|
+
Rendering new
|
|
302
|
+
Rendered posts/_specific (0.1ms)
|
|
303
|
+
Rendered _sub_header (0.3ms)
|
|
304
|
+
Rendered _header (5.0ms)
|
|
305
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
306
|
+
Rendered posts/_form (1.5ms)
|
|
307
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:33) [GET]
|
|
311
|
+
Rendering new
|
|
312
|
+
Rendered posts/_specific (0.1ms)
|
|
313
|
+
Rendered _sub_header (0.4ms)
|
|
314
|
+
Rendered _header (5.1ms)
|
|
315
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
316
|
+
Rendered posts/_form (1.4ms)
|
|
317
|
+
Completed in 70ms (View: 70, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:49) [GET]
|
|
321
|
+
Rendering new
|
|
322
|
+
Rendered posts/_specific (0.2ms)
|
|
323
|
+
Rendered _sub_header (0.7ms)
|
|
324
|
+
Rendered _header (4.8ms)
|
|
325
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
326
|
+
Rendered posts/_form (8.6ms)
|
|
327
|
+
Completed in 26ms (View: 24, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:49) [GET]
|
|
331
|
+
Rendering new
|
|
332
|
+
Rendered posts/_specific (0.1ms)
|
|
333
|
+
Rendered _sub_header (0.3ms)
|
|
334
|
+
Rendered _header (5.0ms)
|
|
335
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
336
|
+
Rendered posts/_form (1.3ms)
|
|
337
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:49) [GET]
|
|
341
|
+
Rendering new
|
|
342
|
+
Rendered posts/_specific (0.1ms)
|
|
343
|
+
Rendered _sub_header (0.3ms)
|
|
344
|
+
Rendered _header (5.0ms)
|
|
345
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
346
|
+
Rendered posts/_form (1.6ms)
|
|
347
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:29:49) [GET]
|
|
351
|
+
Rendering new
|
|
352
|
+
Rendered posts/_specific (0.1ms)
|
|
353
|
+
Rendered _sub_header (0.4ms)
|
|
354
|
+
Rendered _header (5.1ms)
|
|
355
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
356
|
+
Rendered posts/_form (1.4ms)
|
|
357
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:30:24) [GET]
|
|
361
|
+
Rendering new
|
|
362
|
+
Rendered posts/_specific (0.2ms)
|
|
363
|
+
Rendered _sub_header (0.9ms)
|
|
364
|
+
Rendered _header (5.6ms)
|
|
365
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
366
|
+
Rendered posts/_form (8.1ms)
|
|
367
|
+
Completed in 27ms (View: 24, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:30:24) [GET]
|
|
371
|
+
Rendering new
|
|
372
|
+
Rendered posts/_specific (0.1ms)
|
|
373
|
+
Rendered _sub_header (0.3ms)
|
|
374
|
+
Rendered _header (5.0ms)
|
|
375
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
376
|
+
Rendered posts/_form (1.4ms)
|
|
377
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:30:25) [GET]
|
|
381
|
+
Rendering new
|
|
382
|
+
Rendered posts/_specific (0.1ms)
|
|
383
|
+
Rendered _sub_header (0.4ms)
|
|
384
|
+
Rendered _header (5.2ms)
|
|
385
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
386
|
+
Rendered posts/_form (1.5ms)
|
|
387
|
+
Completed in 17ms (View: 17, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:30:25) [GET]
|
|
391
|
+
Rendering new
|
|
392
|
+
Rendered posts/_specific (0.1ms)
|
|
393
|
+
Rendered _sub_header (0.3ms)
|
|
394
|
+
Rendered _header (5.1ms)
|
|
395
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
396
|
+
Rendered posts/_form (1.4ms)
|
|
397
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
398
|
+
[4;36;1mPriority Load (0.6ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
399
|
+
[4;36;1mPriority Load (0.5ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
400
|
+
[4;36;1mPriority Load (0.6ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
401
|
+
[4;35;1mPriority Load (0.1ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
402
|
+
[4;36;1mPriority Load (0.7ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
403
|
+
[4;35;1mPriority Load (0.1ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:42:23) [GET]
|
|
407
|
+
Rendering new
|
|
408
|
+
Rendered posts/_specific (0.2ms)
|
|
409
|
+
Rendered _sub_header (0.7ms)
|
|
410
|
+
Rendered _header (5.0ms)
|
|
411
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
412
|
+
Rendered posts/_form (9.2ms)
|
|
413
|
+
Completed in 28ms (View: 26, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:42:23) [GET]
|
|
417
|
+
Rendering new
|
|
418
|
+
Rendered posts/_specific (0.1ms)
|
|
419
|
+
Rendered _sub_header (0.3ms)
|
|
420
|
+
Rendered _header (5.2ms)
|
|
421
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
422
|
+
Rendered posts/_form (1.4ms)
|
|
423
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:42:23) [GET]
|
|
427
|
+
Rendering new
|
|
428
|
+
Rendered posts/_specific (0.1ms)
|
|
429
|
+
Rendered _sub_header (0.4ms)
|
|
430
|
+
Rendered _header (5.3ms)
|
|
431
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
432
|
+
Rendered posts/_form (1.6ms)
|
|
433
|
+
Completed in 19ms (View: 18, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:42:23) [GET]
|
|
437
|
+
Rendering new
|
|
438
|
+
Rendered posts/_specific (0.1ms)
|
|
439
|
+
Rendered _sub_header (0.4ms)
|
|
440
|
+
Rendered _header (5.1ms)
|
|
441
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
442
|
+
Rendered posts/_form (1.4ms)
|
|
443
|
+
Completed in 17ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
444
|
+
[4;36;1mPriority Load (0.5ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
445
|
+
[4;35;1mPriority Load (0.1ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:43:24) [GET]
|
|
449
|
+
Rendering new
|
|
450
|
+
Rendered posts/_specific (0.2ms)
|
|
451
|
+
Rendered _sub_header (0.9ms)
|
|
452
|
+
Rendered _header (5.9ms)
|
|
453
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
454
|
+
Rendered posts/_form (8.4ms)
|
|
455
|
+
Completed in 28ms (View: 26, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:43:24) [GET]
|
|
459
|
+
Rendering new
|
|
460
|
+
Rendered posts/_specific (0.1ms)
|
|
461
|
+
Rendered _sub_header (0.4ms)
|
|
462
|
+
Rendered _header (5.3ms)
|
|
463
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
464
|
+
Rendered posts/_form (1.4ms)
|
|
465
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:43:24) [GET]
|
|
469
|
+
Rendering new
|
|
470
|
+
Rendered posts/_specific (0.1ms)
|
|
471
|
+
Rendered _sub_header (0.4ms)
|
|
472
|
+
Rendered _header (5.0ms)
|
|
473
|
+
[4;36;1mPriority Load (0.2ms)[0m [0;1mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
474
|
+
Rendered posts/_form (1.7ms)
|
|
475
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 11:43:24) [GET]
|
|
479
|
+
Rendering new
|
|
480
|
+
Rendered posts/_specific (0.1ms)
|
|
481
|
+
Rendered _sub_header (0.3ms)
|
|
482
|
+
Rendered _header (4.9ms)
|
|
483
|
+
[4;35;1mPriority Load (0.2ms)[0m [0mSELECT * FROM "priorities" ORDER BY level asc[0m
|
|
484
|
+
Rendered posts/_form (1.4ms)
|
|
485
|
+
Completed in 17ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 14:03:07) [GET]
|
|
489
|
+
Rendering new
|
|
490
|
+
Rendered posts/_specific (0.3ms)
|
|
491
|
+
Rendered _sub_header (1.0ms)
|
|
492
|
+
Rendered _header (6.0ms)
|
|
493
|
+
Rendered posts/_form (7.8ms)
|
|
494
|
+
Completed in 25ms (View: 24, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
495
|
+
|
|
496
|
+
|
|
497
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 14:03:07) [GET]
|
|
498
|
+
Rendering new
|
|
499
|
+
Rendered posts/_specific (0.1ms)
|
|
500
|
+
Rendered _sub_header (0.3ms)
|
|
501
|
+
Rendered _header (5.1ms)
|
|
502
|
+
Rendered posts/_form (0.7ms)
|
|
503
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 14:03:07) [GET]
|
|
507
|
+
Rendering new
|
|
508
|
+
Rendered posts/_specific (0.1ms)
|
|
509
|
+
Rendered _sub_header (0.4ms)
|
|
510
|
+
Rendered _header (5.1ms)
|
|
511
|
+
Rendered posts/_form (0.7ms)
|
|
512
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-03-31 14:03:07) [GET]
|
|
516
|
+
Rendering new
|
|
517
|
+
Rendered posts/_specific (0.1ms)
|
|
518
|
+
Rendered _sub_header (0.4ms)
|
|
519
|
+
Rendered _header (5.0ms)
|
|
520
|
+
Rendered posts/_form (0.7ms)
|
|
521
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
Processing PantsController#missing_view (for 0.0.0.0 at 2010-07-16 13:50:18) [GET]
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:19) [GET]
|
|
528
|
+
Rendering new
|
|
529
|
+
Rendered posts/_specific (0.2ms)
|
|
530
|
+
Rendered _sub_header (0.7ms)
|
|
531
|
+
Rendered _header (5.3ms)
|
|
532
|
+
Rendered posts/_form (31.9ms)
|
|
533
|
+
Completed in 48ms (View: 46, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
534
|
+
|
|
535
|
+
|
|
536
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:19) [GET]
|
|
537
|
+
Rendering new
|
|
538
|
+
Rendered posts/_specific (0.1ms)
|
|
539
|
+
Rendered _sub_header (0.3ms)
|
|
540
|
+
Rendered _header (4.9ms)
|
|
541
|
+
Rendered posts/_form (0.7ms)
|
|
542
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
543
|
+
|
|
544
|
+
|
|
545
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:19) [GET]
|
|
546
|
+
Rendering new
|
|
547
|
+
Rendered posts/_specific (0.1ms)
|
|
548
|
+
Rendered _sub_header (0.4ms)
|
|
549
|
+
Rendered _header (5.1ms)
|
|
550
|
+
Rendered posts/_form (0.9ms)
|
|
551
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:19) [GET]
|
|
555
|
+
Rendering new
|
|
556
|
+
Rendered posts/_specific (0.1ms)
|
|
557
|
+
Rendered _sub_header (0.4ms)
|
|
558
|
+
Rendered _header (5.2ms)
|
|
559
|
+
Rendered posts/_form (0.7ms)
|
|
560
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
Processing PantsController#no_view_method (for 0.0.0.0 at 2010-07-16 13:50:31) [GET]
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:31) [GET]
|
|
567
|
+
Rendering new
|
|
568
|
+
Rendered posts/_specific (0.2ms)
|
|
569
|
+
Rendered _sub_header (0.7ms)
|
|
570
|
+
Rendered _header (5.1ms)
|
|
571
|
+
Rendered posts/_form (7.9ms)
|
|
572
|
+
Completed in 25ms (View: 23, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:32) [GET]
|
|
576
|
+
Rendering new
|
|
577
|
+
Rendered posts/_specific (0.1ms)
|
|
578
|
+
Rendered _sub_header (0.3ms)
|
|
579
|
+
Rendered _header (4.9ms)
|
|
580
|
+
Rendered posts/_form (0.7ms)
|
|
581
|
+
Completed in 14ms (View: 14, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:32) [GET]
|
|
585
|
+
Rendering new
|
|
586
|
+
Rendered posts/_specific (0.1ms)
|
|
587
|
+
Rendered _sub_header (0.3ms)
|
|
588
|
+
Rendered _header (5.1ms)
|
|
589
|
+
Rendered posts/_form (0.8ms)
|
|
590
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:50:32) [GET]
|
|
594
|
+
Rendering new
|
|
595
|
+
Rendered posts/_specific (0.1ms)
|
|
596
|
+
Rendered _sub_header (0.3ms)
|
|
597
|
+
Rendered _header (4.9ms)
|
|
598
|
+
Rendered posts/_form (0.7ms)
|
|
599
|
+
Completed in 16ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
Processing PantsController#no_view_method (for 0.0.0.0 at 2010-07-16 13:51:32) [GET]
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:51:32) [GET]
|
|
606
|
+
Rendering new
|
|
607
|
+
Rendered posts/_specific (0.2ms)
|
|
608
|
+
Rendered _sub_header (0.8ms)
|
|
609
|
+
Rendered _header (5.6ms)
|
|
610
|
+
Rendered posts/_form (7.5ms)
|
|
611
|
+
Completed in 25ms (View: 24, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:51:32) [GET]
|
|
615
|
+
Rendering new
|
|
616
|
+
Rendered posts/_specific (0.1ms)
|
|
617
|
+
Rendered _sub_header (0.3ms)
|
|
618
|
+
Rendered _header (5.1ms)
|
|
619
|
+
Rendered posts/_form (0.7ms)
|
|
620
|
+
Completed in 15ms (View: 14, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:51:32) [GET]
|
|
624
|
+
Rendering new
|
|
625
|
+
Rendered posts/_specific (0.1ms)
|
|
626
|
+
Rendered _sub_header (0.3ms)
|
|
627
|
+
Rendered _header (5.1ms)
|
|
628
|
+
Rendered posts/_form (0.7ms)
|
|
629
|
+
Completed in 16ms (View: 16, DB: 0) | 200 OK [http://test.host/posts/new]
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
Processing PostsController#new (for 0.0.0.0 at 2010-07-16 13:51:32) [GET]
|
|
633
|
+
Rendering new
|
|
634
|
+
Rendered posts/_specific (0.1ms)
|
|
635
|
+
Rendered _sub_header (0.4ms)
|
|
636
|
+
Rendered _header (5.0ms)
|
|
637
|
+
Rendered posts/_form (0.7ms)
|
|
638
|
+
Completed in 15ms (View: 15, DB: 0) | 200 OK [http://test.host/posts/new]
|