localized_url_for 0.0.1

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 (70) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +4 -0
  3. data/README.rdoc +22 -0
  4. data/Rakefile +2 -0
  5. data/lib/localized_url_for/version.rb +3 -0
  6. data/lib/localized_url_for.rb +14 -0
  7. data/localized_url_for.gemspec +26 -0
  8. data/spec/dummy_app/.gitignore +4 -0
  9. data/spec/dummy_app/.rspec +1 -0
  10. data/spec/dummy_app/Gemfile +31 -0
  11. data/spec/dummy_app/Gemfile.lock +124 -0
  12. data/spec/dummy_app/README +256 -0
  13. data/spec/dummy_app/Rakefile +7 -0
  14. data/spec/dummy_app/app/controllers/application_controller.rb +8 -0
  15. data/spec/dummy_app/app/controllers/index_controller.rb +4 -0
  16. data/spec/dummy_app/app/helpers/application_helper.rb +2 -0
  17. data/spec/dummy_app/app/helpers/index_helper.rb +2 -0
  18. data/spec/dummy_app/app/views/index/index.html.erb +1 -0
  19. data/spec/dummy_app/app/views/layouts/application.html.erb +14 -0
  20. data/spec/dummy_app/config/application.rb +42 -0
  21. data/spec/dummy_app/config/boot.rb +13 -0
  22. data/spec/dummy_app/config/database.yml +22 -0
  23. data/spec/dummy_app/config/environment.rb +5 -0
  24. data/spec/dummy_app/config/environments/development.rb +26 -0
  25. data/spec/dummy_app/config/environments/production.rb +49 -0
  26. data/spec/dummy_app/config/environments/test.rb +35 -0
  27. data/spec/dummy_app/config/initializers/backtrace_silencers.rb +7 -0
  28. data/spec/dummy_app/config/initializers/inflections.rb +10 -0
  29. data/spec/dummy_app/config/initializers/mime_types.rb +5 -0
  30. data/spec/dummy_app/config/initializers/secret_token.rb +7 -0
  31. data/spec/dummy_app/config/initializers/session_store.rb +8 -0
  32. data/spec/dummy_app/config/locales/en.yml +5 -0
  33. data/spec/dummy_app/config/routes.rb +62 -0
  34. data/spec/dummy_app/config.ru +4 -0
  35. data/spec/dummy_app/db/seeds.rb +7 -0
  36. data/spec/dummy_app/db/test.sqlite3 +0 -0
  37. data/spec/dummy_app/doc/README_FOR_APP +2 -0
  38. data/spec/dummy_app/lib/tasks/.gitkeep +0 -0
  39. data/spec/dummy_app/log/development.log +0 -0
  40. data/spec/dummy_app/log/production.log +0 -0
  41. data/spec/dummy_app/log/server.log +0 -0
  42. data/spec/dummy_app/log/test.log +1321 -0
  43. data/spec/dummy_app/public/404.html +26 -0
  44. data/spec/dummy_app/public/422.html +26 -0
  45. data/spec/dummy_app/public/500.html +26 -0
  46. data/spec/dummy_app/public/favicon.ico +0 -0
  47. data/spec/dummy_app/public/images/rails.png +0 -0
  48. data/spec/dummy_app/public/javascripts/application.js +2 -0
  49. data/spec/dummy_app/public/javascripts/controls.js +965 -0
  50. data/spec/dummy_app/public/javascripts/dragdrop.js +974 -0
  51. data/spec/dummy_app/public/javascripts/effects.js +1123 -0
  52. data/spec/dummy_app/public/javascripts/prototype.js +6001 -0
  53. data/spec/dummy_app/public/javascripts/rails.js +175 -0
  54. data/spec/dummy_app/public/robots.txt +5 -0
  55. data/spec/dummy_app/public/stylesheets/.gitkeep +0 -0
  56. data/spec/dummy_app/script/rails +6 -0
  57. data/spec/dummy_app/spec/controllers/index_controller_spec.rb +12 -0
  58. data/spec/dummy_app/spec/models/dummy_spec.rb +5 -0
  59. data/spec/dummy_app/spec/spec_helper.rb +34 -0
  60. data/spec/dummy_app/spec/stories/index_spec.rb +22 -0
  61. data/spec/dummy_app/tmp/capybara/capybara-201110180144123319871468.html +240 -0
  62. data/spec/dummy_app/tmp/capybara/capybara-201110180144449631082524.html +2 -0
  63. data/spec/dummy_app/tmp/capybara/capybara-201110180146112394830146.html +13 -0
  64. data/spec/dummy_app/tmp/capybara/capybara-201110180147068481536475.html +13 -0
  65. data/spec/dummy_app/tmp/capybara/capybara-201110180147359079378090.html +13 -0
  66. data/spec/dummy_app/tmp/capybara/capybara-201110180148059177742335.html +13 -0
  67. data/spec/dummy_app/tmp/capybara/capybara-201110180159476619542688.html +13 -0
  68. data/spec/dummy_app/vendor/plugins/.gitkeep +0 -0
  69. data/spec/spec_helper.rb +36 -0
  70. metadata +227 -0
@@ -0,0 +1,1321 @@
1
+ Processing by IndexController#index as HTML
2
+ Rendered index/index.html.erb within layouts/application (0.7ms)
3
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
4
+ Processing by IndexController#index as HTML
5
+ Rendered index/index.html.erb within layouts/application (0.8ms)
6
+ Completed 200 OK in 49ms (Views: 48.8ms | ActiveRecord: 0.0ms)
7
+ Processing by IndexController#index as HTML
8
+ Rendered index/index.html.erb within layouts/application (1.6ms)
9
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
10
+ Processing by IndexController#index as HTML
11
+ Rendered index/index.html.erb within layouts/application (0.6ms)
12
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
13
+ Processing by IndexController#index as HTML
14
+ Rendered index/index.html.erb within layouts/application (0.7ms)
15
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
16
+ Processing by IndexController#index as HTML
17
+ Rendered index/index.html.erb within layouts/application (0.6ms)
18
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
19
+ Processing by IndexController#index as HTML
20
+ Rendered index/index.html.erb within layouts/application (0.7ms)
21
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
22
+
23
+
24
+ Started GET "/" for 127.0.0.1 at 2011-10-18 01:44:44 +0300
25
+ Processing by IndexController#index as HTML
26
+ Rendered index/index.html.erb within layouts/application (0.6ms)
27
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
28
+
29
+
30
+ Started GET "/" for 127.0.0.1 at 2011-10-18 01:45:22 +0300
31
+ Processing by IndexController#index as HTML
32
+ Completed in 120ms
33
+ Processing by IndexController#index as HTML
34
+ Rendered index/index.html.erb within layouts/application (0.6ms)
35
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
36
+
37
+
38
+ Started GET "/" for 127.0.0.1 at 2011-10-18 01:46:11 +0300
39
+ Processing by IndexController#index as HTML
40
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
41
+ Processing by IndexController#index as HTML
42
+ Rendered index/index.html.erb within layouts/application (0.6ms)
43
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
44
+
45
+
46
+ Started GET "/" for 127.0.0.1 at 2011-10-18 01:47:06 +0300
47
+ Processing by IndexController#index as HTML
48
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
49
+ Processing by IndexController#index as HTML
50
+ Rendered index/index.html.erb within layouts/application (0.6ms)
51
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
52
+
53
+
54
+ Started GET "/" for 127.0.0.1 at 2011-10-18 01:47:35 +0300
55
+ Processing by IndexController#index as HTML
56
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
57
+ Processing by IndexController#index as HTML
58
+ Rendered index/index.html.erb within layouts/application (0.7ms)
59
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
60
+
61
+
62
+ Started GET "/" for 127.0.0.1 at 2011-10-18 01:48:05 +0300
63
+ Processing by IndexController#index as HTML
64
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
65
+ Processing by IndexController#index as HTML
66
+ Rendered index/index.html.erb within layouts/application (0.7ms)
67
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
68
+
69
+
70
+ Started GET "/" for 127.0.0.1 at 2011-10-18 01:59:47 +0300
71
+ Processing by IndexController#index as HTML
72
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
73
+ Processing by IndexController#index as HTML
74
+ Rendered index/index.html.erb within layouts/application (0.6ms)
75
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
76
+
77
+
78
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:02:59 +0300
79
+ Processing by IndexController#index as HTML
80
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
81
+ Processing by IndexController#index as HTML
82
+ Rendered index/index.html.erb within layouts/application (0.6ms)
83
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
84
+
85
+
86
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:03:24 +0300
87
+ Processing by IndexController#index as HTML
88
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
89
+ Processing by IndexController#index as HTML
90
+ Rendered index/index.html.erb within layouts/application (0.7ms)
91
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
92
+
93
+
94
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:03:35 +0300
95
+ Processing by IndexController#index as HTML
96
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
97
+ Processing by IndexController#index as HTML
98
+ Rendered index/index.html.erb within layouts/application (0.6ms)
99
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
100
+
101
+
102
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:04:39 +0300
103
+ Processing by IndexController#index as HTML
104
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
105
+
106
+
107
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:04:39 +0300
108
+ Processing by IndexController#index as HTML
109
+ Parameters: {"locale"=>"uk"}
110
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
111
+ Processing by IndexController#index as HTML
112
+ Rendered index/index.html.erb within layouts/application (0.6ms)
113
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
114
+
115
+
116
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:05:45 +0300
117
+ Processing by IndexController#index as HTML
118
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
119
+
120
+
121
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:05:45 +0300
122
+ Processing by IndexController#index as HTML
123
+ Parameters: {"locale"=>"uk"}
124
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
125
+ Processing by IndexController#index as HTML
126
+ Rendered index/index.html.erb within layouts/application (0.6ms)
127
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
128
+
129
+
130
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:06:30 +0300
131
+ Processing by IndexController#index as HTML
132
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
133
+
134
+
135
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:06:30 +0300
136
+ Processing by IndexController#index as HTML
137
+ Parameters: {"locale"=>"uk"}
138
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
139
+ Processing by IndexController#index as HTML
140
+ Rendered index/index.html.erb within layouts/application (0.6ms)
141
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
142
+
143
+
144
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:09:30 +0300
145
+ Processing by IndexController#index as HTML
146
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
147
+
148
+
149
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:09:30 +0300
150
+ Processing by IndexController#index as HTML
151
+ Parameters: {"locale"=>"uk"}
152
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
153
+
154
+
155
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:09:31 +0300
156
+ Processing by IndexController#index as HTML
157
+ Parameters: {"locale"=>"uk"}
158
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
159
+ Processing by IndexController#index as HTML
160
+ Rendered index/index.html.erb within layouts/application (0.7ms)
161
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
162
+
163
+
164
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:09:47 +0300
165
+ Processing by IndexController#index as HTML
166
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
167
+
168
+
169
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:09:47 +0300
170
+ Processing by IndexController#index as HTML
171
+ Parameters: {"locale"=>"uk"}
172
+ Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
173
+
174
+
175
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:09:47 +0300
176
+ Processing by IndexController#index as HTML
177
+ Parameters: {"locale"=>"uk"}
178
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
179
+ Processing by IndexController#index as HTML
180
+ Rendered index/index.html.erb within layouts/application (0.6ms)
181
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
182
+
183
+
184
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:10:07 +0300
185
+ Processing by IndexController#index as HTML
186
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
187
+
188
+
189
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:10:07 +0300
190
+ Processing by IndexController#index as HTML
191
+ Parameters: {"locale"=>"uk"}
192
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
193
+
194
+
195
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:10:07 +0300
196
+ Processing by IndexController#index as HTML
197
+ Parameters: {"locale"=>"uk"}
198
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
199
+ Processing by IndexController#index as HTML
200
+ Rendered index/index.html.erb within layouts/application (0.6ms)
201
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
202
+
203
+
204
+ Started GET "/" for 127.0.0.1 at 2011-10-18 02:10:22 +0300
205
+ Processing by IndexController#index as HTML
206
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
207
+
208
+
209
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:10:22 +0300
210
+ Processing by IndexController#index as HTML
211
+ Parameters: {"locale"=>"uk"}
212
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
213
+
214
+
215
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 02:10:22 +0300
216
+ Processing by IndexController#index as HTML
217
+ Parameters: {"locale"=>"uk"}
218
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
219
+ Processing by IndexController#index as HTML
220
+ Rendered index/index.html.erb within layouts/application (0.6ms)
221
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
222
+
223
+
224
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:40:00 +0300
225
+ Processing by IndexController#index as HTML
226
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
227
+
228
+
229
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:40:00 +0300
230
+ Processing by IndexController#index as HTML
231
+ Parameters: {"locale"=>"uk"}
232
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
233
+
234
+
235
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:40:00 +0300
236
+ Processing by IndexController#index as HTML
237
+ Parameters: {"locale"=>"uk"}
238
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
239
+ Processing by IndexController#index as HTML
240
+ Rendered index/index.html.erb within layouts/application (0.6ms)
241
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
242
+
243
+
244
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:40:56 +0300
245
+ Processing by IndexController#index as HTML
246
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
247
+
248
+
249
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:40:56 +0300
250
+ Processing by IndexController#index as HTML
251
+ Parameters: {"locale"=>"uk"}
252
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
253
+
254
+
255
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:40:56 +0300
256
+ Processing by IndexController#index as HTML
257
+ Parameters: {"locale"=>"uk"}
258
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
259
+ Processing by IndexController#index as HTML
260
+ Rendered index/index.html.erb within layouts/application (0.6ms)
261
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
262
+
263
+
264
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:42:09 +0300
265
+ Processing by IndexController#index as HTML
266
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
267
+
268
+
269
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:42:09 +0300
270
+ Processing by IndexController#index as HTML
271
+ Parameters: {"locale"=>"uk"}
272
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
273
+
274
+
275
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:42:09 +0300
276
+ Processing by IndexController#index as HTML
277
+ Parameters: {"locale"=>"uk"}
278
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
279
+ Processing by IndexController#index as HTML
280
+ Rendered index/index.html.erb within layouts/application (0.6ms)
281
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
282
+
283
+
284
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:42:37 +0300
285
+ Processing by IndexController#index as HTML
286
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
287
+
288
+
289
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:42:37 +0300
290
+ Processing by IndexController#index as HTML
291
+ Parameters: {"locale"=>"uk"}
292
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
293
+
294
+
295
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:42:37 +0300
296
+ Processing by IndexController#index as HTML
297
+ Parameters: {"locale"=>"uk"}
298
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
299
+ Processing by IndexController#index as HTML
300
+ Rendered index/index.html.erb within layouts/application (0.6ms)
301
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
302
+
303
+
304
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:43:09 +0300
305
+ Processing by IndexController#index as HTML
306
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
307
+
308
+
309
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:43:09 +0300
310
+ Processing by IndexController#index as HTML
311
+ Parameters: {"locale"=>"uk"}
312
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
313
+
314
+
315
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:43:09 +0300
316
+ Processing by IndexController#index as HTML
317
+ Parameters: {"locale"=>"uk"}
318
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
319
+ Processing by IndexController#index as HTML
320
+ Rendered index/index.html.erb within layouts/application (0.6ms)
321
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
322
+
323
+
324
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:44:00 +0300
325
+ Processing by IndexController#index as HTML
326
+ Completed in 20ms
327
+
328
+
329
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:44:01 +0300
330
+ Processing by IndexController#index as HTML
331
+ Parameters: {"locale"=>"uk"}
332
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
333
+
334
+
335
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:44:01 +0300
336
+ Processing by IndexController#index as HTML
337
+ Parameters: {"locale"=>"uk"}
338
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
339
+ Processing by IndexController#index as HTML
340
+ Rendered index/index.html.erb within layouts/application (0.6ms)
341
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
342
+
343
+
344
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:45:40 +0300
345
+ Processing by IndexController#index as HTML
346
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
347
+
348
+
349
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:45:40 +0300
350
+ Processing by IndexController#index as HTML
351
+ Parameters: {"locale"=>"uk"}
352
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
353
+
354
+
355
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:45:40 +0300
356
+ Processing by IndexController#index as HTML
357
+ Parameters: {"locale"=>"uk"}
358
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
359
+ Processing by IndexController#index as HTML
360
+ Rendered index/index.html.erb within layouts/application (0.6ms)
361
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
362
+
363
+
364
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:46:05 +0300
365
+ Processing by IndexController#index as HTML
366
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
367
+
368
+
369
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:46:05 +0300
370
+ Processing by IndexController#index as HTML
371
+ Parameters: {"locale"=>"uk"}
372
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
373
+
374
+
375
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:46:05 +0300
376
+ Processing by IndexController#index as HTML
377
+ Parameters: {"locale"=>"uk"}
378
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
379
+ Processing by IndexController#index as HTML
380
+ Rendered index/index.html.erb within layouts/application (0.7ms)
381
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
382
+
383
+
384
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:46:17 +0300
385
+ Processing by IndexController#index as HTML
386
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
387
+
388
+
389
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:46:18 +0300
390
+ Processing by IndexController#index as HTML
391
+ Parameters: {"locale"=>"uk"}
392
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
393
+
394
+
395
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:46:18 +0300
396
+ Processing by IndexController#index as HTML
397
+ Parameters: {"locale"=>"uk"}
398
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
399
+ Processing by IndexController#index as HTML
400
+ Rendered index/index.html.erb within layouts/application (0.6ms)
401
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
402
+
403
+
404
+ Started GET "/" for 127.0.0.1 at 2011-10-18 09:46:36 +0300
405
+ Processing by IndexController#index as HTML
406
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
407
+
408
+
409
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:46:36 +0300
410
+ Processing by IndexController#index as HTML
411
+ Parameters: {"locale"=>"uk"}
412
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
413
+
414
+
415
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 09:46:36 +0300
416
+ Processing by IndexController#index as HTML
417
+ Parameters: {"locale"=>"uk"}
418
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
419
+ Processing by IndexController#index as HTML
420
+ Rendered index/index.html.erb within layouts/application (0.6ms)
421
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
422
+
423
+
424
+ Started GET "/" for 127.0.0.1 at 2011-10-18 10:05:07 +0300
425
+ Processing by IndexController#index as HTML
426
+ Parameters: {"locale"=>"en"}
427
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
428
+
429
+
430
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 10:05:07 +0300
431
+ Processing by IndexController#index as HTML
432
+ Parameters: {"locale"=>"uk"}
433
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
434
+
435
+
436
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 10:05:07 +0300
437
+ Processing by IndexController#index as HTML
438
+ Parameters: {"locale"=>"uk"}
439
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
440
+ Processing by IndexController#index as HTML
441
+ Rendered index/index.html.erb within layouts/application (0.7ms)
442
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
443
+
444
+
445
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:05:18 +0300
446
+ Processing by IndexController#index as HTML
447
+ Parameters: {"locale"=>"en"}
448
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
449
+
450
+
451
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:05:18 +0300
452
+ Processing by IndexController#index as HTML
453
+ Parameters: {"locale"=>"uk"}
454
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
455
+
456
+
457
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:05:18 +0300
458
+ Processing by IndexController#index as HTML
459
+ Parameters: {"locale"=>"uk"}
460
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
461
+ Processing by IndexController#index as HTML
462
+ Rendered index/index.html.erb within layouts/application (0.7ms)
463
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
464
+
465
+
466
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:05:46 +0300
467
+ Processing by IndexController#index as HTML
468
+ Parameters: {"locale"=>"en"}
469
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
470
+
471
+
472
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:05:47 +0300
473
+ Processing by IndexController#index as HTML
474
+ Parameters: {"locale"=>"uk"}
475
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
476
+
477
+
478
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:05:47 +0300
479
+ Processing by IndexController#index as HTML
480
+ Parameters: {"locale"=>"uk"}
481
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
482
+ Processing by IndexController#index as HTML
483
+ Rendered index/index.html.erb within layouts/application (0.6ms)
484
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
485
+
486
+
487
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:06:06 +0300
488
+ Processing by IndexController#index as HTML
489
+ Parameters: {"locale"=>"en"}
490
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
491
+
492
+
493
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:06:06 +0300
494
+ Processing by IndexController#index as HTML
495
+ Parameters: {"locale"=>"uk"}
496
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
497
+
498
+
499
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:06:06 +0300
500
+ Processing by IndexController#index as HTML
501
+ Parameters: {"locale"=>"uk"}
502
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
503
+ Processing by IndexController#index as HTML
504
+ Rendered index/index.html.erb within layouts/application (0.6ms)
505
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
506
+
507
+
508
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:06:38 +0300
509
+ Processing by IndexController#index as HTML
510
+ Parameters: {"locale"=>"en"}
511
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
512
+
513
+
514
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:06:38 +0300
515
+ Processing by IndexController#index as HTML
516
+ Parameters: {"locale"=>"uk"}
517
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
518
+
519
+
520
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:06:38 +0300
521
+ Processing by IndexController#index as HTML
522
+ Parameters: {"locale"=>"uk"}
523
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
524
+ Processing by IndexController#index as HTML
525
+ Rendered index/index.html.erb within layouts/application (0.6ms)
526
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
527
+
528
+
529
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:07:05 +0300
530
+ Processing by IndexController#index as HTML
531
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
532
+
533
+
534
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:07:05 +0300
535
+ Processing by IndexController#index as HTML
536
+ Parameters: {"locale"=>"uk"}
537
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
538
+
539
+
540
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:07:05 +0300
541
+ Processing by IndexController#index as HTML
542
+ Parameters: {"locale"=>"uk"}
543
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
544
+ Processing by IndexController#index as HTML
545
+ Rendered index/index.html.erb within layouts/application (0.6ms)
546
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
547
+
548
+
549
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:07:23 +0300
550
+ Processing by IndexController#index as HTML
551
+ Parameters: {"locale"=>"en"}
552
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
553
+
554
+
555
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:07:23 +0300
556
+ Processing by IndexController#index as HTML
557
+ Parameters: {"locale"=>"uk"}
558
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
559
+
560
+
561
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:07:23 +0300
562
+ Processing by IndexController#index as HTML
563
+ Parameters: {"locale"=>"uk"}
564
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
565
+ Processing by IndexController#index as HTML
566
+ Rendered index/index.html.erb within layouts/application (0.6ms)
567
+ Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
568
+
569
+
570
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:07:39 +0300
571
+ Processing by IndexController#index as HTML
572
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
573
+
574
+
575
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:07:39 +0300
576
+ Processing by IndexController#index as HTML
577
+ Parameters: {"locale"=>"uk"}
578
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
579
+
580
+
581
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:07:39 +0300
582
+ Processing by IndexController#index as HTML
583
+ Parameters: {"locale"=>"uk"}
584
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
585
+ Processing by IndexController#index as HTML
586
+ Rendered index/index.html.erb within layouts/application (0.6ms)
587
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
588
+
589
+
590
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:08:09 +0300
591
+ Processing by IndexController#index as HTML
592
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
593
+
594
+
595
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:08:10 +0300
596
+ Processing by IndexController#index as HTML
597
+ Parameters: {"locale"=>"uk"}
598
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
599
+
600
+
601
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:08:10 +0300
602
+ Processing by IndexController#index as HTML
603
+ Parameters: {"locale"=>"uk"}
604
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
605
+ Processing by IndexController#index as HTML
606
+ Rendered index/index.html.erb within layouts/application (0.7ms)
607
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
608
+
609
+
610
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:09:40 +0300
611
+ Processing by IndexController#index as HTML
612
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
613
+
614
+
615
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:09:40 +0300
616
+ Processing by IndexController#index as HTML
617
+ Parameters: {"locale"=>"uk"}
618
+ Completed 200 OK in 48ms (Views: 47.7ms | ActiveRecord: 0.0ms)
619
+
620
+
621
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:09:40 +0300
622
+ Processing by IndexController#index as HTML
623
+ Parameters: {"locale"=>"uk"}
624
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
625
+ Processing by IndexController#index as HTML
626
+ Rendered index/index.html.erb within layouts/application (0.6ms)
627
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
628
+
629
+
630
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:10:05 +0300
631
+ Processing by IndexController#index as HTML
632
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
633
+
634
+
635
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:10:05 +0300
636
+ Processing by IndexController#index as HTML
637
+ Parameters: {"locale"=>"uk"}
638
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
639
+
640
+
641
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:10:05 +0300
642
+ Processing by IndexController#index as HTML
643
+ Parameters: {"locale"=>"uk"}
644
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
645
+ Processing by IndexController#index as HTML
646
+ Rendered index/index.html.erb within layouts/application (0.6ms)
647
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
648
+
649
+
650
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:10:54 +0300
651
+ Processing by IndexController#index as HTML
652
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
653
+
654
+
655
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:10:54 +0300
656
+ Processing by IndexController#index as HTML
657
+ Parameters: {"locale"=>"uk"}
658
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
659
+
660
+
661
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:10:54 +0300
662
+ Processing by IndexController#index as HTML
663
+ Parameters: {"locale"=>"uk"}
664
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
665
+ Processing by IndexController#index as HTML
666
+ Rendered index/index.html.erb within layouts/application (0.6ms)
667
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
668
+
669
+
670
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:11:35 +0300
671
+ Processing by IndexController#index as HTML
672
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
673
+
674
+
675
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:11:35 +0300
676
+ Processing by IndexController#index as HTML
677
+ Parameters: {"locale"=>"uk"}
678
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
679
+
680
+
681
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:11:35 +0300
682
+ Processing by IndexController#index as HTML
683
+ Parameters: {"locale"=>"uk"}
684
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
685
+ Processing by IndexController#index as HTML
686
+ Rendered index/index.html.erb within layouts/application (0.6ms)
687
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
688
+
689
+
690
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:17:34 +0300
691
+ Processing by IndexController#index as HTML
692
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
693
+
694
+
695
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:17:35 +0300
696
+ Processing by IndexController#index as HTML
697
+ Parameters: {"locale"=>"uk"}
698
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
699
+
700
+
701
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:17:35 +0300
702
+ Processing by IndexController#index as HTML
703
+ Parameters: {"locale"=>"uk"}
704
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
705
+ Processing by IndexController#index as HTML
706
+ Rendered index/index.html.erb within layouts/application (0.6ms)
707
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
708
+
709
+
710
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:18:24 +0300
711
+ Processing by IndexController#index as HTML
712
+ Parameters: {"locale"=>"en"}
713
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
714
+
715
+
716
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:18:24 +0300
717
+ Processing by IndexController#index as HTML
718
+ Parameters: {"locale"=>"uk"}
719
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
720
+
721
+
722
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:18:24 +0300
723
+ Processing by IndexController#index as HTML
724
+ Parameters: {"locale"=>"uk"}
725
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
726
+ Processing by IndexController#index as HTML
727
+ Rendered index/index.html.erb within layouts/application (0.6ms)
728
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
729
+
730
+
731
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:18:58 +0300
732
+ Processing by IndexController#index as HTML
733
+ Parameters: {"locale"=>"en"}
734
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
735
+
736
+
737
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:18:58 +0300
738
+ Processing by IndexController#index as HTML
739
+ Parameters: {"locale"=>"uk"}
740
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
741
+
742
+
743
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:18:58 +0300
744
+ Processing by IndexController#index as HTML
745
+ Parameters: {"locale"=>"uk"}
746
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
747
+ Processing by IndexController#index as HTML
748
+ Rendered index/index.html.erb within layouts/application (1.0ms)
749
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
750
+
751
+
752
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:19:15 +0300
753
+ Processing by IndexController#index as HTML
754
+ Parameters: {"locale"=>"en"}
755
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
756
+
757
+
758
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:19:15 +0300
759
+ Processing by IndexController#index as HTML
760
+ Parameters: {"locale"=>"uk"}
761
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
762
+
763
+
764
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:19:15 +0300
765
+ Processing by IndexController#index as HTML
766
+ Parameters: {"locale"=>"uk"}
767
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
768
+ Processing by IndexController#index as HTML
769
+ Rendered index/index.html.erb within layouts/application (0.7ms)
770
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
771
+
772
+
773
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:20:46 +0300
774
+ Processing by IndexController#index as HTML
775
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
776
+
777
+
778
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:20:46 +0300
779
+
780
+
781
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:20:46 +0300
782
+ Processing by IndexController#index as HTML
783
+ Rendered index/index.html.erb within layouts/application (0.6ms)
784
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
785
+
786
+
787
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:28:11 +0300
788
+ Processing by IndexController#index as HTML
789
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
790
+
791
+
792
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:28:11 +0300
793
+
794
+
795
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:28:11 +0300
796
+ Processing by IndexController#index as HTML
797
+ Rendered index/index.html.erb within layouts/application (0.6ms)
798
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
799
+
800
+
801
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:30:19 +0300
802
+ Processing by IndexController#index as HTML
803
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
804
+
805
+
806
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:30:19 +0300
807
+ Processing by IndexController#index as HTML
808
+ Parameters: {"locale"=>"uk"}
809
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
810
+
811
+
812
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:30:19 +0300
813
+ Processing by IndexController#index as HTML
814
+ Parameters: {"locale"=>"uk"}
815
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
816
+ Processing by IndexController#index as HTML
817
+ Rendered index/index.html.erb within layouts/application (0.6ms)
818
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
819
+
820
+
821
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:32:54 +0300
822
+ Processing by IndexController#index as HTML
823
+ Parameters: {"locale"=>:en}
824
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
825
+
826
+
827
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:32:54 +0300
828
+ Processing by IndexController#index as HTML
829
+ Parameters: {"locale"=>"uk"}
830
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
831
+
832
+
833
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:32:54 +0300
834
+ Processing by IndexController#index as HTML
835
+ Parameters: {"locale"=>"uk"}
836
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
837
+ Processing by IndexController#index as HTML
838
+ Rendered index/index.html.erb within layouts/application (0.6ms)
839
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
840
+
841
+
842
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:35:14 +0300
843
+ Processing by IndexController#index as HTML
844
+ Parameters: {"locale"=>{}}
845
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
846
+
847
+
848
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:35:15 +0300
849
+ Processing by IndexController#index as HTML
850
+ Parameters: {"locale"=>"uk"}
851
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
852
+
853
+
854
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:35:15 +0300
855
+ Processing by IndexController#index as HTML
856
+ Parameters: {"locale"=>"uk"}
857
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
858
+ Processing by IndexController#index as HTML
859
+ Rendered index/index.html.erb within layouts/application (0.6ms)
860
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
861
+
862
+
863
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:35:36 +0300
864
+ Processing by IndexController#index as HTML
865
+ Parameters: {"locale"=>{}}
866
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
867
+
868
+
869
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:35:36 +0300
870
+ Processing by IndexController#index as HTML
871
+ Parameters: {"locale"=>"uk"}
872
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
873
+
874
+
875
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:35:36 +0300
876
+ Processing by IndexController#index as HTML
877
+ Parameters: {"locale"=>"uk"}
878
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
879
+ Processing by IndexController#index as HTML
880
+ Rendered index/index.html.erb within layouts/application (0.6ms)
881
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
882
+
883
+
884
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:38:24 +0300
885
+ Processing by IndexController#index as HTML
886
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
887
+
888
+
889
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:38:24 +0300
890
+ Processing by IndexController#index as HTML
891
+ Parameters: {"locale"=>"uk"}
892
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
893
+
894
+
895
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:38:24 +0300
896
+ Processing by IndexController#index as HTML
897
+ Parameters: {"locale"=>"uk"}
898
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
899
+ Processing by IndexController#index as HTML
900
+ Rendered index/index.html.erb within layouts/application (0.6ms)
901
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
902
+
903
+
904
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:38:44 +0300
905
+ Processing by IndexController#index as HTML
906
+ Parameters: {"locale"=>:en}
907
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
908
+
909
+
910
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:38:44 +0300
911
+ Processing by IndexController#index as HTML
912
+ Parameters: {"locale"=>"uk"}
913
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
914
+
915
+
916
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:38:44 +0300
917
+ Processing by IndexController#index as HTML
918
+ Parameters: {"locale"=>"uk"}
919
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
920
+ Processing by IndexController#index as HTML
921
+ Rendered index/index.html.erb within layouts/application (0.7ms)
922
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
923
+
924
+
925
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:40:50 +0300
926
+ Processing by IndexController#index as HTML
927
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
928
+
929
+
930
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:40:50 +0300
931
+ Processing by IndexController#index as HTML
932
+ Parameters: {"locale"=>"uk"}
933
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
934
+
935
+
936
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:40:50 +0300
937
+ Processing by IndexController#index as HTML
938
+ Parameters: {"locale"=>"uk"}
939
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
940
+ Processing by IndexController#index as HTML
941
+ Rendered index/index.html.erb within layouts/application (0.6ms)
942
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
943
+
944
+
945
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:41:54 +0300
946
+ Processing by IndexController#index as HTML
947
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
948
+
949
+
950
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:41:54 +0300
951
+ Processing by IndexController#index as HTML
952
+ Parameters: {"locale"=>"uk"}
953
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
954
+
955
+
956
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:41:54 +0300
957
+ Processing by IndexController#index as HTML
958
+ Parameters: {"locale"=>"uk"}
959
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
960
+ Processing by IndexController#index as HTML
961
+ Rendered index/index.html.erb within layouts/application (0.8ms)
962
+ Completed 200 OK in 64ms (Views: 63.6ms | ActiveRecord: 0.0ms)
963
+
964
+
965
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:43:13 +0300
966
+ Processing by IndexController#index as HTML
967
+ Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
968
+
969
+
970
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:43:13 +0300
971
+ Processing by IndexController#index as HTML
972
+ Parameters: {"locale"=>"uk"}
973
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
974
+
975
+
976
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:43:13 +0300
977
+ Processing by IndexController#index as HTML
978
+ Parameters: {"locale"=>"uk"}
979
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
980
+ Processing by IndexController#index as HTML
981
+ Rendered index/index.html.erb within layouts/application (0.7ms)
982
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
983
+
984
+
985
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:43:31 +0300
986
+ Processing by IndexController#index as HTML
987
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
988
+
989
+
990
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:43:31 +0300
991
+ Processing by IndexController#index as HTML
992
+ Parameters: {"locale"=>"uk"}
993
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
994
+
995
+
996
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:43:31 +0300
997
+ Processing by IndexController#index as HTML
998
+ Parameters: {"locale"=>"uk"}
999
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1000
+ Processing by IndexController#index as HTML
1001
+ Rendered index/index.html.erb within layouts/application (0.7ms)
1002
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1003
+
1004
+
1005
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:44:36 +0300
1006
+ Processing by IndexController#index as HTML
1007
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1008
+
1009
+
1010
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:44:37 +0300
1011
+ Processing by IndexController#index as HTML
1012
+ Parameters: {"locale"=>"uk"}
1013
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1014
+
1015
+
1016
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:44:37 +0300
1017
+ Processing by IndexController#index as HTML
1018
+ Parameters: {"locale"=>"uk"}
1019
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1020
+ Processing by IndexController#index as HTML
1021
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1022
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1023
+
1024
+
1025
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:45:40 +0300
1026
+ Processing by IndexController#index as HTML
1027
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1028
+
1029
+
1030
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:45:40 +0300
1031
+ Processing by IndexController#index as HTML
1032
+ Parameters: {"locale"=>"uk"}
1033
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1034
+
1035
+
1036
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:45:40 +0300
1037
+ Processing by IndexController#index as HTML
1038
+ Parameters: {"locale"=>"uk"}
1039
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1040
+ Processing by IndexController#index as HTML
1041
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1042
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1043
+
1044
+
1045
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:46:10 +0300
1046
+ Processing by IndexController#index as HTML
1047
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1048
+
1049
+
1050
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:46:10 +0300
1051
+ Processing by IndexController#index as HTML
1052
+ Parameters: {"locale"=>"uk"}
1053
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1054
+
1055
+
1056
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:46:10 +0300
1057
+ Processing by IndexController#index as HTML
1058
+ Parameters: {"locale"=>"uk"}
1059
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1060
+ Processing by IndexController#index as HTML
1061
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1062
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
1063
+
1064
+
1065
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:48:17 +0300
1066
+ Processing by IndexController#index as HTML
1067
+ Parameters: {"locale"=>:en}
1068
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1069
+
1070
+
1071
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:48:17 +0300
1072
+ Processing by IndexController#index as HTML
1073
+ Parameters: {"locale"=>"uk"}
1074
+ Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
1075
+
1076
+
1077
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:48:17 +0300
1078
+ Processing by IndexController#index as HTML
1079
+ Parameters: {"locale"=>"uk"}
1080
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1081
+ Processing by IndexController#index as HTML
1082
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1083
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1084
+
1085
+
1086
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:49:55 +0300
1087
+ Processing by IndexController#index as HTML
1088
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1089
+
1090
+
1091
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:49:55 +0300
1092
+ Processing by IndexController#index as HTML
1093
+ Parameters: {"locale"=>"uk"}
1094
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1095
+
1096
+
1097
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:49:55 +0300
1098
+ Processing by IndexController#index as HTML
1099
+ Parameters: {"locale"=>"uk"}
1100
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1101
+ Processing by IndexController#index as HTML
1102
+ Rendered index/index.html.erb within layouts/application (0.7ms)
1103
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1104
+
1105
+
1106
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:54:04 +0300
1107
+ Processing by IndexController#index as HTML
1108
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1109
+
1110
+
1111
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:54:05 +0300
1112
+ Processing by IndexController#index as HTML
1113
+ Parameters: {"locale"=>"uk"}
1114
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1115
+
1116
+
1117
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:54:05 +0300
1118
+ Processing by IndexController#index as HTML
1119
+ Parameters: {"locale"=>"uk"}
1120
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1121
+ Processing by IndexController#index as HTML
1122
+ Rendered index/index.html.erb within layouts/application (0.7ms)
1123
+ Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1124
+
1125
+
1126
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:58:28 +0300
1127
+ Processing by IndexController#index as HTML
1128
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
1129
+
1130
+
1131
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:58:28 +0300
1132
+ Processing by IndexController#index as HTML
1133
+ Parameters: {"locale"=>"uk"}
1134
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1135
+
1136
+
1137
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:58:28 +0300
1138
+ Processing by IndexController#index as HTML
1139
+ Parameters: {"locale"=>"uk"}
1140
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1141
+ Processing by IndexController#index as HTML
1142
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1143
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1144
+
1145
+
1146
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:58:56 +0300
1147
+ Processing by IndexController#index as HTML
1148
+ Completed 200 OK in 55ms (Views: 55.0ms | ActiveRecord: 0.0ms)
1149
+
1150
+
1151
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:58:56 +0300
1152
+ Processing by IndexController#index as HTML
1153
+ Parameters: {"locale"=>"uk"}
1154
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1155
+
1156
+
1157
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:58:56 +0300
1158
+ Processing by IndexController#index as HTML
1159
+ Parameters: {"locale"=>"uk"}
1160
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1161
+ Processing by IndexController#index as HTML
1162
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1163
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
1164
+
1165
+
1166
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:59:14 +0300
1167
+ Processing by IndexController#index as HTML
1168
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1169
+
1170
+
1171
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:59:15 +0300
1172
+ Processing by IndexController#index as HTML
1173
+ Parameters: {"locale"=>"uk"}
1174
+ Completed 200 OK in 51ms (Views: 50.9ms | ActiveRecord: 0.0ms)
1175
+
1176
+
1177
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:59:15 +0300
1178
+ Processing by IndexController#index as HTML
1179
+ Parameters: {"locale"=>"uk"}
1180
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1181
+ Processing by IndexController#index as HTML
1182
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1183
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1184
+
1185
+
1186
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:59:26 +0300
1187
+ Processing by IndexController#index as HTML
1188
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1189
+
1190
+
1191
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:59:26 +0300
1192
+ Processing by IndexController#index as HTML
1193
+ Parameters: {"locale"=>"uk"}
1194
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1195
+
1196
+
1197
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:59:26 +0300
1198
+ Processing by IndexController#index as HTML
1199
+ Parameters: {"locale"=>"uk"}
1200
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1201
+ Processing by IndexController#index as HTML
1202
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1203
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1204
+
1205
+
1206
+ Started GET "/" for 127.0.0.1 at 2011-10-18 11:59:51 +0300
1207
+ Processing by IndexController#index as HTML
1208
+ Parameters: {"locale"=>"ru"}
1209
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
1210
+
1211
+
1212
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:59:51 +0300
1213
+ Processing by IndexController#index as HTML
1214
+ Parameters: {"locale"=>"uk"}
1215
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
1216
+
1217
+
1218
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 11:59:51 +0300
1219
+ Processing by IndexController#index as HTML
1220
+ Parameters: {"locale"=>"uk"}
1221
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
1222
+ Processing by IndexController#index as HTML
1223
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1224
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1225
+
1226
+
1227
+ Started GET "/" for 127.0.0.1 at 2011-10-18 12:00:17 +0300
1228
+ Processing by IndexController#index as HTML
1229
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1230
+
1231
+
1232
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:00:17 +0300
1233
+ Processing by IndexController#index as HTML
1234
+ Parameters: {"locale"=>"uk"}
1235
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1236
+
1237
+
1238
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:00:17 +0300
1239
+ Processing by IndexController#index as HTML
1240
+ Parameters: {"locale"=>"uk"}
1241
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1242
+ Processing by IndexController#index as HTML
1243
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1244
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
1245
+
1246
+
1247
+ Started GET "/" for 127.0.0.1 at 2011-10-18 12:00:49 +0300
1248
+ Processing by IndexController#index as HTML
1249
+ Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1250
+
1251
+
1252
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:00:49 +0300
1253
+ Processing by IndexController#index as HTML
1254
+ Parameters: {"locale"=>"uk"}
1255
+ Completed 200 OK in 53ms (Views: 52.9ms | ActiveRecord: 0.0ms)
1256
+
1257
+
1258
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:00:49 +0300
1259
+ Processing by IndexController#index as HTML
1260
+ Parameters: {"locale"=>"uk"}
1261
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1262
+ Processing by IndexController#index as HTML
1263
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1264
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
1265
+
1266
+
1267
+ Started GET "/" for 127.0.0.1 at 2011-10-18 12:01:09 +0300
1268
+ Processing by IndexController#index as HTML
1269
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1270
+
1271
+
1272
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:01:09 +0300
1273
+ Processing by IndexController#index as HTML
1274
+ Parameters: {"locale"=>"uk"}
1275
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
1276
+
1277
+
1278
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:01:09 +0300
1279
+ Processing by IndexController#index as HTML
1280
+ Parameters: {"locale"=>"uk"}
1281
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1282
+ Processing by IndexController#index as HTML
1283
+ Rendered index/index.html.erb within layouts/application (0.6ms)
1284
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
1285
+
1286
+
1287
+ Started GET "/" for 127.0.0.1 at 2011-10-18 12:03:46 +0300
1288
+ Processing by IndexController#index as HTML
1289
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
1290
+
1291
+
1292
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:03:46 +0300
1293
+ Processing by IndexController#index as HTML
1294
+ Parameters: {"locale"=>"uk"}
1295
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1296
+
1297
+
1298
+ Started GET "/uk" for 127.0.0.1 at 2011-10-18 12:03:46 +0300
1299
+ Processing by IndexController#index as HTML
1300
+ Parameters: {"locale"=>"uk"}
1301
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1302
+ Processing by IndexController#index as HTML
1303
+ Rendered index/index.html.erb within layouts/application (0.4ms)
1304
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
1305
+
1306
+
1307
+ Started GET "/" for 127.0.0.1 at Tue Oct 18 13:31:47 +0300 2011
1308
+ Processing by IndexController#index as HTML
1309
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
1310
+
1311
+
1312
+ Started GET "/uk" for 127.0.0.1 at Tue Oct 18 13:31:47 +0300 2011
1313
+ Processing by IndexController#index as HTML
1314
+ Parameters: {"locale"=>"uk"}
1315
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
1316
+
1317
+
1318
+ Started GET "/uk" for 127.0.0.1 at Tue Oct 18 13:31:47 +0300 2011
1319
+ Processing by IndexController#index as HTML
1320
+ Parameters: {"locale"=>"uk"}
1321
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)