angular_csrf 0.1.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.
Files changed (50) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +54 -0
  3. data/Rakefile +6 -0
  4. data/lib/angular_csrf.rb +21 -0
  5. data/lib/generators/angular_csrf/USAGE +9 -0
  6. data/lib/generators/angular_csrf/angular_csrf_generator.rb +7 -0
  7. data/lib/generators/angular_csrf/templates/angular_csrf.rb +1 -0
  8. data/lib/version.rb +3 -0
  9. data/spec/angular_csrf_spec.rb +33 -0
  10. data/spec/rails_app/Gemfile +4 -0
  11. data/spec/rails_app/Gemfile.lock +86 -0
  12. data/spec/rails_app/Rakefile +6 -0
  13. data/spec/rails_app/app/assets/javascripts/application.js +13 -0
  14. data/spec/rails_app/app/assets/stylesheets/application.css +15 -0
  15. data/spec/rails_app/app/controllers/application_controller.rb +3 -0
  16. data/spec/rails_app/app/controllers/guinea_pig_controller.rb +14 -0
  17. data/spec/rails_app/app/helpers/application_helper.rb +2 -0
  18. data/spec/rails_app/app/views/layouts/application.html.erb +14 -0
  19. data/spec/rails_app/bin/bundle +3 -0
  20. data/spec/rails_app/bin/rails +4 -0
  21. data/spec/rails_app/bin/rake +4 -0
  22. data/spec/rails_app/config/application.rb +31 -0
  23. data/spec/rails_app/config/boot.rb +4 -0
  24. data/spec/rails_app/config/environment.rb +5 -0
  25. data/spec/rails_app/config/environments/development.rb +25 -0
  26. data/spec/rails_app/config/environments/production.rb +64 -0
  27. data/spec/rails_app/config/environments/test.rb +39 -0
  28. data/spec/rails_app/config/initializers/angular_csrf.rb +1 -0
  29. data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  30. data/spec/rails_app/config/initializers/cookies_serializer.rb +3 -0
  31. data/spec/rails_app/config/initializers/filter_parameter_logging.rb +4 -0
  32. data/spec/rails_app/config/initializers/inflections.rb +16 -0
  33. data/spec/rails_app/config/initializers/mime_types.rb +4 -0
  34. data/spec/rails_app/config/initializers/session_store.rb +3 -0
  35. data/spec/rails_app/config/initializers/wrap_parameters.rb +9 -0
  36. data/spec/rails_app/config/locales/en.yml +23 -0
  37. data/spec/rails_app/config/routes.rb +5 -0
  38. data/spec/rails_app/config/secrets.yml +22 -0
  39. data/spec/rails_app/config.ru +4 -0
  40. data/spec/rails_app/db/seeds.rb +7 -0
  41. data/spec/rails_app/log/development.log +20 -0
  42. data/spec/rails_app/log/test.log +1663 -0
  43. data/spec/rails_app/public/404.html +67 -0
  44. data/spec/rails_app/public/422.html +67 -0
  45. data/spec/rails_app/public/500.html +66 -0
  46. data/spec/rails_app/public/favicon.ico +0 -0
  47. data/spec/rails_app/public/robots.txt +5 -0
  48. data/spec/rails_helper.rb +5 -0
  49. data/spec/spec_helper.rb +88 -0
  50. metadata +177 -0
@@ -0,0 +1,1663 @@
1
+ Started GET "/" for 127.0.0.1 at 2014-11-08 21:29:51 +0100
2
+ Started GET "/" for 127.0.0.1 at 2014-11-08 21:30:20 +0100
3
+ Started GET "/" for 127.0.0.1 at 2014-11-08 21:37:20 +0100
4
+ Started GET "/" for 127.0.0.1 at 2014-11-08 21:37:50 +0100
5
+ Processing by GuineaPigController#index as HTML
6
+ Completed 200 OK in 0ms
7
+ Started GET "/" for 127.0.0.1 at 2014-11-08 21:44:25 +0100
8
+ Processing by GuineaPigController#index as HTML
9
+ Completed 200 OK in 0ms
10
+ Started GET "/" for 127.0.0.1 at 2014-11-08 21:45:08 +0100
11
+ Processing by GuineaPigController#index as HTML
12
+ Completed 200 OK in 0ms
13
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:09:46 +0100
14
+ Processing by GuineaPigController#index as HTML
15
+ Completed 200 OK in 0ms
16
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:10:26 +0100
17
+ Processing by GuineaPigController#index as HTML
18
+ Completed 200 OK in 0ms
19
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:26:39 +0100
20
+ Processing by GuineaPigController#index as HTML
21
+ Completed 200 OK in 0ms
22
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:27:21 +0100
23
+ Processing by GuineaPigController#index as HTML
24
+ Completed 200 OK in 0ms
25
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:28:25 +0100
26
+ Processing by GuineaPigController#index as HTML
27
+ Completed 200 OK in 0ms
28
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:28:42 +0100
29
+ Processing by GuineaPigController#index as HTML
30
+ Completed 200 OK in 1ms
31
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:51:37 +0100
32
+ Processing by GuineaPigController#index as HTML
33
+ Completed 200 OK in 0ms
34
+ Started GET "/" for 127.0.0.1 at 2014-11-08 22:53:55 +0100
35
+ Processing by GuineaPigController#index as HTML
36
+ Completed 200 OK in 2ms
37
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:03:29 +0100
38
+ Processing by GuineaPigController#index as HTML
39
+ Completed 200 OK in 0ms
40
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:03:51 +0100
41
+ Processing by GuineaPigController#index as HTML
42
+ Completed 200 OK in 0ms
43
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:04:48 +0100
44
+ Processing by GuineaPigController#index as HTML
45
+ Completed 200 OK in 656051ms
46
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:19:05 +0100
47
+ Processing by GuineaPigController#index as HTML
48
+ Completed 200 OK in 0ms
49
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:19:12 +0100
50
+ Processing by GuineaPigController#index as HTML
51
+ Completed 200 OK in 0ms
52
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:19:34 +0100
53
+ Processing by GuineaPigController#index as HTML
54
+ Completed 200 OK in 0ms
55
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:21:39 +0100
56
+ Processing by GuineaPigController#index as HTML
57
+ Completed 200 OK in 7ms
58
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:21:59 +0100
59
+ Processing by GuineaPigController#index as HTML
60
+ Completed 200 OK in 7ms
61
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:23:04 +0100
62
+ Processing by GuineaPigController#index as HTML
63
+ Completed 200 OK in 6ms
64
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:23:41 +0100
65
+ Processing by GuineaPigController#index as HTML
66
+ Completed 200 OK in 8ms
67
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:23:47 +0100
68
+ Processing by GuineaPigController#index as HTML
69
+ Completed 200 OK in 7ms
70
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:24:02 +0100
71
+ Processing by GuineaPigController#index as HTML
72
+ Completed 200 OK in 6ms
73
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:24:14 +0100
74
+ Processing by GuineaPigController#index as HTML
75
+ Completed 200 OK in 7ms
76
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:24:51 +0100
77
+ Processing by GuineaPigController#index as HTML
78
+ Completed 200 OK in 8ms
79
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:06 +0100
80
+ Processing by GuineaPigController#index as HTML
81
+ Completed 200 OK in 7ms
82
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:06 +0100
83
+ Processing by GuineaPigController#index as HTML
84
+ Completed 200 OK in 0ms
85
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:21 +0100
86
+ Processing by GuineaPigController#index as HTML
87
+ Completed 200 OK in 6ms
88
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:21 +0100
89
+ Processing by GuineaPigController#index as HTML
90
+ Completed 200 OK in 0ms
91
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:38 +0100
92
+ Processing by GuineaPigController#index as HTML
93
+ Completed 200 OK in 6ms
94
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:25:38 +0100
95
+ Processing by GuineaPigController#create as HTML
96
+ Can't verify CSRF token authenticity
97
+ Completed 422 Unprocessable Entity in 0ms
98
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:38 +0100
99
+ Processing by GuineaPigController#index as HTML
100
+ Completed 200 OK in 0ms
101
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:49 +0100
102
+ Processing by GuineaPigController#index as HTML
103
+ Completed 200 OK in 7ms
104
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:25:49 +0100
105
+ Processing by GuineaPigController#create as HTML
106
+ Parameters: {"name"=>""}
107
+ Can't verify CSRF token authenticity
108
+ Completed 422 Unprocessable Entity in 0ms
109
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:25:49 +0100
110
+ Processing by GuineaPigController#index as HTML
111
+ Completed 200 OK in 0ms
112
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:26:13 +0100
113
+ Processing by GuineaPigController#index as HTML
114
+ Completed 200 OK in 6ms
115
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:26:13 +0100
116
+ Processing by GuineaPigController#create as HTML
117
+ Parameters: {"name"=>""}
118
+ Can't verify CSRF token authenticity
119
+ Completed 422 Unprocessable Entity in 0ms
120
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:26:13 +0100
121
+ Processing by GuineaPigController#index as HTML
122
+ Completed 200 OK in 0ms
123
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:26:32 +0100
124
+ Processing by GuineaPigController#index as HTML
125
+ Completed 200 OK in 8ms
126
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:26:32 +0100
127
+ Processing by GuineaPigController#index as HTML
128
+ Completed 200 OK in 0ms
129
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:26:54 +0100
130
+ Processing by GuineaPigController#index as HTML
131
+ Completed 200 OK in 6ms
132
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:26:54 +0100
133
+ Processing by GuineaPigController#index as HTML
134
+ Completed 200 OK in 0ms
135
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:27:25 +0100
136
+ Processing by GuineaPigController#index as HTML
137
+ Completed 200 OK in 7ms
138
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:27:25 +0100
139
+ Processing by GuineaPigController#create as HTML
140
+ Parameters: {"name"=>"Swift", "age"=>"2"}
141
+ Completed 201 Created in 0ms
142
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:27:25 +0100
143
+ Processing by GuineaPigController#index as HTML
144
+ Completed 200 OK in 0ms
145
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:28:22 +0100
146
+ Processing by GuineaPigController#index as HTML
147
+ Completed 200 OK in 7ms
148
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:28:22 +0100
149
+ Processing by GuineaPigController#create as HTML
150
+ Parameters: {"name"=>"Swift", "age"=>"2"}
151
+ Completed 201 Created in 0ms
152
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:28:22 +0100
153
+ Processing by GuineaPigController#index as HTML
154
+ Completed 200 OK in 0ms
155
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:28:48 +0100
156
+ Processing by GuineaPigController#index as HTML
157
+ Completed 200 OK in 7ms
158
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:28:48 +0100
159
+ Processing by GuineaPigController#create as HTML
160
+ Parameters: {"name"=>"Swift", "age"=>"2"}
161
+ Completed 201 Created in 0ms
162
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:28:48 +0100
163
+ Processing by GuineaPigController#index as HTML
164
+ Completed 200 OK in 0ms
165
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:28:57 +0100
166
+ Processing by GuineaPigController#index as HTML
167
+ Completed 200 OK in 7ms
168
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:28:57 +0100
169
+ Processing by GuineaPigController#create as HTML
170
+ Parameters: {"name"=>"Swift", "age"=>"2"}
171
+ Completed 201 Created in 0ms
172
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:28:57 +0100
173
+ Processing by GuineaPigController#index as HTML
174
+ Completed 200 OK in 0ms
175
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:28:57 +0100
176
+ Processing by GuineaPigController#index as HTML
177
+ Completed 200 OK in 0ms
178
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:28:57 +0100
179
+ Processing by GuineaPigController#create as HTML
180
+ Parameters: {"name"=>"Swift", "age"=>"2"}
181
+ Completed 201 Created in 0ms
182
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:29:06 +0100
183
+ Processing by GuineaPigController#index as HTML
184
+ Completed 200 OK in 6ms
185
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:29:06 +0100
186
+ Processing by GuineaPigController#index as HTML
187
+ Completed 200 OK in 0ms
188
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:29:06 +0100
189
+ Processing by GuineaPigController#create as HTML
190
+ Parameters: {"name"=>"Swift", "age"=>"2"}
191
+ Completed 201 Created in 0ms
192
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:29:06 +0100
193
+ Processing by GuineaPigController#index as HTML
194
+ Completed 200 OK in 0ms
195
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:29:06 +0100
196
+ Processing by GuineaPigController#create as HTML
197
+ Parameters: {"name"=>"Swift", "age"=>"2"}
198
+ Completed 201 Created in 0ms
199
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:30:49 +0100
200
+ Processing by GuineaPigController#index as HTML
201
+ Completed 200 OK in 8ms
202
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:30:49 +0100
203
+ Processing by GuineaPigController#index as HTML
204
+ Completed 200 OK in 0ms
205
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:30:49 +0100
206
+ Processing by GuineaPigController#create as HTML
207
+ Parameters: {"name"=>"Swift", "age"=>"2"}
208
+ Completed 201 Created in 0ms
209
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:30:49 +0100
210
+ Processing by GuineaPigController#index as HTML
211
+ Completed 200 OK in 0ms
212
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:07 +0100
213
+ Processing by GuineaPigController#index as HTML
214
+ Completed 200 OK in 7ms
215
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:07 +0100
216
+ Processing by GuineaPigController#create as HTML
217
+ Parameters: {"name"=>"Swift", "age"=>"2"}
218
+ Completed 201 Created in 0ms
219
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:07 +0100
220
+ Processing by GuineaPigController#index as HTML
221
+ Completed 200 OK in 0ms
222
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:07 +0100
223
+ Processing by GuineaPigController#create as HTML
224
+ Parameters: {"name"=>"Swift", "age"=>"2"}
225
+ Completed 201 Created in 0ms
226
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:07 +0100
227
+ Processing by GuineaPigController#index as HTML
228
+ Completed 200 OK in 0ms
229
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:30 +0100
230
+ Processing by GuineaPigController#index as HTML
231
+ Completed 200 OK in 6ms
232
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:30 +0100
233
+ Processing by GuineaPigController#index as HTML
234
+ Completed 200 OK in 0ms
235
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:30 +0100
236
+ Processing by GuineaPigController#create as HTML
237
+ Parameters: {"name"=>"Swift", "age"=>"2"}
238
+ Completed 201 Created in 0ms
239
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:30 +0100
240
+ Processing by GuineaPigController#index as HTML
241
+ Completed 200 OK in 0ms
242
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:30 +0100
243
+ Processing by GuineaPigController#create as HTML
244
+ Parameters: {"name"=>"Swift", "age"=>"2"}
245
+ Completed 201 Created in 0ms
246
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:35 +0100
247
+ Processing by GuineaPigController#index as HTML
248
+ Completed 200 OK in 7ms
249
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:35 +0100
250
+ Processing by GuineaPigController#create as HTML
251
+ Parameters: {"name"=>"Swift", "age"=>"2"}
252
+ Completed 201 Created in 0ms
253
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:35 +0100
254
+ Processing by GuineaPigController#index as HTML
255
+ Completed 200 OK in 0ms
256
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:35 +0100
257
+ Processing by GuineaPigController#index as HTML
258
+ Completed 200 OK in 0ms
259
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:35 +0100
260
+ Processing by GuineaPigController#create as HTML
261
+ Parameters: {"name"=>"Swift", "age"=>"2"}
262
+ Completed 201 Created in 0ms
263
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:48 +0100
264
+ Processing by GuineaPigController#index as HTML
265
+ Completed 200 OK in 7ms
266
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:48 +0100
267
+ Processing by GuineaPigController#create as HTML
268
+ Parameters: {"name"=>"Swift", "age"=>"2"}
269
+ Completed 201 Created in 0ms
270
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:48 +0100
271
+ Processing by GuineaPigController#index as HTML
272
+ Completed 200 OK in 0ms
273
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:48 +0100
274
+ Processing by GuineaPigController#create as HTML
275
+ Parameters: {"name"=>"Swift", "age"=>"2"}
276
+ Completed 201 Created in 0ms
277
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:48 +0100
278
+ Processing by GuineaPigController#index as HTML
279
+ Completed 200 OK in 0ms
280
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:58 +0100
281
+ Processing by GuineaPigController#index as HTML
282
+ Completed 200 OK in 7ms
283
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:59 +0100
284
+ Processing by GuineaPigController#create as HTML
285
+ Parameters: {"name"=>"Swift", "age"=>"2"}
286
+ Completed 201 Created in 0ms
287
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:59 +0100
288
+ Processing by GuineaPigController#index as HTML
289
+ Completed 200 OK in 0ms
290
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:31:59 +0100
291
+ Processing by GuineaPigController#create as HTML
292
+ Parameters: {"name"=>"Swift", "age"=>"2"}
293
+ Completed 201 Created in 0ms
294
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:31:59 +0100
295
+ Processing by GuineaPigController#index as HTML
296
+ Completed 200 OK in 0ms
297
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:03 +0100
298
+ Processing by GuineaPigController#index as HTML
299
+ Completed 200 OK in 8ms
300
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:03 +0100
301
+ Processing by GuineaPigController#index as HTML
302
+ Completed 200 OK in 0ms
303
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:32:03 +0100
304
+ Processing by GuineaPigController#create as HTML
305
+ Parameters: {"name"=>"Swift", "age"=>"2"}
306
+ Completed 201 Created in 0ms
307
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:03 +0100
308
+ Processing by GuineaPigController#index as HTML
309
+ Completed 200 OK in 0ms
310
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:32:03 +0100
311
+ Processing by GuineaPigController#create as HTML
312
+ Parameters: {"name"=>"Swift", "age"=>"2"}
313
+ Completed 201 Created in 0ms
314
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:20 +0100
315
+ Processing by GuineaPigController#index as HTML
316
+ Completed 200 OK in 7ms
317
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:32:20 +0100
318
+ Processing by GuineaPigController#create as HTML
319
+ Parameters: {"name"=>"Swift", "age"=>"2"}
320
+ Completed 201 Created in 0ms
321
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:20 +0100
322
+ Processing by GuineaPigController#index as HTML
323
+ Completed 200 OK in 0ms
324
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:20 +0100
325
+ Processing by GuineaPigController#index as HTML
326
+ Completed 200 OK in 0ms
327
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:32:20 +0100
328
+ Processing by GuineaPigController#create as HTML
329
+ Parameters: {"name"=>"Swift", "age"=>"2"}
330
+ Completed 201 Created in 0ms
331
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:25 +0100
332
+ Processing by GuineaPigController#index as HTML
333
+ Completed 200 OK in 7ms
334
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:32:25 +0100
335
+ Processing by GuineaPigController#create as HTML
336
+ Parameters: {"name"=>"Swift", "age"=>"2"}
337
+ Completed 201 Created in 0ms
338
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:25 +0100
339
+ Processing by GuineaPigController#index as HTML
340
+ Completed 200 OK in 0ms
341
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:32:25 +0100
342
+ Processing by GuineaPigController#index as HTML
343
+ Completed 200 OK in 0ms
344
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:32:25 +0100
345
+ Processing by GuineaPigController#create as HTML
346
+ Parameters: {"name"=>"Swift", "age"=>"2"}
347
+ Completed 201 Created in 0ms
348
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:05 +0100
349
+ Processing by GuineaPigController#index as HTML
350
+ Completed 200 OK in 7ms
351
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:05 +0100
352
+ Processing by GuineaPigController#create as HTML
353
+ Parameters: {"name"=>"Swift", "age"=>"2"}
354
+ Completed 201 Created in 0ms
355
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:05 +0100
356
+ Processing by GuineaPigController#index as HTML
357
+ Completed 200 OK in 0ms
358
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:05 +0100
359
+ Processing by GuineaPigController#index as HTML
360
+ Completed 200 OK in 0ms
361
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:05 +0100
362
+ Processing by GuineaPigController#create as HTML
363
+ Parameters: {"name"=>"Swift", "age"=>"2"}
364
+ Completed 201 Created in 0ms
365
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:13 +0100
366
+ Processing by GuineaPigController#index as HTML
367
+ Completed 200 OK in 6ms
368
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:13 +0100
369
+ Processing by GuineaPigController#create as HTML
370
+ Parameters: {"name"=>"Swift", "age"=>"2"}
371
+ Completed 201 Created in 0ms
372
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:13 +0100
373
+ Processing by GuineaPigController#index as HTML
374
+ Completed 200 OK in 0ms
375
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:13 +0100
376
+ Processing by GuineaPigController#create as HTML
377
+ Parameters: {"name"=>"Swift", "age"=>"2"}
378
+ Completed 201 Created in 0ms
379
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:13 +0100
380
+ Processing by GuineaPigController#index as HTML
381
+ Completed 200 OK in 0ms
382
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:28 +0100
383
+ Processing by GuineaPigController#index as HTML
384
+ Completed 200 OK in 8ms
385
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:28 +0100
386
+ Processing by GuineaPigController#create as HTML
387
+ Parameters: {"name"=>"Swift", "age"=>"2"}
388
+ Completed 201 Created in 0ms
389
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:28 +0100
390
+ Processing by GuineaPigController#index as HTML
391
+ Completed 200 OK in 0ms
392
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:28 +0100
393
+ Processing by GuineaPigController#create as HTML
394
+ Parameters: {"name"=>"Swift", "age"=>"2"}
395
+ Completed 201 Created in 0ms
396
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:28 +0100
397
+ Processing by GuineaPigController#index as HTML
398
+ Completed 200 OK in 0ms
399
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:39 +0100
400
+ Processing by GuineaPigController#index as HTML
401
+ Completed 200 OK in 7ms
402
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:39 +0100
403
+ Processing by GuineaPigController#create as HTML
404
+ Parameters: {"name"=>"Swift", "age"=>"2"}
405
+ Completed 201 Created in 0ms
406
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:39 +0100
407
+ Processing by GuineaPigController#index as HTML
408
+ Completed 200 OK in 0ms
409
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:39 +0100
410
+ Processing by GuineaPigController#create as HTML
411
+ Parameters: {"name"=>"Swift", "age"=>"2"}
412
+ Completed 201 Created in 0ms
413
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:39 +0100
414
+ Processing by GuineaPigController#index as HTML
415
+ Completed 200 OK in 0ms
416
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:48 +0100
417
+ Processing by GuineaPigController#index as HTML
418
+ Completed 200 OK in 7ms
419
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:48 +0100
420
+ Processing by GuineaPigController#index as HTML
421
+ Completed 200 OK in 0ms
422
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:48 +0100
423
+ Processing by GuineaPigController#create as HTML
424
+ Parameters: {"name"=>"Swift", "age"=>"2"}
425
+ Completed 201 Created in 0ms
426
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:34:48 +0100
427
+ Processing by GuineaPigController#index as HTML
428
+ Completed 200 OK in 0ms
429
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:34:48 +0100
430
+ Processing by GuineaPigController#create as HTML
431
+ Parameters: {"name"=>"Swift", "age"=>"2"}
432
+ Completed 201 Created in 0ms
433
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:15 +0100
434
+ Processing by GuineaPigController#index as HTML
435
+ Completed 200 OK in 6ms
436
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:15 +0100
437
+ Processing by GuineaPigController#index as HTML
438
+ Completed 200 OK in 0ms
439
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:35:15 +0100
440
+ Processing by GuineaPigController#create as HTML
441
+ Parameters: {"name"=>"Swift", "age"=>"2"}
442
+ Completed 201 Created in 0ms
443
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:15 +0100
444
+ Processing by GuineaPigController#index as HTML
445
+ Completed 200 OK in 0ms
446
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:35:15 +0100
447
+ Processing by GuineaPigController#create as HTML
448
+ Parameters: {"name"=>"Swift", "age"=>"2"}
449
+ Completed 201 Created in 0ms
450
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:31 +0100
451
+ Processing by GuineaPigController#index as HTML
452
+ Completed 200 OK in 7ms
453
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:35:31 +0100
454
+ Processing by GuineaPigController#create as HTML
455
+ Parameters: {"name"=>"Swift", "age"=>"2"}
456
+ Completed 201 Created in 0ms
457
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:31 +0100
458
+ Processing by GuineaPigController#index as HTML
459
+ Completed 200 OK in 0ms
460
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:35:31 +0100
461
+ Processing by GuineaPigController#create as HTML
462
+ Parameters: {"name"=>"Swift", "age"=>"2"}
463
+ Completed 201 Created in 0ms
464
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:31 +0100
465
+ Processing by GuineaPigController#index as HTML
466
+ Completed 200 OK in 0ms
467
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:36 +0100
468
+ Processing by GuineaPigController#index as HTML
469
+ Completed 200 OK in 7ms
470
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:35:36 +0100
471
+ Processing by GuineaPigController#create as HTML
472
+ Parameters: {"name"=>"Swift", "age"=>"2"}
473
+ Completed 201 Created in 0ms
474
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:36 +0100
475
+ Processing by GuineaPigController#index as HTML
476
+ Completed 200 OK in 0ms
477
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:35:36 +0100
478
+ Processing by GuineaPigController#create as HTML
479
+ Parameters: {"name"=>"Swift", "age"=>"2"}
480
+ Completed 201 Created in 0ms
481
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:35:36 +0100
482
+ Processing by GuineaPigController#index as HTML
483
+ Completed 200 OK in 0ms
484
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:03 +0100
485
+ Processing by GuineaPigController#index as HTML
486
+ Completed 200 OK in 6ms
487
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:03 +0100
488
+ Processing by GuineaPigController#index as HTML
489
+ Completed 200 OK in 0ms
490
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:03 +0100
491
+ Processing by GuineaPigController#create as HTML
492
+ Parameters: {"name"=>"Swift", "age"=>"2"}
493
+ Completed 201 Created in 0ms
494
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:03 +0100
495
+ Processing by GuineaPigController#index as HTML
496
+ Completed 200 OK in 0ms
497
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:03 +0100
498
+ Processing by GuineaPigController#create as HTML
499
+ Parameters: {"name"=>"Swift", "age"=>"2"}
500
+ Completed 201 Created in 0ms
501
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:07 +0100
502
+ Processing by GuineaPigController#index as HTML
503
+ Completed 200 OK in 6ms
504
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:07 +0100
505
+ Processing by GuineaPigController#create as HTML
506
+ Parameters: {"name"=>"Swift", "age"=>"2"}
507
+ Completed 201 Created in 0ms
508
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:07 +0100
509
+ Processing by GuineaPigController#index as HTML
510
+ Completed 200 OK in 0ms
511
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:07 +0100
512
+ Processing by GuineaPigController#index as HTML
513
+ Completed 200 OK in 0ms
514
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:07 +0100
515
+ Processing by GuineaPigController#create as HTML
516
+ Parameters: {"name"=>"Swift", "age"=>"2"}
517
+ Completed 201 Created in 0ms
518
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:26 +0100
519
+ Processing by GuineaPigController#index as HTML
520
+ Completed 200 OK in 7ms
521
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:26 +0100
522
+ Processing by GuineaPigController#index as HTML
523
+ Completed 200 OK in 0ms
524
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:26 +0100
525
+ Processing by GuineaPigController#index as HTML
526
+ Completed 200 OK in 0ms
527
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:26 +0100
528
+ Processing by GuineaPigController#create as HTML
529
+ Parameters: {"name"=>"Swift", "age"=>"2"}
530
+ Completed 201 Created in 0ms
531
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:31 +0100
532
+ Processing by GuineaPigController#index as HTML
533
+ Completed 200 OK in 7ms
534
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:31 +0100
535
+ Processing by GuineaPigController#create as HTML
536
+ Parameters: {"name"=>"Swift", "age"=>"2"}
537
+ Completed 201 Created in 0ms
538
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:31 +0100
539
+ Processing by GuineaPigController#index as HTML
540
+ Completed 200 OK in 0ms
541
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:31 +0100
542
+ Processing by GuineaPigController#create as HTML
543
+ Parameters: {"name"=>"Swift", "age"=>"2"}
544
+ Completed 201 Created in 0ms
545
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:31 +0100
546
+ Processing by GuineaPigController#index as HTML
547
+ Completed 200 OK in 0ms
548
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:52 +0100
549
+ Processing by GuineaPigController#index as HTML
550
+ Completed 200 OK in 7ms
551
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:52 +0100
552
+ Processing by GuineaPigController#index as HTML
553
+ Completed 200 OK in 0ms
554
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:52 +0100
555
+ Processing by GuineaPigController#create as HTML
556
+ Parameters: {"name"=>"Swift", "age"=>"2"}
557
+ Completed 201 Created in 0ms
558
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:36:52 +0100
559
+ Processing by GuineaPigController#index as HTML
560
+ Completed 200 OK in 0ms
561
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:36:52 +0100
562
+ Processing by GuineaPigController#create as HTML
563
+ Parameters: {"name"=>"Swift", "age"=>"2"}
564
+ Completed 201 Created in 0ms
565
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:14 +0100
566
+ Processing by GuineaPigController#index as HTML
567
+ Completed 200 OK in 7ms
568
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:37:14 +0100
569
+ Processing by GuineaPigController#create as HTML
570
+ Parameters: {"name"=>"Swift", "age"=>"2"}
571
+ Completed 201 Created in 0ms
572
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:14 +0100
573
+ Processing by GuineaPigController#index as HTML
574
+ Completed 200 OK in 0ms
575
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:37:14 +0100
576
+ Processing by GuineaPigController#create as HTML
577
+ Parameters: {"name"=>"Swift", "age"=>"2"}
578
+ Completed 201 Created in 0ms
579
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:14 +0100
580
+ Processing by GuineaPigController#index as HTML
581
+ Completed 200 OK in 0ms
582
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:43 +0100
583
+ Processing by GuineaPigController#index as HTML
584
+ Completed 200 OK in 6ms
585
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:37:43 +0100
586
+ Processing by GuineaPigController#create as HTML
587
+ Parameters: {"name"=>"Swift", "age"=>"2"}
588
+ Completed 201 Created in 0ms
589
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:43 +0100
590
+ Processing by GuineaPigController#index as HTML
591
+ Completed 200 OK in 0ms
592
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:37:43 +0100
593
+ Processing by GuineaPigController#create as HTML
594
+ Parameters: {"name"=>"Swift", "age"=>"2"}
595
+ Completed 201 Created in 0ms
596
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:43 +0100
597
+ Processing by GuineaPigController#index as HTML
598
+ Completed 200 OK in 0ms
599
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:47 +0100
600
+ Processing by GuineaPigController#index as HTML
601
+ Completed 200 OK in 7ms
602
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:47 +0100
603
+ Processing by GuineaPigController#index as HTML
604
+ Completed 200 OK in 0ms
605
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:37:47 +0100
606
+ Processing by GuineaPigController#create as HTML
607
+ Parameters: {"name"=>"Swift", "age"=>"2"}
608
+ Completed 201 Created in 0ms
609
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:37:47 +0100
610
+ Processing by GuineaPigController#index as HTML
611
+ Completed 200 OK in 0ms
612
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:37:47 +0100
613
+ Processing by GuineaPigController#create as HTML
614
+ Parameters: {"name"=>"Swift", "age"=>"2"}
615
+ Completed 201 Created in 0ms
616
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:38:37 +0100
617
+ Processing by GuineaPigController#index as HTML
618
+ Completed 200 OK in 9ms
619
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:38:37 +0100
620
+ Processing by GuineaPigController#index as HTML
621
+ Completed 200 OK in 0ms
622
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:38:37 +0100
623
+ Processing by GuineaPigController#create as HTML
624
+ Parameters: {"name"=>"Swift", "age"=>"2"}
625
+ Completed 201 Created in 0ms
626
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:38:37 +0100
627
+ Processing by GuineaPigController#index as HTML
628
+ Completed 200 OK in 0ms
629
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:38:37 +0100
630
+ Processing by GuineaPigController#create as HTML
631
+ Parameters: {"name"=>"Swift", "age"=>"2"}
632
+ Completed 201 Created in 0ms
633
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:25 +0100
634
+ Processing by GuineaPigController#index as HTML
635
+ Completed 200 OK in 6ms
636
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:25 +0100
637
+ Processing by GuineaPigController#create as HTML
638
+ Parameters: {"name"=>"Swift", "age"=>"2"}
639
+ Completed 201 Created in 0ms
640
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:25 +0100
641
+ Processing by GuineaPigController#index as HTML
642
+ Completed 200 OK in 0ms
643
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:25 +0100
644
+ Processing by GuineaPigController#index as HTML
645
+ Completed 200 OK in 0ms
646
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:25 +0100
647
+ Processing by GuineaPigController#create as HTML
648
+ Parameters: {"name"=>"Swift", "age"=>"2"}
649
+ Completed 201 Created in 0ms
650
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:35 +0100
651
+ Processing by GuineaPigController#index as HTML
652
+ Completed 200 OK in 7ms
653
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:35 +0100
654
+ Processing by GuineaPigController#create as HTML
655
+ Parameters: {"name"=>"Swift", "age"=>"2"}
656
+ Completed 201 Created in 1ms
657
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:35 +0100
658
+ Processing by GuineaPigController#index as HTML
659
+ Completed 200 OK in 0ms
660
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:35 +0100
661
+ Processing by GuineaPigController#index as HTML
662
+ Completed 200 OK in 0ms
663
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:35 +0100
664
+ Processing by GuineaPigController#create as HTML
665
+ Parameters: {"name"=>"Swift", "age"=>"2"}
666
+ Completed 201 Created in 0ms
667
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:52 +0100
668
+ Processing by GuineaPigController#index as HTML
669
+ Completed 200 OK in 6ms
670
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:52 +0100
671
+ Processing by GuineaPigController#create as HTML
672
+ Parameters: {"name"=>"Swift", "age"=>"2"}
673
+ Completed 201 Created in 0ms
674
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:52 +0100
675
+ Processing by GuineaPigController#index as HTML
676
+ Completed 200 OK in 0ms
677
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:52 +0100
678
+ Processing by GuineaPigController#create as HTML
679
+ Parameters: {"name"=>"Swift", "age"=>"2"}
680
+ Completed 201 Created in 0ms
681
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:52 +0100
682
+ Processing by GuineaPigController#index as HTML
683
+ Completed 200 OK in 0ms
684
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:59 +0100
685
+ Processing by GuineaPigController#index as HTML
686
+ Completed 200 OK in 7ms
687
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:59 +0100
688
+ Processing by GuineaPigController#create as HTML
689
+ Parameters: {"name"=>"Swift", "age"=>"2"}
690
+ Completed 201 Created in 0ms
691
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:59 +0100
692
+ Processing by GuineaPigController#index as HTML
693
+ Completed 200 OK in 0ms
694
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:39:59 +0100
695
+ Processing by GuineaPigController#create as HTML
696
+ Parameters: {"name"=>"Swift", "age"=>"2"}
697
+ Completed 201 Created in 0ms
698
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:59 +0100
699
+ Processing by GuineaPigController#index as HTML
700
+ Completed 200 OK in 0ms
701
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:39:59 +0100
702
+ Processing by GuineaPigController#index as HTML
703
+ Completed 200 OK in 0ms
704
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:16 +0100
705
+ Processing by GuineaPigController#index as HTML
706
+ Completed 200 OK in 8ms
707
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:16 +0100
708
+ Processing by GuineaPigController#create as HTML
709
+ Parameters: {"name"=>"Swift", "age"=>"2"}
710
+ Completed 201 Created in 0ms
711
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:16 +0100
712
+ Processing by GuineaPigController#index as HTML
713
+ Completed 200 OK in 0ms
714
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:16 +0100
715
+ Processing by GuineaPigController#create as HTML
716
+ Parameters: {"name"=>"Swift", "age"=>"2"}
717
+ Completed 201 Created in 0ms
718
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:16 +0100
719
+ Processing by GuineaPigController#index as HTML
720
+ Completed 200 OK in 0ms
721
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:16 +0100
722
+ Processing by GuineaPigController#index as HTML
723
+ Completed 200 OK in 0ms
724
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:16 +0100
725
+ Processing by GuineaPigController#index as HTML
726
+ Completed 200 OK in 0ms
727
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:32 +0100
728
+ Processing by GuineaPigController#index as HTML
729
+ Completed 200 OK in 8ms
730
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:32 +0100
731
+ Processing by GuineaPigController#create as HTML
732
+ Parameters: {"name"=>"Swift", "age"=>"2"}
733
+ Completed 201 Created in 0ms
734
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:32 +0100
735
+ Processing by GuineaPigController#index as HTML
736
+ Completed 200 OK in 0ms
737
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:32 +0100
738
+ Processing by GuineaPigController#create as HTML
739
+ Parameters: {"name"=>"Swift", "age"=>"2"}
740
+ Completed 201 Created in 0ms
741
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:32 +0100
742
+ Processing by GuineaPigController#index as HTML
743
+ Completed 200 OK in 0ms
744
+ Started GET "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:40:32 +0100
745
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:32 +0100
746
+ Processing by GuineaPigController#index as HTML
747
+ Completed 200 OK in 0ms
748
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
749
+ Processing by GuineaPigController#index as HTML
750
+ Completed 200 OK in 8ms
751
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
752
+ Processing by GuineaPigController#create as HTML
753
+ Parameters: {"name"=>"Swift", "age"=>"2"}
754
+ Completed 201 Created in 0ms
755
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
756
+ Processing by GuineaPigController#index as HTML
757
+ Completed 200 OK in 0ms
758
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
759
+ Processing by GuineaPigController#create as HTML
760
+ Parameters: {"name"=>"Swift", "age"=>"2"}
761
+ Completed 201 Created in 0ms
762
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
763
+ Processing by GuineaPigController#index as HTML
764
+ Completed 200 OK in 0ms
765
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
766
+ Processing by GuineaPigController#index as HTML
767
+ Completed 200 OK in 0ms
768
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
769
+ Processing by GuineaPigController#create as HTML
770
+ Parameters: {"name"=>"Swift", "age"=>"2"}
771
+ Completed 201 Created in 0ms
772
+ Started GET "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:40:44 +0100
773
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
774
+ Processing by GuineaPigController#index as HTML
775
+ Completed 200 OK in 7ms
776
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
777
+ Processing by GuineaPigController#index as HTML
778
+ Completed 200 OK in 0ms
779
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
780
+ Processing by GuineaPigController#create as HTML
781
+ Parameters: {"name"=>"Swift", "age"=>"2"}
782
+ Completed 201 Created in 0ms
783
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
784
+ Processing by GuineaPigController#index as HTML
785
+ Completed 200 OK in 0ms
786
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
787
+ Processing by GuineaPigController#create as HTML
788
+ Parameters: {"name"=>"Swift", "age"=>"2"}
789
+ Completed 201 Created in 0ms
790
+ Started GET "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
791
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
792
+ Processing by GuineaPigController#index as HTML
793
+ Completed 200 OK in 0ms
794
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:40:55 +0100
795
+ Processing by GuineaPigController#create as HTML
796
+ Completed 201 Created in 0ms
797
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
798
+ Processing by GuineaPigController#index as HTML
799
+ Completed 200 OK in 8ms
800
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
801
+ Processing by GuineaPigController#create as HTML
802
+ Parameters: {"name"=>"Swift", "age"=>"2"}
803
+ Completed 201 Created in 0ms
804
+ Started GET "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
805
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
806
+ Processing by GuineaPigController#index as HTML
807
+ Completed 200 OK in 0ms
808
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
809
+ Processing by GuineaPigController#create as HTML
810
+ Completed 201 Created in 0ms
811
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
812
+ Processing by GuineaPigController#index as HTML
813
+ Completed 200 OK in 0ms
814
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
815
+ Processing by GuineaPigController#index as HTML
816
+ Completed 200 OK in 0ms
817
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:02 +0100
818
+ Processing by GuineaPigController#create as HTML
819
+ Completed 201 Created in 0ms
820
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
821
+ Processing by GuineaPigController#index as HTML
822
+ Completed 200 OK in 7ms
823
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
824
+ Processing by GuineaPigController#create as HTML
825
+ Completed 201 Created in 0ms
826
+ Started GET "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
827
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
828
+ Processing by GuineaPigController#index as HTML
829
+ Completed 200 OK in 0ms
830
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
831
+ Processing by GuineaPigController#create as HTML
832
+ Completed 201 Created in 0ms
833
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
834
+ Processing by GuineaPigController#index as HTML
835
+ Completed 200 OK in 0ms
836
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
837
+ Processing by GuineaPigController#index as HTML
838
+ Completed 200 OK in 0ms
839
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:07 +0100
840
+ Processing by GuineaPigController#create as HTML
841
+ Completed 201 Created in 0ms
842
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
843
+ Processing by GuineaPigController#index as HTML
844
+ Completed 200 OK in 8ms
845
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
846
+ Processing by GuineaPigController#create as HTML
847
+ Completed 201 Created in 0ms
848
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
849
+ Processing by GuineaPigController#create_and_reset_session as HTML
850
+ Can't verify CSRF token authenticity
851
+ Completed 422 Unprocessable Entity in 0ms
852
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
853
+ Processing by GuineaPigController#index as HTML
854
+ Completed 200 OK in 0ms
855
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
856
+ Processing by GuineaPigController#create as HTML
857
+ Completed 201 Created in 0ms
858
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
859
+ Processing by GuineaPigController#index as HTML
860
+ Completed 200 OK in 0ms
861
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
862
+ Processing by GuineaPigController#index as HTML
863
+ Completed 200 OK in 0ms
864
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:20 +0100
865
+ Processing by GuineaPigController#create as HTML
866
+ Completed 201 Created in 0ms
867
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:42 +0100
868
+ Processing by GuineaPigController#index as HTML
869
+ Completed 200 OK in 6ms
870
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:42 +0100
871
+ Processing by GuineaPigController#index as HTML
872
+ Completed 200 OK in 0ms
873
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:42 +0100
874
+ Processing by GuineaPigController#create as HTML
875
+ Parameters: {"name"=>"Swift", "age"=>"2"}
876
+ Completed 201 Created in 0ms
877
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:42 +0100
878
+ Processing by GuineaPigController#index as HTML
879
+ Completed 200 OK in 0ms
880
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:42 +0100
881
+ Processing by GuineaPigController#index as HTML
882
+ Completed 200 OK in 0ms
883
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:42 +0100
884
+ Processing by GuineaPigController#create as HTML
885
+ Parameters: {"name"=>"Swift", "age"=>"2"}
886
+ Completed 201 Created in 0ms
887
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:45 +0100
888
+ Processing by GuineaPigController#index as HTML
889
+ Completed 200 OK in 8ms
890
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:45 +0100
891
+ Processing by GuineaPigController#create as HTML
892
+ Parameters: {"name"=>"Swift", "age"=>"2"}
893
+ Completed 201 Created in 0ms
894
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:45 +0100
895
+ Processing by GuineaPigController#index as HTML
896
+ Completed 200 OK in 0ms
897
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:45 +0100
898
+ Processing by GuineaPigController#index as HTML
899
+ Completed 200 OK in 0ms
900
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:45 +0100
901
+ Processing by GuineaPigController#index as HTML
902
+ Completed 200 OK in 0ms
903
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:45 +0100
904
+ Processing by GuineaPigController#create as HTML
905
+ Parameters: {"name"=>"Swift", "age"=>"2"}
906
+ Completed 201 Created in 0ms
907
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
908
+ Processing by GuineaPigController#index as HTML
909
+ Completed 200 OK in 7ms
910
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
911
+ Processing by GuineaPigController#index as HTML
912
+ Completed 200 OK in 0ms
913
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
914
+ Processing by GuineaPigController#create as HTML
915
+ Completed 201 Created in 0ms
916
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
917
+ Processing by GuineaPigController#index as HTML
918
+ Completed 200 OK in 0ms
919
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
920
+ Processing by GuineaPigController#create as HTML
921
+ Completed 201 Created in 0ms
922
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
923
+ Processing by GuineaPigController#index as HTML
924
+ Completed 200 OK in 0ms
925
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
926
+ Processing by GuineaPigController#create as HTML
927
+ Completed 201 Created in 0ms
928
+ Started GET "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:41:56 +0100
929
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
930
+ Processing by GuineaPigController#index as HTML
931
+ Completed 200 OK in 8ms
932
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
933
+ Processing by GuineaPigController#create as HTML
934
+ Completed 201 Created in 0ms
935
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
936
+ Processing by GuineaPigController#index as HTML
937
+ Completed 200 OK in 0ms
938
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
939
+ Processing by GuineaPigController#index as HTML
940
+ Completed 200 OK in 0ms
941
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
942
+ Processing by GuineaPigController#create as HTML
943
+ Completed 201 Created in 0ms
944
+ Started GET "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
945
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
946
+ Processing by GuineaPigController#index as HTML
947
+ Completed 200 OK in 0ms
948
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:26 +0100
949
+ Processing by GuineaPigController#create as HTML
950
+ Completed 201 Created in 1ms
951
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
952
+ Processing by GuineaPigController#index as HTML
953
+ Completed 200 OK in 6ms
954
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
955
+ Processing by GuineaPigController#create as HTML
956
+ Completed 201 Created in 0ms
957
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
958
+ Processing by GuineaPigController#index as HTML
959
+ Completed 200 OK in 0ms
960
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
961
+ Processing by GuineaPigController#create as HTML
962
+ Completed 201 Created in 0ms
963
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
964
+ Processing by GuineaPigController#index as HTML
965
+ Completed 200 OK in 0ms
966
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
967
+ Processing by GuineaPigController#index as HTML
968
+ Completed 200 OK in 0ms
969
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
970
+ Processing by GuineaPigController#create as HTML
971
+ Completed 201 Created in 0ms
972
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:42:42 +0100
973
+ Processing by GuineaPigController#create_and_reset_session as HTML
974
+ Can't verify CSRF token authenticity
975
+ Completed 422 Unprocessable Entity in 0ms
976
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
977
+ Processing by GuineaPigController#index as HTML
978
+ Completed 200 OK in 8ms
979
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
980
+ Processing by GuineaPigController#create as HTML
981
+ Completed 201 Created in 0ms
982
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
983
+ Processing by GuineaPigController#create_and_reset_session as HTML
984
+ Can't verify CSRF token authenticity
985
+ Completed 422 Unprocessable Entity in 0ms
986
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
987
+ Processing by GuineaPigController#index as HTML
988
+ Completed 200 OK in 0ms
989
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
990
+ Processing by GuineaPigController#create as HTML
991
+ Completed 201 Created in 0ms
992
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
993
+ Processing by GuineaPigController#index as HTML
994
+ Completed 200 OK in 0ms
995
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
996
+ Processing by GuineaPigController#create as HTML
997
+ Completed 201 Created in 0ms
998
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:42:58 +0100
999
+ Processing by GuineaPigController#index as HTML
1000
+ Completed 200 OK in 0ms
1001
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1002
+ Processing by GuineaPigController#index as HTML
1003
+ Completed 200 OK in 8ms
1004
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1005
+ Processing by GuineaPigController#index as HTML
1006
+ Completed 200 OK in 0ms
1007
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1008
+ Processing by GuineaPigController#create as HTML
1009
+ Completed 201 Created in 0ms
1010
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1011
+ Processing by GuineaPigController#create_and_reset_session as HTML
1012
+ Can't verify CSRF token authenticity
1013
+ Completed 422 Unprocessable Entity in 0ms
1014
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1015
+ Processing by GuineaPigController#index as HTML
1016
+ Completed 200 OK in 0ms
1017
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1018
+ Processing by GuineaPigController#create as HTML
1019
+ Completed 201 Created in 0ms
1020
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1021
+ Processing by GuineaPigController#index as HTML
1022
+ Completed 200 OK in 0ms
1023
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:02 +0100
1024
+ Processing by GuineaPigController#create as HTML
1025
+ Completed 201 Created in 0ms
1026
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1027
+ Processing by GuineaPigController#index as HTML
1028
+ Completed 200 OK in 7ms
1029
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1030
+ Processing by GuineaPigController#create as HTML
1031
+ Completed 201 Created in 0ms
1032
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1033
+ Processing by GuineaPigController#index as HTML
1034
+ Completed 200 OK in 0ms
1035
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1036
+ Processing by GuineaPigController#create as HTML
1037
+ Completed 201 Created in 0ms
1038
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1039
+ Processing by GuineaPigController#index as HTML
1040
+ Completed 200 OK in 0ms
1041
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1042
+ Processing by GuineaPigController#create as HTML
1043
+ Completed 201 Created in 0ms
1044
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1045
+ Processing by GuineaPigController#create_and_reset_session as HTML
1046
+ Can't verify CSRF token authenticity
1047
+ Completed 422 Unprocessable Entity in 0ms
1048
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:09 +0100
1049
+ Processing by GuineaPigController#index as HTML
1050
+ Completed 200 OK in 0ms
1051
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1052
+ Processing by GuineaPigController#index as HTML
1053
+ Completed 200 OK in 6ms
1054
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1055
+ Processing by GuineaPigController#create as HTML
1056
+ Completed 201 Created in 0ms
1057
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1058
+ Processing by GuineaPigController#index as HTML
1059
+ Completed 200 OK in 0ms
1060
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1061
+ Processing by GuineaPigController#index as HTML
1062
+ Completed 200 OK in 0ms
1063
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1064
+ Processing by GuineaPigController#create as HTML
1065
+ Completed 201 Created in 0ms
1066
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1067
+ Processing by GuineaPigController#create_and_reset_session as HTML
1068
+ Can't verify CSRF token authenticity
1069
+ Completed 422 Unprocessable Entity in 0ms
1070
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1071
+ Processing by GuineaPigController#index as HTML
1072
+ Completed 200 OK in 0ms
1073
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:43:17 +0100
1074
+ Processing by GuineaPigController#create as HTML
1075
+ Completed 201 Created in 0ms
1076
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:03 +0100
1077
+ Processing by GuineaPigController#index as HTML
1078
+ Completed 200 OK in 7ms
1079
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:03 +0100
1080
+ Processing by GuineaPigController#index as HTML
1081
+ Completed 200 OK in 0ms
1082
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:44:03 +0100
1083
+ Processing by GuineaPigController#create_and_reset_session as HTML
1084
+ Completed 201 Created in 0ms
1085
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:03 +0100
1086
+ Processing by GuineaPigController#index as HTML
1087
+ Completed 200 OK in 0ms
1088
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:03 +0100
1089
+ Processing by GuineaPigController#create as HTML
1090
+ Completed 201 Created in 0ms
1091
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:03 +0100
1092
+ Processing by GuineaPigController#index as HTML
1093
+ Completed 200 OK in 0ms
1094
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:03 +0100
1095
+ Processing by GuineaPigController#create as HTML
1096
+ Completed 201 Created in 0ms
1097
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:11 +0100
1098
+ Processing by GuineaPigController#index as HTML
1099
+ Completed 200 OK in 7ms
1100
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:11 +0100
1101
+ Processing by GuineaPigController#index as HTML
1102
+ Completed 200 OK in 0ms
1103
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:11 +0100
1104
+ Processing by GuineaPigController#create as HTML
1105
+ Completed 201 Created in 0ms
1106
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:11 +0100
1107
+ Processing by GuineaPigController#index as HTML
1108
+ Completed 200 OK in 0ms
1109
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:11 +0100
1110
+ Processing by GuineaPigController#create as HTML
1111
+ Completed 201 Created in 0ms
1112
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:11 +0100
1113
+ Processing by GuineaPigController#index as HTML
1114
+ Completed 200 OK in 0ms
1115
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:44:11 +0100
1116
+ Processing by GuineaPigController#create_and_reset_session as HTML
1117
+ Completed 201 Created in 0ms
1118
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:35 +0100
1119
+ Processing by GuineaPigController#index as HTML
1120
+ Completed 200 OK in 7ms
1121
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:44:35 +0100
1122
+ Processing by GuineaPigController#create_and_reset_session as HTML
1123
+ Completed 201 Created in 0ms
1124
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:35 +0100
1125
+ Processing by GuineaPigController#index as HTML
1126
+ Completed 200 OK in 0ms
1127
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:35 +0100
1128
+ Processing by GuineaPigController#create as HTML
1129
+ Completed 201 Created in 0ms
1130
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:35 +0100
1131
+ Processing by GuineaPigController#index as HTML
1132
+ Completed 200 OK in 0ms
1133
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:35 +0100
1134
+ Processing by GuineaPigController#create as HTML
1135
+ Completed 201 Created in 0ms
1136
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:35 +0100
1137
+ Processing by GuineaPigController#index as HTML
1138
+ Completed 200 OK in 0ms
1139
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:39 +0100
1140
+ Processing by GuineaPigController#index as HTML
1141
+ Completed 200 OK in 7ms
1142
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:39 +0100
1143
+ Processing by GuineaPigController#create as HTML
1144
+ Completed 201 Created in 1ms
1145
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:39 +0100
1146
+ Processing by GuineaPigController#index as HTML
1147
+ Completed 200 OK in 0ms
1148
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:39 +0100
1149
+ Processing by GuineaPigController#create as HTML
1150
+ Completed 201 Created in 0ms
1151
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:39 +0100
1152
+ Processing by GuineaPigController#index as HTML
1153
+ Completed 200 OK in 0ms
1154
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:39 +0100
1155
+ Processing by GuineaPigController#index as HTML
1156
+ Completed 200 OK in 0ms
1157
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:44:39 +0100
1158
+ Processing by GuineaPigController#create_and_reset_session as HTML
1159
+ Completed 201 Created in 0ms
1160
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:45 +0100
1161
+ Processing by GuineaPigController#index as HTML
1162
+ Completed 200 OK in 8ms
1163
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:45 +0100
1164
+ Processing by GuineaPigController#create as HTML
1165
+ Completed 201 Created in 0ms
1166
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:45 +0100
1167
+ Processing by GuineaPigController#index as HTML
1168
+ Completed 200 OK in 0ms
1169
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:44:45 +0100
1170
+ Processing by GuineaPigController#create_and_reset_session as HTML
1171
+ Completed 201 Created in 0ms
1172
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:45 +0100
1173
+ Processing by GuineaPigController#index as HTML
1174
+ Completed 200 OK in 0ms
1175
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:45 +0100
1176
+ Processing by GuineaPigController#create as HTML
1177
+ Completed 201 Created in 0ms
1178
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:45 +0100
1179
+ Processing by GuineaPigController#index as HTML
1180
+ Completed 200 OK in 0ms
1181
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:53 +0100
1182
+ Processing by GuineaPigController#index as HTML
1183
+ Completed 200 OK in 7ms
1184
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:53 +0100
1185
+ Processing by GuineaPigController#create as HTML
1186
+ Completed 201 Created in 0ms
1187
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:53 +0100
1188
+ Processing by GuineaPigController#index as HTML
1189
+ Completed 200 OK in 0ms
1190
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:44:53 +0100
1191
+ Processing by GuineaPigController#create as HTML
1192
+ Completed 201 Created in 0ms
1193
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:53 +0100
1194
+ Processing by GuineaPigController#index as HTML
1195
+ Completed 200 OK in 0ms
1196
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:44:53 +0100
1197
+ Processing by GuineaPigController#index as HTML
1198
+ Completed 200 OK in 0ms
1199
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:44:53 +0100
1200
+ Processing by GuineaPigController#create_and_reset_session as HTML
1201
+ Completed 201 Created in 0ms
1202
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:09 +0100
1203
+ Processing by GuineaPigController#index as HTML
1204
+ Completed 200 OK in 7ms
1205
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:09 +0100
1206
+ Processing by GuineaPigController#index as HTML
1207
+ Completed 200 OK in 0ms
1208
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:45:09 +0100
1209
+ Processing by GuineaPigController#create as HTML
1210
+ Completed 201 Created in 0ms
1211
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:09 +0100
1212
+ Processing by GuineaPigController#index as HTML
1213
+ Completed 200 OK in 0ms
1214
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:45:09 +0100
1215
+ Processing by GuineaPigController#create_and_reset_session as HTML
1216
+ Completed 201 Created in 0ms
1217
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:09 +0100
1218
+ Processing by GuineaPigController#index as HTML
1219
+ Completed 200 OK in 0ms
1220
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:45:09 +0100
1221
+ Processing by GuineaPigController#create as HTML
1222
+ Completed 201 Created in 0ms
1223
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:43 +0100
1224
+ Processing by GuineaPigController#index as HTML
1225
+ Completed 200 OK in 8ms
1226
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:43 +0100
1227
+ Processing by GuineaPigController#index as HTML
1228
+ Completed 200 OK in 0ms
1229
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:45:43 +0100
1230
+ Processing by GuineaPigController#create as HTML
1231
+ Completed 201 Created in 0ms
1232
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:43 +0100
1233
+ Processing by GuineaPigController#index as HTML
1234
+ Completed 200 OK in 0ms
1235
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:45:43 +0100
1236
+ Processing by GuineaPigController#create_and_reset_session as HTML
1237
+ Completed 201 Created in 0ms
1238
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:43 +0100
1239
+ Processing by GuineaPigController#index as HTML
1240
+ Completed 200 OK in 0ms
1241
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:45:43 +0100
1242
+ Processing by GuineaPigController#create as HTML
1243
+ Completed 201 Created in 0ms
1244
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:49 +0100
1245
+ Processing by GuineaPigController#index as HTML
1246
+ Completed 200 OK in 6ms
1247
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:45:49 +0100
1248
+ Processing by GuineaPigController#create as HTML
1249
+ Completed 201 Created in 0ms
1250
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:49 +0100
1251
+ Processing by GuineaPigController#index as HTML
1252
+ Completed 200 OK in 0ms
1253
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:45:49 +0100
1254
+ Processing by GuineaPigController#create as HTML
1255
+ Completed 201 Created in 0ms
1256
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:49 +0100
1257
+ Processing by GuineaPigController#index as HTML
1258
+ Completed 200 OK in 0ms
1259
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:45:49 +0100
1260
+ Processing by GuineaPigController#create_and_reset_session as HTML
1261
+ Completed 201 Created in 0ms
1262
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:45:49 +0100
1263
+ Processing by GuineaPigController#index as HTML
1264
+ Completed 200 OK in 0ms
1265
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:00 +0100
1266
+ Processing by GuineaPigController#index as HTML
1267
+ Completed 200 OK in 6ms
1268
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:00 +0100
1269
+ Processing by GuineaPigController#create as HTML
1270
+ Completed 201 Created in 0ms
1271
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:00 +0100
1272
+ Processing by GuineaPigController#index as HTML
1273
+ Completed 200 OK in 0ms
1274
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:46:00 +0100
1275
+ Processing by GuineaPigController#create_and_reset_session as HTML
1276
+ Completed 201 Created in 0ms
1277
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:00 +0100
1278
+ Processing by GuineaPigController#index as HTML
1279
+ Completed 200 OK in 0ms
1280
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:00 +0100
1281
+ Processing by GuineaPigController#index as HTML
1282
+ Completed 200 OK in 0ms
1283
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:00 +0100
1284
+ Processing by GuineaPigController#create as HTML
1285
+ Completed 201 Created in 0ms
1286
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:08 +0100
1287
+ Processing by GuineaPigController#index as HTML
1288
+ Completed 200 OK in 7ms
1289
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:08 +0100
1290
+ Processing by GuineaPigController#create as HTML
1291
+ Completed 201 Created in 0ms
1292
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:08 +0100
1293
+ Processing by GuineaPigController#index as HTML
1294
+ Completed 200 OK in 0ms
1295
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:08 +0100
1296
+ Processing by GuineaPigController#create as HTML
1297
+ Completed 201 Created in 0ms
1298
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:08 +0100
1299
+ Processing by GuineaPigController#index as HTML
1300
+ Completed 200 OK in 0ms
1301
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:46:08 +0100
1302
+ Processing by GuineaPigController#create_and_reset_session as HTML
1303
+ Completed 201 Created in 0ms
1304
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:08 +0100
1305
+ Processing by GuineaPigController#index as HTML
1306
+ Completed 200 OK in 0ms
1307
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:15 +0100
1308
+ Processing by GuineaPigController#index as HTML
1309
+ Completed 200 OK in 7ms
1310
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:46:15 +0100
1311
+ Processing by GuineaPigController#create_and_reset_session as HTML
1312
+ Completed 201 Created in 0ms
1313
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:15 +0100
1314
+ Processing by GuineaPigController#index as HTML
1315
+ Completed 200 OK in 0ms
1316
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:15 +0100
1317
+ Processing by GuineaPigController#index as HTML
1318
+ Completed 200 OK in 0ms
1319
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:15 +0100
1320
+ Processing by GuineaPigController#create as HTML
1321
+ Completed 201 Created in 0ms
1322
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:15 +0100
1323
+ Processing by GuineaPigController#index as HTML
1324
+ Completed 200 OK in 0ms
1325
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:15 +0100
1326
+ Processing by GuineaPigController#create as HTML
1327
+ Completed 201 Created in 0ms
1328
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:28 +0100
1329
+ Processing by GuineaPigController#index as HTML
1330
+ Completed 200 OK in 6ms
1331
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:28 +0100
1332
+ Processing by GuineaPigController#index as HTML
1333
+ Completed 200 OK in 0ms
1334
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:28 +0100
1335
+ Processing by GuineaPigController#create as HTML
1336
+ Completed 201 Created in 0ms
1337
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:28 +0100
1338
+ Processing by GuineaPigController#index as HTML
1339
+ Completed 200 OK in 0ms
1340
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:46:28 +0100
1341
+ Processing by GuineaPigController#create_and_reset_session as HTML
1342
+ Completed 201 Created in 0ms
1343
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:46:28 +0100
1344
+ Processing by GuineaPigController#index as HTML
1345
+ Completed 200 OK in 0ms
1346
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:46:28 +0100
1347
+ Processing by GuineaPigController#create as HTML
1348
+ Completed 201 Created in 0ms
1349
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:04 +0100
1350
+ Processing by GuineaPigController#index as HTML
1351
+ Completed 200 OK in 6ms
1352
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:47:04 +0100
1353
+ Processing by GuineaPigController#create as HTML
1354
+ Completed 201 Created in 0ms
1355
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:04 +0100
1356
+ Processing by GuineaPigController#index as HTML
1357
+ Completed 200 OK in 0ms
1358
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:04 +0100
1359
+ Processing by GuineaPigController#index as HTML
1360
+ Completed 200 OK in 0ms
1361
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:47:04 +0100
1362
+ Processing by GuineaPigController#create_and_reset_session as HTML
1363
+ Completed 201 Created in 0ms
1364
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:04 +0100
1365
+ Processing by GuineaPigController#index as HTML
1366
+ Completed 200 OK in 0ms
1367
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:47:04 +0100
1368
+ Processing by GuineaPigController#create as HTML
1369
+ Completed 201 Created in 0ms
1370
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:55 +0100
1371
+ Processing by GuineaPigController#index as HTML
1372
+ Completed 200 OK in 6ms
1373
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:55 +0100
1374
+ Processing by GuineaPigController#index as HTML
1375
+ Completed 200 OK in 0ms
1376
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:47:55 +0100
1377
+ Processing by GuineaPigController#create as HTML
1378
+ Completed 201 Created in 0ms
1379
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:55 +0100
1380
+ Processing by GuineaPigController#index as HTML
1381
+ Completed 200 OK in 0ms
1382
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:47:55 +0100
1383
+ Processing by GuineaPigController#create_and_reset_session as HTML
1384
+ Completed 201 Created in 0ms
1385
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:47:55 +0100
1386
+ Processing by GuineaPigController#index as HTML
1387
+ Completed 200 OK in 0ms
1388
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:47:55 +0100
1389
+ Processing by GuineaPigController#create as HTML
1390
+ Completed 201 Created in 0ms
1391
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:48:39 +0100
1392
+ Processing by GuineaPigController#index as HTML
1393
+ Completed 200 OK in 7ms
1394
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:48:39 +0100
1395
+ Processing by GuineaPigController#create as HTML
1396
+ Completed 201 Created in 0ms
1397
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:48:39 +0100
1398
+ Processing by GuineaPigController#index as HTML
1399
+ Completed 200 OK in 0ms
1400
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:48:39 +0100
1401
+ Processing by GuineaPigController#create as HTML
1402
+ Completed 201 Created in 0ms
1403
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:48:39 +0100
1404
+ Processing by GuineaPigController#index as HTML
1405
+ Completed 200 OK in 0ms
1406
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:48:39 +0100
1407
+ Processing by GuineaPigController#create_and_reset_session as HTML
1408
+ Completed 201 Created in 0ms
1409
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:48:39 +0100
1410
+ Processing by GuineaPigController#index as HTML
1411
+ Completed 200 OK in 0ms
1412
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:50:28 +0100
1413
+ Processing by GuineaPigController#index as HTML
1414
+ Completed 200 OK in 8ms
1415
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:50:28 +0100
1416
+ Processing by GuineaPigController#create_and_reset_session as HTML
1417
+ Completed 201 Created in 0ms
1418
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:50:28 +0100
1419
+ Processing by GuineaPigController#index as HTML
1420
+ Completed 200 OK in 0ms
1421
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:50:28 +0100
1422
+ Processing by GuineaPigController#index as HTML
1423
+ Completed 200 OK in 0ms
1424
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:50:28 +0100
1425
+ Processing by GuineaPigController#create as HTML
1426
+ Completed 201 Created in 0ms
1427
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:50:28 +0100
1428
+ Processing by GuineaPigController#index as HTML
1429
+ Completed 200 OK in 0ms
1430
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:50:28 +0100
1431
+ Processing by GuineaPigController#create as HTML
1432
+ Completed 201 Created in 0ms
1433
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:23 +0100
1434
+ Processing by GuineaPigController#index as HTML
1435
+ Completed 200 OK in 6ms
1436
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:23 +0100
1437
+ Processing by GuineaPigController#index as HTML
1438
+ Completed 200 OK in 0ms
1439
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:51:23 +0100
1440
+ Processing by GuineaPigController#create as HTML
1441
+ Completed 201 Created in 0ms
1442
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:23 +0100
1443
+ Processing by GuineaPigController#index as HTML
1444
+ Completed 200 OK in 0ms
1445
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:51:23 +0100
1446
+ Processing by GuineaPigController#create_and_reset_session as HTML
1447
+ Completed 201 Created in 0ms
1448
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:23 +0100
1449
+ Processing by GuineaPigController#index as HTML
1450
+ Completed 200 OK in 0ms
1451
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:51:23 +0100
1452
+ Processing by GuineaPigController#create as HTML
1453
+ Completed 201 Created in 0ms
1454
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:26 +0100
1455
+ Processing by GuineaPigController#index as HTML
1456
+ Completed 200 OK in 7ms
1457
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:51:26 +0100
1458
+ Processing by GuineaPigController#create as HTML
1459
+ Completed 201 Created in 0ms
1460
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:26 +0100
1461
+ Processing by GuineaPigController#index as HTML
1462
+ Completed 200 OK in 0ms
1463
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:26 +0100
1464
+ Processing by GuineaPigController#index as HTML
1465
+ Completed 200 OK in 0ms
1466
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:51:26 +0100
1467
+ Processing by GuineaPigController#create as HTML
1468
+ Completed 201 Created in 0ms
1469
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:51:26 +0100
1470
+ Processing by GuineaPigController#index as HTML
1471
+ Completed 200 OK in 0ms
1472
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:51:26 +0100
1473
+ Processing by GuineaPigController#create_and_reset_session as HTML
1474
+ Completed 201 Created in 0ms
1475
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:26 +0100
1476
+ Processing by GuineaPigController#index as HTML
1477
+ Completed 200 OK in 7ms
1478
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:58:26 +0100
1479
+ Processing by GuineaPigController#create as HTML
1480
+ Completed 201 Created in 0ms
1481
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:26 +0100
1482
+ Processing by GuineaPigController#index as HTML
1483
+ Completed 200 OK in 0ms
1484
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:58:26 +0100
1485
+ Processing by GuineaPigController#create_and_reset_session as HTML
1486
+ Completed 201 Created in 0ms
1487
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:26 +0100
1488
+ Processing by GuineaPigController#index as HTML
1489
+ Completed 200 OK in 0ms
1490
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:58:26 +0100
1491
+ Processing by GuineaPigController#create as HTML
1492
+ Completed 201 Created in 0ms
1493
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:26 +0100
1494
+ Processing by GuineaPigController#index as HTML
1495
+ Completed 200 OK in 0ms
1496
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:37 +0100
1497
+ Processing by GuineaPigController#index as HTML
1498
+ Completed 200 OK in 6ms
1499
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-08 23:58:37 +0100
1500
+ Processing by GuineaPigController#create_and_reset_session as HTML
1501
+ Completed 201 Created in 0ms
1502
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:37 +0100
1503
+ Processing by GuineaPigController#index as HTML
1504
+ Completed 200 OK in 0ms
1505
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:37 +0100
1506
+ Processing by GuineaPigController#index as HTML
1507
+ Completed 200 OK in 0ms
1508
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:58:37 +0100
1509
+ Processing by GuineaPigController#create as HTML
1510
+ Completed 201 Created in 0ms
1511
+ Started GET "/" for 127.0.0.1 at 2014-11-08 23:58:37 +0100
1512
+ Processing by GuineaPigController#index as HTML
1513
+ Completed 200 OK in 0ms
1514
+ Started POST "/" for 127.0.0.1 at 2014-11-08 23:58:37 +0100
1515
+ Processing by GuineaPigController#create as HTML
1516
+ Completed 201 Created in 0ms
1517
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:00:54 +0100
1518
+ Processing by GuineaPigController#index as HTML
1519
+ Completed 200 OK in 6ms
1520
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-09 00:00:54 +0100
1521
+ Processing by GuineaPigController#create_and_reset_session as HTML
1522
+ Completed 201 Created in 0ms
1523
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:00:54 +0100
1524
+ Processing by GuineaPigController#index as HTML
1525
+ Completed 200 OK in 0ms
1526
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:00:54 +0100
1527
+ Processing by GuineaPigController#index as HTML
1528
+ Completed 200 OK in 0ms
1529
+ Started POST "/" for 127.0.0.1 at 2014-11-09 00:00:54 +0100
1530
+ Processing by GuineaPigController#create as HTML
1531
+ Completed 201 Created in 0ms
1532
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:00:54 +0100
1533
+ Processing by GuineaPigController#index as HTML
1534
+ Completed 200 OK in 0ms
1535
+ Started POST "/" for 127.0.0.1 at 2014-11-09 00:00:54 +0100
1536
+ Processing by GuineaPigController#create as HTML
1537
+ Completed 201 Created in 0ms
1538
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:01:15 +0100
1539
+ Processing by GuineaPigController#index as HTML
1540
+ Completed 200 OK in 9ms
1541
+ Started POST "/" for 127.0.0.1 at 2014-11-09 00:01:15 +0100
1542
+ Processing by GuineaPigController#create as HTML
1543
+ Completed 201 Created in 0ms
1544
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:01:15 +0100
1545
+ Processing by GuineaPigController#index as HTML
1546
+ Completed 200 OK in 0ms
1547
+ Started POST "/" for 127.0.0.1 at 2014-11-09 00:01:15 +0100
1548
+ Processing by GuineaPigController#create as HTML
1549
+ Completed 201 Created in 0ms
1550
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:01:15 +0100
1551
+ Processing by GuineaPigController#index as HTML
1552
+ Completed 200 OK in 0ms
1553
+ Started GET "/" for 127.0.0.1 at 2014-11-09 00:01:15 +0100
1554
+ Processing by GuineaPigController#index as HTML
1555
+ Completed 200 OK in 0ms
1556
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-09 00:01:15 +0100
1557
+ Processing by GuineaPigController#create_and_reset_session as HTML
1558
+ Completed 201 Created in 0ms
1559
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:42 +0100
1560
+ Processing by GuineaPigController#index as HTML
1561
+ Completed 200 OK in 8ms
1562
+ Started POST "/" for 127.0.0.1 at 2014-11-10 14:57:42 +0100
1563
+ Processing by GuineaPigController#create as HTML
1564
+ Completed 201 Created in 1ms
1565
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:42 +0100
1566
+ Processing by GuineaPigController#index as HTML
1567
+ Completed 200 OK in 0ms
1568
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-10 14:57:42 +0100
1569
+ Processing by GuineaPigController#create_and_reset_session as HTML
1570
+ Completed 201 Created in 0ms
1571
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:42 +0100
1572
+ Processing by GuineaPigController#index as HTML
1573
+ Completed 200 OK in 0ms
1574
+ Started POST "/" for 127.0.0.1 at 2014-11-10 14:57:42 +0100
1575
+ Processing by GuineaPigController#create as HTML
1576
+ Completed 201 Created in 0ms
1577
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:42 +0100
1578
+ Processing by GuineaPigController#index as HTML
1579
+ Completed 200 OK in 0ms
1580
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:58 +0100
1581
+ Processing by GuineaPigController#index as HTML
1582
+ Completed 200 OK in 7ms
1583
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:58 +0100
1584
+ Processing by GuineaPigController#index as HTML
1585
+ Completed 200 OK in 0ms
1586
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-10 14:57:58 +0100
1587
+ Processing by GuineaPigController#create_and_reset_session as HTML
1588
+ Completed 201 Created in 0ms
1589
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:58 +0100
1590
+ Processing by GuineaPigController#index as HTML
1591
+ Completed 200 OK in 0ms
1592
+ Started POST "/" for 127.0.0.1 at 2014-11-10 14:57:58 +0100
1593
+ Processing by GuineaPigController#create as HTML
1594
+ Completed 201 Created in 0ms
1595
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:57:58 +0100
1596
+ Processing by GuineaPigController#index as HTML
1597
+ Completed 200 OK in 0ms
1598
+ Started POST "/" for 127.0.0.1 at 2014-11-10 14:57:58 +0100
1599
+ Processing by GuineaPigController#create as HTML
1600
+ Completed 201 Created in 0ms
1601
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:58:02 +0100
1602
+ Processing by GuineaPigController#index as HTML
1603
+ Completed 200 OK in 6ms
1604
+ Started POST "/" for 127.0.0.1 at 2014-11-10 14:58:02 +0100
1605
+ Processing by GuineaPigController#create as HTML
1606
+ Completed 201 Created in 0ms
1607
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:58:02 +0100
1608
+ Processing by GuineaPigController#index as HTML
1609
+ Completed 200 OK in 0ms
1610
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-10 14:58:02 +0100
1611
+ Processing by GuineaPigController#create_and_reset_session as HTML
1612
+ Completed 201 Created in 0ms
1613
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:58:02 +0100
1614
+ Processing by GuineaPigController#index as HTML
1615
+ Completed 200 OK in 0ms
1616
+ Started GET "/" for 127.0.0.1 at 2014-11-10 14:58:02 +0100
1617
+ Processing by GuineaPigController#index as HTML
1618
+ Completed 200 OK in 0ms
1619
+ Started POST "/" for 127.0.0.1 at 2014-11-10 14:58:02 +0100
1620
+ Processing by GuineaPigController#create as HTML
1621
+ Completed 201 Created in 0ms
1622
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:00:45 +0100
1623
+ Processing by GuineaPigController#index as HTML
1624
+ Completed 200 OK in 6ms
1625
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:00:45 +0100
1626
+ Processing by GuineaPigController#index as HTML
1627
+ Completed 200 OK in 0ms
1628
+ Started POST "/" for 127.0.0.1 at 2014-11-10 15:00:45 +0100
1629
+ Processing by GuineaPigController#create as HTML
1630
+ Completed 201 Created in 0ms
1631
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:00:45 +0100
1632
+ Processing by GuineaPigController#index as HTML
1633
+ Completed 200 OK in 0ms
1634
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-10 15:00:45 +0100
1635
+ Processing by GuineaPigController#create_and_reset_session as HTML
1636
+ Completed 201 Created in 0ms
1637
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:00:45 +0100
1638
+ Processing by GuineaPigController#index as HTML
1639
+ Completed 200 OK in 0ms
1640
+ Started POST "/" for 127.0.0.1 at 2014-11-10 15:00:45 +0100
1641
+ Processing by GuineaPigController#create as HTML
1642
+ Completed 201 Created in 0ms
1643
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:01:18 +0100
1644
+ Processing by GuineaPigController#index as HTML
1645
+ Completed 200 OK in 6ms
1646
+ Started POST "/" for 127.0.0.1 at 2014-11-10 15:01:18 +0100
1647
+ Processing by GuineaPigController#create as HTML
1648
+ Completed 201 Created in 0ms
1649
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:01:18 +0100
1650
+ Processing by GuineaPigController#index as HTML
1651
+ Completed 200 OK in 0ms
1652
+ Started POST "/create_and_reset_session" for 127.0.0.1 at 2014-11-10 15:01:18 +0100
1653
+ Processing by GuineaPigController#create_and_reset_session as HTML
1654
+ Completed 201 Created in 0ms
1655
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:01:18 +0100
1656
+ Processing by GuineaPigController#index as HTML
1657
+ Completed 200 OK in 0ms
1658
+ Started POST "/" for 127.0.0.1 at 2014-11-10 15:01:18 +0100
1659
+ Processing by GuineaPigController#create as HTML
1660
+ Completed 201 Created in 0ms
1661
+ Started GET "/" for 127.0.0.1 at 2014-11-10 15:01:18 +0100
1662
+ Processing by GuineaPigController#index as HTML
1663
+ Completed 200 OK in 0ms