role_block_haml 0.2.2 → 0.2.3

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.
@@ -1,72 +1,90 @@
1
1
  module RoleBlockHaml
2
- if defined? ::Rails
3
- class Engine < ::Rails::Engine
4
- initializer 'role_block_haml' do |app|
5
- if defined? Haml::Parser
6
- class Haml::Parser
7
- def self.parse_class_and_id(list)
8
- attributes = {}
9
- return attributes if list.empty?
2
+ module HamlExtension
10
3
 
11
- list.scan(/(@{2}|[#\@.])([-:_a-zA-Z0-9]+)/) do |type, property|
12
- case type
13
- when '.'
14
- if attributes['class']
15
- attributes['class'] += " "
16
- else
17
- attributes['class'] = ""
18
- end
19
- attributes['class'] += property
20
- when '#' then attributes['id'] = property
21
- when '@'
22
- if attributes['data-role']
23
- attributes['data-role'] += ' '
24
- else
25
- attributes['data-role'] = ''
26
- end
27
- attributes['data-role'] += property
28
- when '@@'
29
- if attributes['data-block']
30
- attributes['data-block'] += ' '
31
- else
32
- attributes['data-block'] = ''
33
- end
34
- attributes['data-block'] += property
35
- end
36
- end
37
- attributes
38
- end
4
+ def self.included(receiver)
5
+
6
+ receiver.instance_eval do
7
+ def parse_class_and_id(list)
8
+ attributes = {}
9
+ return attributes if list.empty?
39
10
 
40
- def process_line_with_feature(text, index)
41
- if text[0] == '@'
42
- @index = index + 1
43
- if text[1] == '@'
44
- @index = index + 1
11
+ list.scan(/(@{2}|[#\@.])([-:_a-zA-Z0-9]+)/) do |type, property|
12
+ case type
13
+ when '.'
14
+ if attributes['class']
15
+ attributes['class'] += " "
16
+ else
17
+ attributes['class'] = ""
18
+ end
19
+ attributes['class'] += property
20
+ when '#' then attributes['id'] = property
21
+ when '@'
22
+ if attributes['data-role']
23
+ attributes['data-role'] += ' '
24
+ else
25
+ attributes['data-role'] = ''
26
+ end
27
+ attributes['data-role'] += property
28
+ when '@@'
29
+ if attributes['data-block']
30
+ attributes['data-block'] += ' '
31
+ else
32
+ attributes['data-block'] = ''
45
33
  end
46
- push div(text)
47
- else
48
- self.send(:process_line_without_feature, text, index)
49
- end
34
+ attributes['data-block'] += property
50
35
  end
36
+ end
37
+ attributes
38
+ end
39
+ end
51
40
 
52
- alias_method_chain :process_line, :feature
53
-
54
- class FakeLine
55
- def initialize(value)
56
- @value = value
57
- end
41
+ receiver.send :include, InstanceMethods
42
+ receiver.class_eval do
43
+ alias_method_chain :process_line, :feature
44
+ alias_method_chain :parse_tag, :feature
45
+ end
58
46
 
59
- def scan(regexp)
60
- @value
61
- end
62
- end
47
+ end
63
48
 
64
- def parse_tag_with_feature(line)
65
- self.send(:parse_tag_without_feature, FakeLine.new(line.scan(/%([-:\w]+)([-:\w\.\#\@]*)(.*)/)))
66
- end
49
+ module InstanceMethods
67
50
 
68
- alias_method_chain :parse_tag, :feature
51
+ def process_line_with_feature(text, index)
52
+ if text[0] == '@'
53
+ @index = index + 1
54
+ if text[1] == '@'
55
+ @index = index + 1
69
56
  end
57
+ push div(text)
58
+ else
59
+ self.send(:process_line_without_feature, text, index)
60
+ end
61
+ end
62
+
63
+ class FakeLine
64
+ def initialize(value)
65
+ @value = value
66
+ end
67
+
68
+ def scan(regexp)
69
+ @value
70
+ end
71
+ end
72
+
73
+ def parse_tag_with_feature(line)
74
+ self.send(:parse_tag_without_feature, FakeLine.new(line.scan(/%([-:\w]+)([-:\w\.\#\@]*)(.*)/)))
75
+ end
76
+ end
77
+ end
78
+
79
+ def self.install_to_haml!
80
+ Haml::Parser.send :include, RoleBlockHaml::HamlExtension
81
+ end
82
+
83
+ if defined? ::Rails
84
+ class Engine < ::Rails::Engine
85
+ initializer 'role_block_haml' do |app|
86
+ if defined? Haml::Parser
87
+ RoleBlockHaml.install_to_haml!
70
88
  end
71
89
  end
72
90
  end
@@ -1,3 +1,3 @@
1
1
  module RoleBlockHaml
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
Binary file
@@ -0,0 +1,23 @@
1
+  (1.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2
+  (1.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.1ms) SELECT version FROM "schema_migrations"
7
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
8
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
9
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
10
+  (0.1ms) SELECT version FROM "schema_migrations"
11
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
12
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
13
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
14
+  (0.1ms) SELECT version FROM "schema_migrations"
15
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
16
+  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
17
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
+  (0.1ms) SELECT version FROM "schema_migrations"
19
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
20
+  (1.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
21
+  (1.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
22
+  (0.1ms) SELECT version FROM "schema_migrations"
23
+  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
@@ -0,0 +1,4262 @@
1
+  (0.3ms) begin transaction
2
+  (0.0ms) rollback transaction
3
+  (0.3ms) begin transaction
4
+  (0.0ms) rollback transaction
5
+  (0.3ms) begin transaction
6
+  (0.0ms) rollback transaction
7
+  (0.3ms) begin transaction
8
+ Started GET "/" for 127.0.0.1 at 2014-03-07 13:55:47 +0400
9
+  (0.1ms) rollback transaction
10
+  (0.3ms) begin transaction
11
+ Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:04 +0400
12
+  (0.1ms) rollback transaction
13
+  (0.3ms) begin transaction
14
+ Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:07 +0400
15
+  (0.0ms) rollback transaction
16
+  (0.3ms) begin transaction
17
+ Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:52 +0400
18
+  (0.0ms) rollback transaction
19
+  (0.3ms) begin transaction
20
+ Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:59 +0400
21
+  (0.0ms) rollback transaction
22
+  (0.3ms) begin transaction
23
+ Started GET "/" for 127.0.0.1 at 2014-03-07 13:58:45 +0400
24
+  (0.0ms) rollback transaction
25
+  (0.3ms) begin transaction
26
+ Started GET "/" for 127.0.0.1 at 2014-03-07 13:59:17 +0400
27
+ Processing by WelcomeController#index as HTML
28
+ Completed 500 Internal Server Error in 28ms
29
+  (0.1ms) rollback transaction
30
+  (0.3ms) begin transaction
31
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:02:41 +0400
32
+ Processing by WelcomeController#index as HTML
33
+ Completed 500 Internal Server Error in 9ms
34
+  (0.1ms) rollback transaction
35
+  (0.3ms) begin transaction
36
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:05:45 +0400
37
+ Processing by WelcomeController#index as HTML
38
+ Completed 500 Internal Server Error in 10ms
39
+  (0.1ms) rollback transaction
40
+  (0.3ms) begin transaction
41
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:07:01 +0400
42
+ Processing by WelcomeController#index as HTML
43
+ Completed 500 Internal Server Error in 9ms
44
+  (0.1ms) rollback transaction
45
+  (0.4ms) begin transaction
46
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:12:10 +0400
47
+ Processing by WelcomeController#index as HTML
48
+ Completed 500 Internal Server Error in 9ms
49
+  (0.1ms) rollback transaction
50
+  (0.3ms) begin transaction
51
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:13:15 +0400
52
+ Processing by WelcomeController#index as HTML
53
+ Completed 500 Internal Server Error in 9ms
54
+  (0.1ms) rollback transaction
55
+  (0.3ms) begin transaction
56
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:13:25 +0400
57
+ Processing by WelcomeController#index as HTML
58
+ Completed 500 Internal Server Error in 9ms
59
+  (0.1ms) rollback transaction
60
+  (0.3ms) begin transaction
61
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:38:16 +0400
62
+ Processing by WelcomeController#index as HTML
63
+ Completed 500 Internal Server Error in 28ms
64
+  (0.1ms) rollback transaction
65
+  (0.3ms) begin transaction
66
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:38:37 +0400
67
+ Processing by WelcomeController#index as HTML
68
+ Completed 500 Internal Server Error in 10ms
69
+  (0.1ms) rollback transaction
70
+  (0.3ms) begin transaction
71
+ Started GET "/" for 127.0.0.1 at 2014-03-07 14:38:41 +0400
72
+ Processing by WelcomeController#index as HTML
73
+ Completed 500 Internal Server Error in 9ms
74
+  (0.1ms) rollback transaction
75
+ Connecting to database specified by database.yml
76
+  (0.3ms) begin transaction
77
+ Started GET "/" for 127.0.0.1 at 2014-03-07 15:57:56 +0400
78
+  (0.0ms) rollback transaction
79
+ Connecting to database specified by database.yml
80
+  (0.3ms) begin transaction
81
+ Started GET "/" for 127.0.0.1 at 2014-03-07 15:58:03 +0400
82
+  (0.1ms) rollback transaction
83
+ Connecting to database specified by database.yml
84
+  (0.2ms) begin transaction
85
+ Started GET "/" for 127.0.0.1 at 2014-03-07 15:59:10 +0400
86
+  (0.1ms) rollback transaction
87
+ Connecting to database specified by database.yml
88
+  (0.3ms) begin transaction
89
+ Started GET "/" for 127.0.0.1 at 2014-03-07 15:59:47 +0400
90
+ Processing by WelcomeController#index as HTML
91
+ Completed 500 Internal Server Error in 8.8ms
92
+  (0.1ms) rollback transaction
93
+ Connecting to database specified by database.yml
94
+  (0.2ms) begin transaction
95
+ Started GET "/" for 127.0.0.1 at 2014-03-07 16:24:50 +0400
96
+ Processing by WelcomeController#index as HTML
97
+ Completed 500 Internal Server Error in 9.5ms
98
+  (0.0ms) rollback transaction
99
+ Connecting to database specified by database.yml
100
+  (0.3ms) begin transaction
101
+ Started GET "/" for 127.0.0.1 at 2014-03-07 16:59:40 +0400
102
+ Processing by WelcomeController#index as HTML
103
+ Completed 500 Internal Server Error in 30.0ms
104
+  (0.1ms) rollback transaction
105
+ Connecting to database specified by database.yml
106
+  (0.2ms) begin transaction
107
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:06:11 +0400
108
+ Processing by WelcomeController#index as HTML
109
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
110
+ Completed 200 OK in 9.0ms (Views: 8.8ms | ActiveRecord: 0.0ms)
111
+  (0.1ms) rollback transaction
112
+ Connecting to database specified by database.yml
113
+  (0.2ms) begin transaction
114
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:06:44 +0400
115
+ Processing by WelcomeController#index as HTML
116
+ Completed 500 Internal Server Error in 10.5ms
117
+  (0.1ms) rollback transaction
118
+ Connecting to database specified by database.yml
119
+  (0.2ms) begin transaction
120
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:08:41 +0400
121
+ Processing by WelcomeController#index as HTML
122
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
123
+ Completed 200 OK in 9.0ms (Views: 8.8ms | ActiveRecord: 0.0ms)
124
+  (0.1ms) rollback transaction
125
+ Connecting to database specified by database.yml
126
+  (0.2ms) begin transaction
127
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:16:42 +0400
128
+ Processing by WelcomeController#index as HTML
129
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
130
+ Completed 200 OK in 8.5ms (Views: 8.3ms | ActiveRecord: 0.0ms)
131
+  (0.0ms) rollback transaction
132
+ Connecting to database specified by database.yml
133
+  (0.3ms) begin transaction
134
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:19:01 +0400
135
+ Processing by WelcomeController#index as HTML
136
+ Rendered welcome/index.html.haml within layouts/application (0.9ms)
137
+ Completed 200 OK in 9.1ms (Views: 8.8ms | ActiveRecord: 0.0ms)
138
+  (0.0ms) rollback transaction
139
+ Connecting to database specified by database.yml
140
+  (0.3ms) begin transaction
141
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:19:38 +0400
142
+ Processing by WelcomeController#index as HTML
143
+ Rendered welcome/index.html.haml within layouts/application (0.8ms)
144
+ Completed 200 OK in 8.7ms (Views: 8.4ms | ActiveRecord: 0.0ms)
145
+  (0.0ms) rollback transaction
146
+ Connecting to database specified by database.yml
147
+  (0.3ms) begin transaction
148
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:23:38 +0400
149
+ Processing by WelcomeController#index as HTML
150
+ Rendered welcome/index.html.haml within layouts/application (0.9ms)
151
+ Completed 200 OK in 9.4ms (Views: 9.1ms | ActiveRecord: 0.0ms)
152
+  (0.1ms) rollback transaction
153
+ Connecting to database specified by database.yml
154
+  (0.3ms) begin transaction
155
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:26:23 +0400
156
+ Processing by WelcomeController#index as HTML
157
+ Rendered welcome/index.html.haml within layouts/application (1.0ms)
158
+ Completed 200 OK in 10.1ms (Views: 9.7ms | ActiveRecord: 0.0ms)
159
+  (0.1ms) rollback transaction
160
+ Connecting to database specified by database.yml
161
+  (0.3ms) begin transaction
162
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:31:00 +0400
163
+ Processing by WelcomeController#index as HTML
164
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
165
+ Completed 500 Internal Server Error in 10.2ms
166
+  (0.1ms) rollback transaction
167
+  (0.1ms) begin transaction
168
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:31:00 +0400
169
+ Processing by WelcomeController#index as HTML
170
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
171
+ Completed 500 Internal Server Error in 0.9ms
172
+  (0.0ms) rollback transaction
173
+ Connecting to database specified by database.yml
174
+  (0.3ms) begin transaction
175
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:31:47 +0400
176
+ Processing by WelcomeController#index as HTML
177
+ Rendered welcome/index.html.haml within layouts/application (0.9ms)
178
+ Completed 200 OK in 9.0ms (Views: 8.8ms | ActiveRecord: 0.0ms)
179
+  (0.1ms) rollback transaction
180
+  (0.1ms) begin transaction
181
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:31:47 +0400
182
+ Processing by WelcomeController#index as HTML
183
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
184
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
185
+  (0.0ms) rollback transaction
186
+ Connecting to database specified by database.yml
187
+  (0.3ms) begin transaction
188
+  (0.0ms) rollback transaction
189
+  (0.0ms) begin transaction
190
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:32:01 +0400
191
+ Processing by WelcomeController#index as HTML
192
+ Rendered welcome/index.html.haml within layouts/application (1.0ms)
193
+ Completed 200 OK in 9.4ms (Views: 9.1ms | ActiveRecord: 0.0ms)
194
+  (0.1ms) rollback transaction
195
+ Connecting to database specified by database.yml
196
+  (0.2ms) begin transaction
197
+  (0.0ms) rollback transaction
198
+  (0.0ms) begin transaction
199
+  (0.0ms) rollback transaction
200
+ Connecting to database specified by database.yml
201
+  (0.2ms) begin transaction
202
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:35:31 +0400
203
+ Processing by WelcomeController#index as HTML
204
+ Rendered welcome/index.html.haml within layouts/application (2.2ms)
205
+ Completed 200 OK in 12.2ms (Views: 12.0ms | ActiveRecord: 0.0ms)
206
+  (0.1ms) rollback transaction
207
+  (0.0ms) begin transaction
208
+  (0.0ms) rollback transaction
209
+ Connecting to database specified by database.yml
210
+  (0.3ms) begin transaction
211
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:39:43 +0400
212
+ Processing by WelcomeController#index as HTML
213
+ Rendered welcome/index.html.haml within layouts/application (2.3ms)
214
+ Completed 200 OK in 11.7ms (Views: 11.4ms | ActiveRecord: 0.0ms)
215
+  (0.1ms) rollback transaction
216
+  (0.0ms) begin transaction
217
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:39:43 +0400
218
+ Processing by WelcomeController#index as HTML
219
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
220
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
221
+  (0.1ms) rollback transaction
222
+ Connecting to database specified by database.yml
223
+  (0.3ms) begin transaction
224
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:40:02 +0400
225
+ Processing by WelcomeController#index as HTML
226
+ Rendered welcome/index.html.haml within layouts/application (1.8ms)
227
+ Completed 200 OK in 11.0ms (Views: 10.7ms | ActiveRecord: 0.0ms)
228
+  (0.1ms) rollback transaction
229
+  (0.0ms) begin transaction
230
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:40:02 +0400
231
+ Processing by WelcomeController#index as HTML
232
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
233
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
234
+  (0.0ms) rollback transaction
235
+ Connecting to database specified by database.yml
236
+  (0.3ms) begin transaction
237
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:40:17 +0400
238
+ Processing by WelcomeController#index as HTML
239
+ Rendered welcome/index.html.haml within layouts/application (2.2ms)
240
+ Completed 200 OK in 12.0ms (Views: 11.7ms | ActiveRecord: 0.0ms)
241
+  (0.1ms) rollback transaction
242
+  (0.0ms) begin transaction
243
+ Started GET "/" for 127.0.0.1 at 2014-03-07 17:40:17 +0400
244
+ Processing by WelcomeController#index as HTML
245
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
246
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
247
+  (0.0ms) rollback transaction
248
+ Connecting to database specified by database.yml
249
+  (0.3ms) begin transaction
250
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:00:06 +0400
251
+ Processing by WelcomeController#index as HTML
252
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
253
+ Completed 200 OK in 11.1ms (Views: 10.9ms | ActiveRecord: 0.0ms)
254
+  (0.1ms) rollback transaction
255
+  (0.0ms) begin transaction
256
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:00:06 +0400
257
+ Processing by WelcomeController#index as HTML
258
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
259
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
260
+  (0.0ms) rollback transaction
261
+  (0.0ms) begin transaction
262
+  (0.0ms) rollback transaction
263
+ Connecting to database specified by database.yml
264
+  (0.3ms) begin transaction
265
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:01:28 +0400
266
+ Processing by WelcomeController#index as HTML
267
+ Rendered welcome/index.html.haml within layouts/application (2.2ms)
268
+ Completed 200 OK in 12.1ms (Views: 11.8ms | ActiveRecord: 0.0ms)
269
+  (0.1ms) rollback transaction
270
+  (0.0ms) begin transaction
271
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:01:28 +0400
272
+ Processing by WelcomeController#index as HTML
273
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
274
+ Completed 200 OK in 1.3ms (Views: 1.1ms | ActiveRecord: 0.0ms)
275
+  (0.0ms) rollback transaction
276
+  (0.0ms) begin transaction
277
+  (0.0ms) rollback transaction
278
+ Connecting to database specified by database.yml
279
+  (0.2ms) begin transaction
280
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:01:41 +0400
281
+ Processing by WelcomeController#index as HTML
282
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
283
+ Completed 200 OK in 12.1ms (Views: 11.8ms | ActiveRecord: 0.0ms)
284
+  (0.1ms) rollback transaction
285
+  (0.1ms) begin transaction
286
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:01:41 +0400
287
+ Processing by WelcomeController#index as HTML
288
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
289
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
290
+  (0.1ms) rollback transaction
291
+  (0.0ms) begin transaction
292
+  (0.0ms) rollback transaction
293
+ Connecting to database specified by database.yml
294
+  (0.3ms) begin transaction
295
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:01:57 +0400
296
+ Processing by WelcomeController#index as HTML
297
+ Rendered welcome/index.html.haml within layouts/application (2.2ms)
298
+ Completed 200 OK in 11.6ms (Views: 11.4ms | ActiveRecord: 0.0ms)
299
+  (0.1ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:01:57 +0400
302
+ Processing by WelcomeController#index as HTML
303
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
304
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
305
+  (0.0ms) rollback transaction
306
+  (0.0ms) begin transaction
307
+  (0.0ms) rollback transaction
308
+ Connecting to database specified by database.yml
309
+  (0.2ms) begin transaction
310
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:02:07 +0400
311
+ Processing by WelcomeController#index as HTML
312
+ Rendered welcome/index.html.haml within layouts/application (2.0ms)
313
+ Completed 200 OK in 11.1ms (Views: 10.9ms | ActiveRecord: 0.0ms)
314
+  (0.1ms) rollback transaction
315
+  (0.0ms) begin transaction
316
+ Started GET "/" for 127.0.0.1 at 2014-03-07 18:02:07 +0400
317
+ Processing by WelcomeController#index as HTML
318
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
319
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
320
+  (0.0ms) rollback transaction
321
+  (0.0ms) begin transaction
322
+  (0.0ms) rollback transaction
323
+ Connecting to database specified by database.yml
324
+  (0.3ms) begin transaction
325
+  (0.0ms) rollback transaction
326
+  (0.0ms) begin transaction
327
+ Started GET "/" for 127.0.0.1 at 2014-03-11 18:50:36 +0400
328
+ Processing by WelcomeController#index as HTML
329
+ Rendered welcome/index.html.haml within layouts/application (2.3ms)
330
+ Completed 200 OK in 45.6ms (Views: 45.3ms | ActiveRecord: 0.0ms)
331
+  (0.1ms) rollback transaction
332
+  (0.0ms) begin transaction
333
+ Started GET "/" for 127.0.0.1 at 2014-03-11 18:50:36 +0400
334
+ Processing by WelcomeController#index as HTML
335
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
336
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
337
+  (0.0ms) rollback transaction
338
+ Connecting to database specified by database.yml
339
+  (0.2ms) begin transaction
340
+ Started GET "/" for 127.0.0.1 at 2014-03-11 18:52:02 +0400
341
+ Processing by WelcomeController#index as HTML
342
+ Rendered welcome/index.html.haml within layouts/application (2.3ms)
343
+ Completed 200 OK in 11.5ms (Views: 11.3ms | ActiveRecord: 0.0ms)
344
+  (0.0ms) rollback transaction
345
+  (0.0ms) begin transaction
346
+ Started GET "/" for 127.0.0.1 at 2014-03-11 18:52:02 +0400
347
+ Processing by WelcomeController#index as HTML
348
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
349
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
350
+  (0.0ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+  (0.0ms) rollback transaction
353
+ Connecting to database specified by database.yml
354
+  (0.3ms) begin transaction
355
+ Started GET "/" for 127.0.0.1 at 2014-03-11 18:52:19 +0400
356
+ Processing by WelcomeController#index as HTML
357
+ Rendered welcome/index.html.haml within layouts/application (2.0ms)
358
+ Completed 200 OK in 11.5ms (Views: 11.2ms | ActiveRecord: 0.0ms)
359
+  (0.1ms) rollback transaction
360
+  (0.0ms) begin transaction
361
+ Started GET "/" for 127.0.0.1 at 2014-03-11 18:52:19 +0400
362
+ Processing by WelcomeController#index as HTML
363
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
364
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
365
+  (0.0ms) rollback transaction
366
+  (0.0ms) begin transaction
367
+  (0.0ms) rollback transaction
368
+ Connecting to database specified by database.yml
369
+  (0.3ms) begin transaction
370
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:03:14 +0400
371
+ Processing by WelcomeController#index as HTML
372
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
373
+ Completed 200 OK in 10.9ms (Views: 10.6ms | ActiveRecord: 0.0ms)
374
+  (0.1ms) rollback transaction
375
+  (0.0ms) begin transaction
376
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:03:14 +0400
377
+ Processing by WelcomeController#index as HTML
378
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
379
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
380
+  (0.0ms) rollback transaction
381
+  (0.0ms) begin transaction
382
+  (0.0ms) rollback transaction
383
+ Connecting to database specified by database.yml
384
+  (0.3ms) begin transaction
385
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:03:46 +0400
386
+ Processing by WelcomeController#index as HTML
387
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
388
+ Completed 200 OK in 10.9ms (Views: 10.7ms | ActiveRecord: 0.0ms)
389
+  (0.1ms) rollback transaction
390
+  (0.0ms) begin transaction
391
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:03:46 +0400
392
+ Processing by WelcomeController#index as HTML
393
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
394
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
395
+  (0.0ms) rollback transaction
396
+  (0.0ms) begin transaction
397
+  (0.0ms) rollback transaction
398
+ Connecting to database specified by database.yml
399
+  (0.3ms) begin transaction
400
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:04:16 +0400
401
+ Processing by WelcomeController#index as HTML
402
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
403
+ Completed 200 OK in 11.3ms (Views: 11.0ms | ActiveRecord: 0.0ms)
404
+  (0.0ms) rollback transaction
405
+  (0.0ms) begin transaction
406
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:04:16 +0400
407
+ Processing by WelcomeController#index as HTML
408
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
409
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
410
+  (0.0ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+  (0.0ms) rollback transaction
413
+ Connecting to database specified by database.yml
414
+  (0.2ms) begin transaction
415
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:07:30 +0400
416
+ Processing by WelcomeController#index as HTML
417
+ Rendered welcome/index.html.haml within layouts/application (2.1ms)
418
+ Completed 200 OK in 12.1ms (Views: 11.8ms | ActiveRecord: 0.0ms)
419
+  (0.0ms) rollback transaction
420
+  (0.0ms) begin transaction
421
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:07:30 +0400
422
+ Processing by WelcomeController#index as HTML
423
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
424
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
425
+  (0.0ms) rollback transaction
426
+  (0.0ms) begin transaction
427
+  (0.0ms) rollback transaction
428
+ Connecting to database specified by database.yml
429
+  (0.2ms) begin transaction
430
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:08:40 +0400
431
+ Processing by WelcomeController#index as HTML
432
+ Rendered welcome/index.html.haml within layouts/application (1.8ms)
433
+ Completed 200 OK in 10.5ms (Views: 10.2ms | ActiveRecord: 0.0ms)
434
+  (0.1ms) rollback transaction
435
+  (0.0ms) begin transaction
436
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:08:40 +0400
437
+ Processing by WelcomeController#index as HTML
438
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
439
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
440
+  (0.0ms) rollback transaction
441
+  (0.0ms) begin transaction
442
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:08:40 +0400
443
+ Processing by WelcomeController#index as HTML
444
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
445
+ Completed 200 OK in 1.2ms (Views: 1.0ms | ActiveRecord: 0.0ms)
446
+  (0.0ms) rollback transaction
447
+  (0.0ms) begin transaction
448
+  (0.0ms) rollback transaction
449
+ Connecting to database specified by database.yml
450
+  (0.2ms) begin transaction
451
+  (0.0ms) rollback transaction
452
+  (0.0ms) begin transaction
453
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:10:03 +0400
454
+ Processing by WelcomeController#index as HTML
455
+ Rendered welcome/index.html.haml within layouts/application (2.0ms)
456
+ Completed 200 OK in 11.4ms (Views: 11.1ms | ActiveRecord: 0.0ms)
457
+  (0.1ms) rollback transaction
458
+  (0.0ms) begin transaction
459
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:10:03 +0400
460
+ Processing by WelcomeController#index as HTML
461
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
462
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
463
+  (0.0ms) rollback transaction
464
+  (0.0ms) begin transaction
465
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:10:03 +0400
466
+ Processing by WelcomeController#index as HTML
467
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
468
+ Completed 200 OK in 1.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
469
+  (0.0ms) rollback transaction
470
+ Connecting to database specified by database.yml
471
+  (0.3ms) begin transaction
472
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:11:19 +0400
473
+ Processing by WelcomeController#index as HTML
474
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
475
+ Completed 200 OK in 11.4ms (Views: 11.1ms | ActiveRecord: 0.0ms)
476
+  (0.1ms) rollback transaction
477
+  (0.0ms) begin transaction
478
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:11:19 +0400
479
+ Processing by WelcomeController#index as HTML
480
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
481
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
482
+  (0.0ms) rollback transaction
483
+  (0.1ms) begin transaction
484
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:11:19 +0400
485
+ Processing by WelcomeController#index as HTML
486
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
487
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
488
+  (0.0ms) rollback transaction
489
+ Connecting to database specified by database.yml
490
+  (0.2ms) begin transaction
491
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:11:45 +0400
492
+ Processing by WelcomeController#index as HTML
493
+ Rendered welcome/index.html.haml within layouts/application (1.9ms)
494
+ Completed 200 OK in 11.9ms (Views: 11.6ms | ActiveRecord: 0.0ms)
495
+  (0.0ms) rollback transaction
496
+  (0.0ms) begin transaction
497
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:11:45 +0400
498
+ Processing by WelcomeController#index as HTML
499
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
500
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
501
+  (0.0ms) rollback transaction
502
+  (0.0ms) begin transaction
503
+ Started GET "/" for 127.0.0.1 at 2014-03-11 19:11:45 +0400
504
+ Processing by WelcomeController#index as HTML
505
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
506
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
507
+  (0.0ms) rollback transaction
508
+ Connecting to database specified by database.yml
509
+  (0.3ms) begin transaction
510
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:52:08 +0400
511
+ Processing by WelcomeController#index as HTML
512
+ Rendered welcome/index.html.haml within layouts/application (2.2ms)
513
+ Completed 200 OK in 28.5ms (Views: 28.2ms | ActiveRecord: 0.0ms)
514
+  (0.1ms) rollback transaction
515
+  (0.0ms) begin transaction
516
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:52:08 +0400
517
+ Processing by WelcomeController#index as HTML
518
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
519
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
520
+  (0.0ms) rollback transaction
521
+  (0.0ms) begin transaction
522
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:52:08 +0400
523
+ Processing by WelcomeController#index as HTML
524
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
525
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
526
+  (0.1ms) rollback transaction
527
+  (0.0ms) begin transaction
528
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:52:08 +0400
529
+ Processing by WelcomeController#index as HTML
530
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
531
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
532
+  (0.0ms) rollback transaction
533
+ Connecting to database specified by database.yml
534
+  (0.2ms) begin transaction
535
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:14 +0400
536
+ Processing by WelcomeController#index as HTML
537
+ Rendered welcome/index.html.haml within layouts/application (1.8ms)
538
+ Completed 200 OK in 10.6ms (Views: 10.3ms | ActiveRecord: 0.0ms)
539
+  (0.0ms) rollback transaction
540
+  (0.0ms) begin transaction
541
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:14 +0400
542
+ Processing by WelcomeController#index as HTML
543
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
544
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
545
+  (0.0ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:14 +0400
548
+ Processing by WelcomeController#index as HTML
549
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
550
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
551
+  (0.0ms) rollback transaction
552
+  (0.0ms) begin transaction
553
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:14 +0400
554
+ Processing by WelcomeController#index as HTML
555
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
556
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
557
+  (0.0ms) rollback transaction
558
+ Connecting to database specified by database.yml
559
+  (0.3ms) begin transaction
560
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:24 +0400
561
+ Processing by WelcomeController#index as HTML
562
+ Rendered welcome/index.html.haml within layouts/application (2.6ms)
563
+ Completed 200 OK in 12.3ms (Views: 12.0ms | ActiveRecord: 0.0ms)
564
+  (0.1ms) rollback transaction
565
+  (0.0ms) begin transaction
566
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:24 +0400
567
+ Processing by WelcomeController#index as HTML
568
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
569
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
570
+  (0.1ms) rollback transaction
571
+  (0.0ms) begin transaction
572
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:24 +0400
573
+ Processing by WelcomeController#index as HTML
574
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
575
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
576
+  (0.0ms) rollback transaction
577
+  (0.0ms) begin transaction
578
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:55:24 +0400
579
+ Processing by WelcomeController#index as HTML
580
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
581
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
582
+  (0.0ms) rollback transaction
583
+ Connecting to database specified by database.yml
584
+ Connecting to database specified by database.yml
585
+  (0.3ms) begin transaction
586
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:56:13 +0400
587
+ Processing by WelcomeController#index as HTML
588
+ Rendered welcome/index.html.haml within layouts/application (2.5ms)
589
+ Completed 200 OK in 11.7ms (Views: 11.4ms | ActiveRecord: 0.0ms)
590
+  (0.1ms) rollback transaction
591
+  (0.0ms) begin transaction
592
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:56:13 +0400
593
+ Processing by WelcomeController#index as HTML
594
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
595
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
596
+  (0.1ms) rollback transaction
597
+  (0.0ms) begin transaction
598
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:56:13 +0400
599
+ Processing by WelcomeController#index as HTML
600
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
601
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
602
+  (0.0ms) rollback transaction
603
+  (0.0ms) begin transaction
604
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:56:13 +0400
605
+ Processing by WelcomeController#index as HTML
606
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
607
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
608
+  (0.0ms) rollback transaction
609
+  (0.0ms) begin transaction
610
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:56:13 +0400
611
+ Processing by WelcomeController#index as HTML
612
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
613
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
614
+  (0.0ms) rollback transaction
615
+ Connecting to database specified by database.yml
616
+  (0.3ms) begin transaction
617
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:24 +0400
618
+ Processing by WelcomeController#index as HTML
619
+ Rendered welcome/index.html.haml within layouts/application (2.4ms)
620
+ Completed 200 OK in 12.1ms (Views: 11.9ms | ActiveRecord: 0.0ms)
621
+  (0.1ms) rollback transaction
622
+  (0.0ms) begin transaction
623
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:24 +0400
624
+ Processing by WelcomeController#index as HTML
625
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
626
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
627
+  (0.1ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:24 +0400
630
+ Processing by WelcomeController#index as HTML
631
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
632
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
633
+  (0.0ms) rollback transaction
634
+  (0.0ms) begin transaction
635
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:24 +0400
636
+ Processing by WelcomeController#index as HTML
637
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
638
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
639
+  (0.0ms) rollback transaction
640
+  (0.0ms) begin transaction
641
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:24 +0400
642
+ Processing by WelcomeController#index as HTML
643
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
644
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
645
+  (0.0ms) rollback transaction
646
+ Connecting to database specified by database.yml
647
+  (0.2ms) begin transaction
648
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:28 +0400
649
+ Processing by WelcomeController#index as HTML
650
+ Rendered welcome/index.html.haml within layouts/application (2.3ms)
651
+ Completed 200 OK in 12.1ms (Views: 11.8ms | ActiveRecord: 0.0ms)
652
+  (0.1ms) rollback transaction
653
+  (0.0ms) begin transaction
654
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:28 +0400
655
+ Processing by WelcomeController#index as HTML
656
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
657
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
658
+  (0.1ms) rollback transaction
659
+  (0.0ms) begin transaction
660
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:28 +0400
661
+ Processing by WelcomeController#index as HTML
662
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
663
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
664
+  (0.0ms) rollback transaction
665
+  (0.0ms) begin transaction
666
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:28 +0400
667
+ Processing by WelcomeController#index as HTML
668
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
669
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
670
+  (0.0ms) rollback transaction
671
+  (0.0ms) begin transaction
672
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:28 +0400
673
+ Processing by WelcomeController#index as HTML
674
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
675
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
676
+  (0.0ms) rollback transaction
677
+ Connecting to database specified by database.yml
678
+  (0.2ms) begin transaction
679
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:41 +0400
680
+ Processing by WelcomeController#index as HTML
681
+ Rendered welcome/index.html.haml within layouts/application (2.6ms)
682
+ Completed 200 OK in 11.8ms (Views: 11.5ms | ActiveRecord: 0.0ms)
683
+  (0.1ms) rollback transaction
684
+  (0.0ms) begin transaction
685
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:41 +0400
686
+ Processing by WelcomeController#index as HTML
687
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
688
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
689
+  (0.0ms) rollback transaction
690
+  (0.0ms) begin transaction
691
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:41 +0400
692
+ Processing by WelcomeController#index as HTML
693
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
694
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
695
+  (0.0ms) rollback transaction
696
+  (0.0ms) begin transaction
697
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:41 +0400
698
+ Processing by WelcomeController#index as HTML
699
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
700
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
701
+  (0.0ms) rollback transaction
702
+  (0.0ms) begin transaction
703
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:41 +0400
704
+ Processing by WelcomeController#index as HTML
705
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
706
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
707
+  (0.0ms) rollback transaction
708
+ Connecting to database specified by database.yml
709
+  (0.2ms) begin transaction
710
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:52 +0400
711
+ Processing by WelcomeController#index as HTML
712
+ Rendered welcome/index.html.haml within layouts/application (2.5ms)
713
+ Completed 200 OK in 12.2ms (Views: 11.9ms | ActiveRecord: 0.0ms)
714
+  (0.1ms) rollback transaction
715
+  (0.0ms) begin transaction
716
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:53 +0400
717
+ Processing by WelcomeController#index as HTML
718
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
719
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
720
+  (0.1ms) rollback transaction
721
+  (0.0ms) begin transaction
722
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:53 +0400
723
+ Processing by WelcomeController#index as HTML
724
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
725
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
726
+  (0.0ms) rollback transaction
727
+  (0.0ms) begin transaction
728
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:53 +0400
729
+ Processing by WelcomeController#index as HTML
730
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
731
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
732
+  (0.1ms) rollback transaction
733
+  (0.0ms) begin transaction
734
+ Started GET "/" for 127.0.0.1 at 2014-03-12 17:57:53 +0400
735
+ Processing by WelcomeController#index as HTML
736
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
737
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
738
+  (0.0ms) rollback transaction
739
+ Connecting to database specified by database.yml
740
+  (0.3ms) begin transaction
741
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:24 +0400
742
+ Processing by WelcomeController#index as HTML
743
+ Rendered welcome/index.html.haml within layouts/application (2.5ms)
744
+ Completed 200 OK in 12.0ms (Views: 11.7ms | ActiveRecord: 0.0ms)
745
+  (0.0ms) rollback transaction
746
+  (0.0ms) begin transaction
747
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:24 +0400
748
+ Processing by WelcomeController#index as HTML
749
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
750
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
751
+  (0.1ms) rollback transaction
752
+  (0.0ms) begin transaction
753
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:24 +0400
754
+ Processing by WelcomeController#index as HTML
755
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
756
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
757
+  (0.0ms) rollback transaction
758
+  (0.0ms) begin transaction
759
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:24 +0400
760
+ Processing by WelcomeController#index as HTML
761
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
762
+ Completed 200 OK in 1.2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
763
+  (0.0ms) rollback transaction
764
+  (0.0ms) begin transaction
765
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:24 +0400
766
+ Processing by WelcomeController#index as HTML
767
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
768
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
769
+  (0.0ms) rollback transaction
770
+ Connecting to database specified by database.yml
771
+  (0.3ms) begin transaction
772
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:36 +0400
773
+ Processing by WelcomeController#index as HTML
774
+ Rendered welcome/index.html.haml within layouts/application (2.4ms)
775
+ Completed 200 OK in 12.1ms (Views: 11.8ms | ActiveRecord: 0.0ms)
776
+  (0.1ms) rollback transaction
777
+  (0.0ms) begin transaction
778
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:36 +0400
779
+ Processing by WelcomeController#index as HTML
780
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
781
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
782
+  (0.0ms) rollback transaction
783
+  (0.0ms) begin transaction
784
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:36 +0400
785
+ Processing by WelcomeController#index as HTML
786
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
787
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
788
+  (0.0ms) rollback transaction
789
+  (0.0ms) begin transaction
790
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:36 +0400
791
+ Processing by WelcomeController#index as HTML
792
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
793
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
794
+  (0.0ms) rollback transaction
795
+  (0.0ms) begin transaction
796
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:02:36 +0400
797
+ Processing by WelcomeController#index as HTML
798
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
799
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
800
+  (0.0ms) rollback transaction
801
+ Connecting to database specified by database.yml
802
+  (0.3ms) begin transaction
803
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:34 +0400
804
+ Processing by WelcomeController#index as HTML
805
+ Rendered welcome/index.html.haml within layouts/application (2.2ms)
806
+ Completed 200 OK in 12.4ms (Views: 12.1ms | ActiveRecord: 0.0ms)
807
+  (0.1ms) rollback transaction
808
+  (0.0ms) begin transaction
809
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:34 +0400
810
+ Processing by WelcomeController#index as HTML
811
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
812
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
813
+  (0.1ms) rollback transaction
814
+  (0.1ms) begin transaction
815
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:34 +0400
816
+ Processing by WelcomeController#index as HTML
817
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
818
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
819
+  (0.0ms) rollback transaction
820
+  (0.0ms) begin transaction
821
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:34 +0400
822
+ Processing by WelcomeController#index as HTML
823
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
824
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
825
+  (0.0ms) rollback transaction
826
+  (0.0ms) begin transaction
827
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:34 +0400
828
+ Processing by WelcomeController#index as HTML
829
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
830
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
831
+  (0.0ms) rollback transaction
832
+ Connecting to database specified by database.yml
833
+  (0.3ms) begin transaction
834
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:53 +0400
835
+ Processing by WelcomeController#index as HTML
836
+ Rendered welcome/index.html.haml within layouts/application (2.4ms)
837
+ Completed 200 OK in 14.4ms (Views: 14.1ms | ActiveRecord: 0.0ms)
838
+  (0.1ms) rollback transaction
839
+  (0.0ms) begin transaction
840
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:53 +0400
841
+ Processing by WelcomeController#index as HTML
842
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
843
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
844
+  (0.1ms) rollback transaction
845
+  (0.0ms) begin transaction
846
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:53 +0400
847
+ Processing by WelcomeController#index as HTML
848
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
849
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
850
+  (0.1ms) rollback transaction
851
+  (0.0ms) begin transaction
852
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:53 +0400
853
+ Processing by WelcomeController#index as HTML
854
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
855
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
856
+  (0.0ms) rollback transaction
857
+  (0.0ms) begin transaction
858
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:15:53 +0400
859
+ Processing by WelcomeController#index as HTML
860
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
861
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
862
+  (0.1ms) rollback transaction
863
+ Connecting to database specified by database.yml
864
+  (0.3ms) begin transaction
865
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:16:01 +0400
866
+ Processing by WelcomeController#index as HTML
867
+ Rendered welcome/index.html.haml within layouts/application (2.1ms)
868
+ Completed 200 OK in 12.9ms (Views: 12.6ms | ActiveRecord: 0.0ms)
869
+  (0.1ms) rollback transaction
870
+  (0.0ms) begin transaction
871
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:16:01 +0400
872
+ Processing by WelcomeController#index as HTML
873
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
874
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
875
+  (0.1ms) rollback transaction
876
+  (0.0ms) begin transaction
877
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:16:01 +0400
878
+ Processing by WelcomeController#index as HTML
879
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
880
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
881
+  (0.1ms) rollback transaction
882
+  (0.0ms) begin transaction
883
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:16:01 +0400
884
+ Processing by WelcomeController#index as HTML
885
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
886
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
887
+  (0.0ms) rollback transaction
888
+  (0.0ms) begin transaction
889
+ Started GET "/" for 127.0.0.1 at 2014-03-12 18:16:01 +0400
890
+ Processing by WelcomeController#index as HTML
891
+ Rendered welcome/index.html.haml within layouts/application (0.2ms)
892
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
893
+  (0.0ms) rollback transaction
894
+ Connecting to database specified by database.yml
895
+  (0.3ms) begin transaction
896
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:18:54 +0400
897
+ Processing by WelcomeController#index as HTML
898
+ Rendered welcome/index.html.haml within layouts/application (2.7ms)
899
+ Completed 200 OK in 23.6ms (Views: 23.3ms | ActiveRecord: 0.0ms)
900
+  (0.1ms) rollback transaction
901
+  (0.0ms) begin transaction
902
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:18:54 +0400
903
+ Processing by WelcomeController#index as HTML
904
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
905
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
906
+  (0.0ms) rollback transaction
907
+  (0.0ms) begin transaction
908
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:18:54 +0400
909
+ Processing by WelcomeController#index as HTML
910
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
911
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
912
+  (0.1ms) rollback transaction
913
+  (0.0ms) begin transaction
914
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:18:54 +0400
915
+ Processing by WelcomeController#index as HTML
916
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
917
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
918
+  (0.0ms) rollback transaction
919
+ Connecting to database specified by database.yml
920
+  (0.2ms) begin transaction
921
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:07 +0400
922
+ Processing by WelcomeController#index as HTML
923
+ Rendered welcome/index.html.haml within layouts/application (3.2ms)
924
+ Completed 200 OK in 12.1ms (Views: 11.8ms | ActiveRecord: 0.0ms)
925
+  (0.1ms) rollback transaction
926
+  (0.0ms) begin transaction
927
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:07 +0400
928
+ Processing by WelcomeController#index as HTML
929
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
930
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
931
+  (0.0ms) rollback transaction
932
+  (0.0ms) begin transaction
933
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:07 +0400
934
+ Processing by WelcomeController#index as HTML
935
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
936
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
937
+  (0.0ms) rollback transaction
938
+  (0.0ms) begin transaction
939
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:07 +0400
940
+ Processing by WelcomeController#index as HTML
941
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
942
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
943
+  (0.0ms) rollback transaction
944
+ Connecting to database specified by database.yml
945
+  (0.2ms) begin transaction
946
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:58 +0400
947
+ Processing by WelcomeController#index as HTML
948
+ Rendered welcome/index.html.haml within layouts/application (3.2ms)
949
+ Completed 200 OK in 12.0ms (Views: 11.8ms | ActiveRecord: 0.0ms)
950
+  (0.1ms) rollback transaction
951
+  (0.0ms) begin transaction
952
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:58 +0400
953
+ Processing by WelcomeController#index as HTML
954
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
955
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
956
+  (0.1ms) rollback transaction
957
+  (0.0ms) begin transaction
958
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:58 +0400
959
+ Processing by WelcomeController#index as HTML
960
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
961
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
962
+  (0.0ms) rollback transaction
963
+  (0.0ms) begin transaction
964
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:19:58 +0400
965
+ Processing by WelcomeController#index as HTML
966
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
967
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
968
+  (0.0ms) rollback transaction
969
+ Connecting to database specified by database.yml
970
+  (0.2ms) begin transaction
971
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:22:10 +0400
972
+ Processing by WelcomeController#index as HTML
973
+ Rendered welcome/index.html.haml within layouts/application (2.7ms)
974
+ Completed 200 OK in 11.6ms (Views: 11.3ms | ActiveRecord: 0.0ms)
975
+  (0.0ms) rollback transaction
976
+  (0.0ms) begin transaction
977
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:22:10 +0400
978
+ Processing by WelcomeController#index as HTML
979
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
980
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
981
+  (0.0ms) rollback transaction
982
+  (0.0ms) begin transaction
983
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:22:10 +0400
984
+ Processing by WelcomeController#index as HTML
985
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
986
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
987
+  (0.0ms) rollback transaction
988
+  (0.0ms) begin transaction
989
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:22:10 +0400
990
+ Processing by WelcomeController#index as HTML
991
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
992
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
993
+  (0.1ms) rollback transaction
994
+  (0.1ms) begin transaction
995
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:22:10 +0400
996
+ Processing by WelcomeController#index as HTML
997
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
998
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
999
+  (0.0ms) rollback transaction
1000
+  (0.0ms) begin transaction
1001
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:22:10 +0400
1002
+ Processing by WelcomeController#index as HTML
1003
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1004
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1005
+  (0.0ms) rollback transaction
1006
+ Connecting to database specified by database.yml
1007
+  (0.3ms) begin transaction
1008
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:30:26 +0400
1009
+ Processing by WelcomeController#index as HTML
1010
+ Rendered welcome/index.html.haml within layouts/application (3.0ms)
1011
+ Completed 200 OK in 11.4ms (Views: 11.2ms | ActiveRecord: 0.0ms)
1012
+  (0.0ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:30:26 +0400
1015
+ Processing by WelcomeController#index as HTML
1016
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1017
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1018
+  (0.0ms) rollback transaction
1019
+  (0.0ms) begin transaction
1020
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:30:26 +0400
1021
+ Processing by WelcomeController#index as HTML
1022
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1023
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1024
+  (0.0ms) rollback transaction
1025
+  (0.0ms) begin transaction
1026
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:30:26 +0400
1027
+ Processing by WelcomeController#index as HTML
1028
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1029
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1030
+  (0.1ms) rollback transaction
1031
+  (0.0ms) begin transaction
1032
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:30:26 +0400
1033
+ Processing by WelcomeController#index as HTML
1034
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1035
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1036
+  (0.1ms) rollback transaction
1037
+  (0.0ms) begin transaction
1038
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:30:26 +0400
1039
+ Processing by WelcomeController#index as HTML
1040
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1041
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1042
+  (0.1ms) rollback transaction
1043
+ Connecting to database specified by database.yml
1044
+  (0.2ms) begin transaction
1045
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:31:33 +0400
1046
+ Processing by WelcomeController#index as HTML
1047
+ Rendered welcome/index.html.haml within layouts/application (2.6ms)
1048
+ Completed 200 OK in 11.3ms (Views: 11.1ms | ActiveRecord: 0.0ms)
1049
+  (0.0ms) rollback transaction
1050
+  (0.0ms) begin transaction
1051
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:31:33 +0400
1052
+ Processing by WelcomeController#index as HTML
1053
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1054
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1055
+  (0.0ms) rollback transaction
1056
+  (0.0ms) begin transaction
1057
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:31:33 +0400
1058
+ Processing by WelcomeController#index as HTML
1059
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1060
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1061
+  (0.0ms) rollback transaction
1062
+  (0.0ms) begin transaction
1063
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:31:33 +0400
1064
+ Processing by WelcomeController#index as HTML
1065
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1066
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1067
+  (0.0ms) rollback transaction
1068
+  (0.1ms) begin transaction
1069
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:31:33 +0400
1070
+ Processing by WelcomeController#index as HTML
1071
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1072
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1073
+  (0.1ms) rollback transaction
1074
+  (0.0ms) begin transaction
1075
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:31:33 +0400
1076
+ Processing by WelcomeController#index as HTML
1077
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1078
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1079
+  (0.0ms) rollback transaction
1080
+  (0.0ms) begin transaction
1081
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:31:33 +0400
1082
+ Processing by WelcomeController#index as HTML
1083
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1084
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1085
+  (0.0ms) rollback transaction
1086
+ Connecting to database specified by database.yml
1087
+  (0.2ms) begin transaction
1088
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1089
+ Processing by WelcomeController#index as HTML
1090
+ Rendered welcome/index.html.haml within layouts/application (3.7ms)
1091
+ Completed 200 OK in 13.0ms (Views: 12.7ms | ActiveRecord: 0.0ms)
1092
+  (0.1ms) rollback transaction
1093
+  (0.0ms) begin transaction
1094
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1095
+ Processing by WelcomeController#index as HTML
1096
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1097
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1098
+  (0.0ms) rollback transaction
1099
+  (0.0ms) begin transaction
1100
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1101
+ Processing by WelcomeController#index as HTML
1102
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1103
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1104
+  (0.0ms) rollback transaction
1105
+  (0.0ms) begin transaction
1106
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1107
+ Processing by WelcomeController#index as HTML
1108
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1109
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1110
+  (0.0ms) rollback transaction
1111
+  (0.0ms) begin transaction
1112
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1113
+ Processing by WelcomeController#index as HTML
1114
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1115
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1116
+  (0.0ms) rollback transaction
1117
+  (0.0ms) begin transaction
1118
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1119
+ Processing by WelcomeController#index as HTML
1120
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1121
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1122
+  (0.0ms) rollback transaction
1123
+  (0.0ms) begin transaction
1124
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1125
+ Processing by WelcomeController#index as HTML
1126
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1127
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1128
+  (0.0ms) rollback transaction
1129
+  (0.0ms) begin transaction
1130
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1131
+ Processing by WelcomeController#index as HTML
1132
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1133
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1134
+  (0.0ms) rollback transaction
1135
+  (0.0ms) begin transaction
1136
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1137
+ Processing by WelcomeController#index as HTML
1138
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1139
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1140
+  (0.0ms) rollback transaction
1141
+  (0.0ms) begin transaction
1142
+ Started GET "/" for 127.0.0.1 at 2014-03-13 17:35:58 +0400
1143
+ Processing by WelcomeController#index as HTML
1144
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1145
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1146
+  (0.1ms) rollback transaction
1147
+ Connecting to database specified by database.yml
1148
+  (0.2ms) begin transaction
1149
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1150
+ Processing by WelcomeController#index as HTML
1151
+ Rendered welcome/index.html.haml within layouts/application (3.2ms)
1152
+ Completed 200 OK in 12.4ms (Views: 12.1ms | ActiveRecord: 0.0ms)
1153
+  (0.0ms) rollback transaction
1154
+  (0.0ms) begin transaction
1155
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1156
+ Processing by WelcomeController#index as HTML
1157
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1158
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1159
+  (0.0ms) rollback transaction
1160
+  (0.0ms) begin transaction
1161
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1162
+ Processing by WelcomeController#index as HTML
1163
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1164
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1165
+  (0.0ms) rollback transaction
1166
+  (0.0ms) begin transaction
1167
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1168
+ Processing by WelcomeController#index as HTML
1169
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1170
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1171
+  (0.1ms) rollback transaction
1172
+  (0.1ms) begin transaction
1173
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1174
+ Processing by WelcomeController#index as HTML
1175
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1176
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1177
+  (0.0ms) rollback transaction
1178
+  (0.1ms) begin transaction
1179
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1180
+ Processing by WelcomeController#index as HTML
1181
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1182
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1183
+  (0.0ms) rollback transaction
1184
+  (0.0ms) begin transaction
1185
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1186
+ Processing by WelcomeController#index as HTML
1187
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1188
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1189
+  (0.0ms) rollback transaction
1190
+  (0.0ms) begin transaction
1191
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1192
+ Processing by WelcomeController#index as HTML
1193
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1194
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1195
+  (0.0ms) rollback transaction
1196
+  (0.0ms) begin transaction
1197
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1198
+ Processing by WelcomeController#index as HTML
1199
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1200
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1201
+  (0.0ms) rollback transaction
1202
+  (0.0ms) begin transaction
1203
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1204
+ Processing by WelcomeController#index as HTML
1205
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
1206
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1207
+  (0.1ms) rollback transaction
1208
+  (0.1ms) begin transaction
1209
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1210
+ Processing by WelcomeController#index as HTML
1211
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1212
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1213
+  (0.0ms) rollback transaction
1214
+  (0.0ms) begin transaction
1215
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1216
+ Processing by WelcomeController#index as HTML
1217
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1218
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1219
+  (0.0ms) rollback transaction
1220
+  (0.0ms) begin transaction
1221
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1222
+ Processing by WelcomeController#index as HTML
1223
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1224
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1225
+  (0.0ms) rollback transaction
1226
+  (0.0ms) begin transaction
1227
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:05:34 +0400
1228
+ Processing by WelcomeController#index as HTML
1229
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1230
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1231
+  (0.0ms) rollback transaction
1232
+ Connecting to database specified by database.yml
1233
+  (0.3ms) begin transaction
1234
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1235
+ Processing by WelcomeController#index as HTML
1236
+ Rendered welcome/index.html.haml within layouts/application (4.0ms)
1237
+ Completed 200 OK in 14.7ms (Views: 14.4ms | ActiveRecord: 0.0ms)
1238
+  (0.1ms) rollback transaction
1239
+  (0.0ms) begin transaction
1240
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1241
+ Processing by WelcomeController#index as HTML
1242
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1243
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1244
+  (0.0ms) rollback transaction
1245
+  (0.0ms) begin transaction
1246
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1247
+ Processing by WelcomeController#index as HTML
1248
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1249
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1250
+  (0.0ms) rollback transaction
1251
+  (0.1ms) begin transaction
1252
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1253
+ Processing by WelcomeController#index as HTML
1254
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1255
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1256
+  (0.0ms) rollback transaction
1257
+  (0.0ms) begin transaction
1258
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1259
+ Processing by WelcomeController#index as HTML
1260
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1261
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1262
+  (0.0ms) rollback transaction
1263
+  (0.0ms) begin transaction
1264
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1265
+ Processing by WelcomeController#index as HTML
1266
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1267
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1268
+  (0.1ms) rollback transaction
1269
+  (0.0ms) begin transaction
1270
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1271
+ Processing by WelcomeController#index as HTML
1272
+ Rendered welcome/index.html.haml within layouts/application (0.8ms)
1273
+ Completed 200 OK in 2.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1274
+  (0.0ms) rollback transaction
1275
+  (0.0ms) begin transaction
1276
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1277
+ Processing by WelcomeController#index as HTML
1278
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1279
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1280
+  (0.0ms) rollback transaction
1281
+  (0.0ms) begin transaction
1282
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1283
+ Processing by WelcomeController#index as HTML
1284
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1285
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1286
+  (0.1ms) rollback transaction
1287
+  (0.0ms) begin transaction
1288
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1289
+ Processing by WelcomeController#index as HTML
1290
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1291
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1292
+  (0.1ms) rollback transaction
1293
+  (0.1ms) begin transaction
1294
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1295
+ Processing by WelcomeController#index as HTML
1296
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1297
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1298
+  (0.1ms) rollback transaction
1299
+  (0.0ms) begin transaction
1300
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1301
+ Processing by WelcomeController#index as HTML
1302
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1303
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1304
+  (0.0ms) rollback transaction
1305
+  (0.0ms) begin transaction
1306
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1307
+ Processing by WelcomeController#index as HTML
1308
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1309
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1310
+  (0.1ms) rollback transaction
1311
+  (0.0ms) begin transaction
1312
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:49:54 +0400
1313
+ Processing by WelcomeController#index as HTML
1314
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1315
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1316
+  (0.1ms) rollback transaction
1317
+ Connecting to database specified by database.yml
1318
+  (0.3ms) begin transaction
1319
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1320
+ Processing by WelcomeController#index as HTML
1321
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
1322
+ Completed 200 OK in 15.9ms (Views: 15.6ms | ActiveRecord: 0.0ms)
1323
+  (0.1ms) rollback transaction
1324
+  (0.1ms) begin transaction
1325
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1326
+ Processing by WelcomeController#index as HTML
1327
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1328
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1329
+  (0.0ms) rollback transaction
1330
+  (0.0ms) begin transaction
1331
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1332
+ Processing by WelcomeController#index as HTML
1333
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1334
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1335
+  (0.0ms) rollback transaction
1336
+  (0.0ms) begin transaction
1337
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1338
+ Processing by WelcomeController#index as HTML
1339
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1340
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1341
+  (0.0ms) rollback transaction
1342
+  (0.0ms) begin transaction
1343
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1344
+ Processing by WelcomeController#index as HTML
1345
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1346
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1347
+  (0.0ms) rollback transaction
1348
+  (0.0ms) begin transaction
1349
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1350
+ Processing by WelcomeController#index as HTML
1351
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1352
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1353
+  (0.0ms) rollback transaction
1354
+  (0.0ms) begin transaction
1355
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1356
+ Processing by WelcomeController#index as HTML
1357
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1358
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1359
+  (0.0ms) rollback transaction
1360
+  (0.0ms) begin transaction
1361
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1362
+ Processing by WelcomeController#index as HTML
1363
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1364
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1365
+  (0.0ms) rollback transaction
1366
+  (0.0ms) begin transaction
1367
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1368
+ Processing by WelcomeController#index as HTML
1369
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1370
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1371
+  (0.1ms) rollback transaction
1372
+  (0.0ms) begin transaction
1373
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1374
+ Processing by WelcomeController#index as HTML
1375
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1376
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1377
+  (0.1ms) rollback transaction
1378
+  (0.0ms) begin transaction
1379
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1380
+ Processing by WelcomeController#index as HTML
1381
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1382
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1383
+  (0.0ms) rollback transaction
1384
+  (0.0ms) begin transaction
1385
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1386
+ Processing by WelcomeController#index as HTML
1387
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1388
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1389
+  (0.1ms) rollback transaction
1390
+  (0.0ms) begin transaction
1391
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1392
+ Processing by WelcomeController#index as HTML
1393
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1394
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1395
+  (0.1ms) rollback transaction
1396
+  (0.0ms) begin transaction
1397
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1398
+ Processing by WelcomeController#index as HTML
1399
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1400
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1401
+  (0.0ms) rollback transaction
1402
+  (0.0ms) begin transaction
1403
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1404
+ Processing by WelcomeController#index as HTML
1405
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1406
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1407
+  (0.1ms) rollback transaction
1408
+  (0.0ms) begin transaction
1409
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1410
+ Processing by WelcomeController#index as HTML
1411
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1412
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1413
+  (0.1ms) rollback transaction
1414
+  (0.0ms) begin transaction
1415
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1416
+ Processing by WelcomeController#index as HTML
1417
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1418
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1419
+  (0.1ms) rollback transaction
1420
+  (0.0ms) begin transaction
1421
+ Started GET "/" for 127.0.0.1 at 2014-03-13 18:58:04 +0400
1422
+ Processing by WelcomeController#index as HTML
1423
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1424
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1425
+  (0.0ms) rollback transaction
1426
+ Connecting to database specified by database.yml
1427
+  (0.3ms) begin transaction
1428
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1429
+ Processing by WelcomeController#index as HTML
1430
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
1431
+ Completed 200 OK in 14.5ms (Views: 14.2ms | ActiveRecord: 0.0ms)
1432
+  (0.1ms) rollback transaction
1433
+  (0.0ms) begin transaction
1434
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1435
+ Processing by WelcomeController#index as HTML
1436
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1437
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1438
+  (0.1ms) rollback transaction
1439
+  (0.0ms) begin transaction
1440
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1441
+ Processing by WelcomeController#index as HTML
1442
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1443
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1444
+  (0.0ms) rollback transaction
1445
+  (0.0ms) begin transaction
1446
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1447
+ Processing by WelcomeController#index as HTML
1448
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1449
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1450
+  (0.0ms) rollback transaction
1451
+  (0.0ms) begin transaction
1452
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1453
+ Processing by WelcomeController#index as HTML
1454
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1455
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1456
+  (0.0ms) rollback transaction
1457
+  (0.0ms) begin transaction
1458
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1459
+ Processing by WelcomeController#index as HTML
1460
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1461
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1462
+  (0.0ms) rollback transaction
1463
+  (0.1ms) begin transaction
1464
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1465
+ Processing by WelcomeController#index as HTML
1466
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1467
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1468
+  (0.0ms) rollback transaction
1469
+  (0.0ms) begin transaction
1470
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1471
+ Processing by WelcomeController#index as HTML
1472
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1473
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1474
+  (0.0ms) rollback transaction
1475
+  (0.0ms) begin transaction
1476
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1477
+ Processing by WelcomeController#index as HTML
1478
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1479
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1480
+  (0.0ms) rollback transaction
1481
+  (0.0ms) begin transaction
1482
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1483
+ Processing by WelcomeController#index as HTML
1484
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1485
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1486
+  (0.1ms) rollback transaction
1487
+  (0.0ms) begin transaction
1488
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1489
+ Processing by WelcomeController#index as HTML
1490
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1491
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1492
+  (0.1ms) rollback transaction
1493
+  (0.0ms) begin transaction
1494
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1495
+ Processing by WelcomeController#index as HTML
1496
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1497
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1498
+  (0.1ms) rollback transaction
1499
+  (0.0ms) begin transaction
1500
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1501
+ Processing by WelcomeController#index as HTML
1502
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1503
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1504
+  (0.1ms) rollback transaction
1505
+  (0.0ms) begin transaction
1506
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1507
+ Processing by WelcomeController#index as HTML
1508
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1509
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1510
+  (0.0ms) rollback transaction
1511
+  (0.0ms) begin transaction
1512
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1513
+ Processing by WelcomeController#index as HTML
1514
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1515
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1516
+  (0.1ms) rollback transaction
1517
+  (0.1ms) begin transaction
1518
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1519
+ Processing by WelcomeController#index as HTML
1520
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1521
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1522
+  (0.1ms) rollback transaction
1523
+  (0.0ms) begin transaction
1524
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1525
+ Processing by WelcomeController#index as HTML
1526
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1527
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1528
+  (0.1ms) rollback transaction
1529
+  (0.0ms) begin transaction
1530
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:02:35 +0400
1531
+ Processing by WelcomeController#index as HTML
1532
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1533
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1534
+  (0.0ms) rollback transaction
1535
+ Connecting to database specified by database.yml
1536
+  (0.3ms) begin transaction
1537
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1538
+ Processing by WelcomeController#index as HTML
1539
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
1540
+ Completed 200 OK in 14.3ms (Views: 14.0ms | ActiveRecord: 0.0ms)
1541
+  (0.1ms) rollback transaction
1542
+  (0.0ms) begin transaction
1543
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1544
+ Processing by WelcomeController#index as HTML
1545
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1546
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1547
+  (0.1ms) rollback transaction
1548
+  (0.0ms) begin transaction
1549
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1550
+ Processing by WelcomeController#index as HTML
1551
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1552
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1553
+  (0.0ms) rollback transaction
1554
+  (0.0ms) begin transaction
1555
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1556
+ Processing by WelcomeController#index as HTML
1557
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1558
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1559
+  (0.1ms) rollback transaction
1560
+  (0.1ms) begin transaction
1561
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1562
+ Processing by WelcomeController#index as HTML
1563
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1564
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1565
+  (0.0ms) rollback transaction
1566
+  (0.0ms) begin transaction
1567
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1568
+ Processing by WelcomeController#index as HTML
1569
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1570
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1571
+  (0.0ms) rollback transaction
1572
+  (0.0ms) begin transaction
1573
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1574
+ Processing by WelcomeController#index as HTML
1575
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1576
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1577
+  (0.0ms) rollback transaction
1578
+  (0.0ms) begin transaction
1579
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1580
+ Processing by WelcomeController#index as HTML
1581
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1582
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1583
+  (0.0ms) rollback transaction
1584
+  (0.0ms) begin transaction
1585
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1586
+ Processing by WelcomeController#index as HTML
1587
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1588
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1589
+  (0.0ms) rollback transaction
1590
+  (0.0ms) begin transaction
1591
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1592
+ Processing by WelcomeController#index as HTML
1593
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1594
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1595
+  (0.0ms) rollback transaction
1596
+  (0.0ms) begin transaction
1597
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1598
+ Processing by WelcomeController#index as HTML
1599
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1600
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1601
+  (0.1ms) rollback transaction
1602
+  (0.0ms) begin transaction
1603
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1604
+ Processing by WelcomeController#index as HTML
1605
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1606
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1607
+  (0.0ms) rollback transaction
1608
+  (0.0ms) begin transaction
1609
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1610
+ Processing by WelcomeController#index as HTML
1611
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1612
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1613
+  (0.1ms) rollback transaction
1614
+  (0.1ms) begin transaction
1615
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1616
+ Processing by WelcomeController#index as HTML
1617
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1618
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1619
+  (0.1ms) rollback transaction
1620
+  (0.0ms) begin transaction
1621
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1622
+ Processing by WelcomeController#index as HTML
1623
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1624
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1625
+  (0.1ms) rollback transaction
1626
+  (0.0ms) begin transaction
1627
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1628
+ Processing by WelcomeController#index as HTML
1629
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1630
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1631
+  (0.0ms) rollback transaction
1632
+  (0.1ms) begin transaction
1633
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1634
+ Processing by WelcomeController#index as HTML
1635
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1636
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1637
+  (0.0ms) rollback transaction
1638
+  (0.0ms) begin transaction
1639
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:07:45 +0400
1640
+ Processing by WelcomeController#index as HTML
1641
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1642
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1643
+  (0.0ms) rollback transaction
1644
+ Connecting to database specified by database.yml
1645
+  (0.3ms) begin transaction
1646
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1647
+ Processing by WelcomeController#index as HTML
1648
+ Rendered welcome/index.html.haml within layouts/application (3.9ms)
1649
+ Completed 200 OK in 13.9ms (Views: 13.6ms | ActiveRecord: 0.0ms)
1650
+  (0.1ms) rollback transaction
1651
+  (0.1ms) begin transaction
1652
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1653
+ Processing by WelcomeController#index as HTML
1654
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1655
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1656
+  (0.1ms) rollback transaction
1657
+  (0.0ms) begin transaction
1658
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1659
+ Processing by WelcomeController#index as HTML
1660
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1661
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1662
+  (0.0ms) rollback transaction
1663
+  (0.0ms) begin transaction
1664
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1665
+ Processing by WelcomeController#index as HTML
1666
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1667
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1668
+  (0.0ms) rollback transaction
1669
+  (0.0ms) begin transaction
1670
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1671
+ Processing by WelcomeController#index as HTML
1672
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1673
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1674
+  (0.0ms) rollback transaction
1675
+  (0.0ms) begin transaction
1676
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1677
+ Processing by WelcomeController#index as HTML
1678
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1679
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1680
+  (0.0ms) rollback transaction
1681
+  (0.0ms) begin transaction
1682
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1683
+ Processing by WelcomeController#index as HTML
1684
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1685
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1686
+  (0.0ms) rollback transaction
1687
+  (0.0ms) begin transaction
1688
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1689
+ Processing by WelcomeController#index as HTML
1690
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1691
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1692
+  (0.0ms) rollback transaction
1693
+  (0.0ms) begin transaction
1694
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1695
+ Processing by WelcomeController#index as HTML
1696
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1697
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1698
+  (0.0ms) rollback transaction
1699
+  (0.0ms) begin transaction
1700
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1701
+ Processing by WelcomeController#index as HTML
1702
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1703
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1704
+  (0.0ms) rollback transaction
1705
+  (0.0ms) begin transaction
1706
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1707
+ Processing by WelcomeController#index as HTML
1708
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1709
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1710
+  (0.0ms) rollback transaction
1711
+  (0.0ms) begin transaction
1712
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1713
+ Processing by WelcomeController#index as HTML
1714
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1715
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1716
+  (0.0ms) rollback transaction
1717
+  (0.0ms) begin transaction
1718
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1719
+ Processing by WelcomeController#index as HTML
1720
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1721
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1722
+  (0.1ms) rollback transaction
1723
+  (0.0ms) begin transaction
1724
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1725
+ Processing by WelcomeController#index as HTML
1726
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1727
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1728
+  (0.0ms) rollback transaction
1729
+  (0.0ms) begin transaction
1730
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1731
+ Processing by WelcomeController#index as HTML
1732
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1733
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1734
+  (0.1ms) rollback transaction
1735
+  (0.0ms) begin transaction
1736
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1737
+ Processing by WelcomeController#index as HTML
1738
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1739
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1740
+  (0.1ms) rollback transaction
1741
+  (0.1ms) begin transaction
1742
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1743
+ Processing by WelcomeController#index as HTML
1744
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1745
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1746
+  (0.0ms) rollback transaction
1747
+  (0.0ms) begin transaction
1748
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:10:03 +0400
1749
+ Processing by WelcomeController#index as HTML
1750
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1751
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1752
+  (0.0ms) rollback transaction
1753
+ Connecting to database specified by database.yml
1754
+  (0.3ms) begin transaction
1755
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1756
+ Processing by WelcomeController#index as HTML
1757
+ Rendered welcome/index.html.haml within layouts/application (5.0ms)
1758
+ Completed 200 OK in 16.0ms (Views: 15.7ms | ActiveRecord: 0.0ms)
1759
+  (0.1ms) rollback transaction
1760
+  (0.0ms) begin transaction
1761
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1762
+ Processing by WelcomeController#index as HTML
1763
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1764
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1765
+  (0.0ms) rollback transaction
1766
+  (0.0ms) begin transaction
1767
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1768
+ Processing by WelcomeController#index as HTML
1769
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1770
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1771
+  (0.0ms) rollback transaction
1772
+  (0.0ms) begin transaction
1773
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1774
+ Processing by WelcomeController#index as HTML
1775
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1776
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1777
+  (0.0ms) rollback transaction
1778
+  (0.0ms) begin transaction
1779
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1780
+ Processing by WelcomeController#index as HTML
1781
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1782
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1783
+  (0.0ms) rollback transaction
1784
+  (0.0ms) begin transaction
1785
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1786
+ Processing by WelcomeController#index as HTML
1787
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1788
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1789
+  (0.0ms) rollback transaction
1790
+  (0.0ms) begin transaction
1791
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1792
+ Processing by WelcomeController#index as HTML
1793
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1794
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1795
+  (0.0ms) rollback transaction
1796
+  (0.0ms) begin transaction
1797
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1798
+ Processing by WelcomeController#index as HTML
1799
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1800
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1801
+  (0.0ms) rollback transaction
1802
+  (0.0ms) begin transaction
1803
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1804
+ Processing by WelcomeController#index as HTML
1805
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1806
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1807
+  (0.0ms) rollback transaction
1808
+  (0.1ms) begin transaction
1809
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1810
+ Processing by WelcomeController#index as HTML
1811
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1812
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1813
+  (0.0ms) rollback transaction
1814
+  (0.0ms) begin transaction
1815
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1816
+ Processing by WelcomeController#index as HTML
1817
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1818
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1819
+  (0.0ms) rollback transaction
1820
+  (0.0ms) begin transaction
1821
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1822
+ Processing by WelcomeController#index as HTML
1823
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1824
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1825
+  (2.1ms) rollback transaction
1826
+  (0.1ms) begin transaction
1827
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1828
+ Processing by WelcomeController#index as HTML
1829
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1830
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1831
+  (0.1ms) rollback transaction
1832
+  (0.0ms) begin transaction
1833
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1834
+ Processing by WelcomeController#index as HTML
1835
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1836
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1837
+  (0.1ms) rollback transaction
1838
+  (0.0ms) begin transaction
1839
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1840
+ Processing by WelcomeController#index as HTML
1841
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1842
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1843
+  (0.1ms) rollback transaction
1844
+  (0.0ms) begin transaction
1845
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1846
+ Processing by WelcomeController#index as HTML
1847
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1848
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1849
+  (0.0ms) rollback transaction
1850
+  (0.0ms) begin transaction
1851
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1852
+ Processing by WelcomeController#index as HTML
1853
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1854
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1855
+  (0.1ms) rollback transaction
1856
+  (0.1ms) begin transaction
1857
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:12:41 +0400
1858
+ Processing by WelcomeController#index as HTML
1859
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1860
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1861
+  (0.0ms) rollback transaction
1862
+ Connecting to database specified by database.yml
1863
+  (0.3ms) begin transaction
1864
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1865
+ Processing by WelcomeController#index as HTML
1866
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
1867
+ Completed 200 OK in 14.4ms (Views: 14.1ms | ActiveRecord: 0.0ms)
1868
+  (0.1ms) rollback transaction
1869
+  (0.0ms) begin transaction
1870
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1871
+ Processing by WelcomeController#index as HTML
1872
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1873
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1874
+  (0.0ms) rollback transaction
1875
+  (0.0ms) begin transaction
1876
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1877
+ Processing by WelcomeController#index as HTML
1878
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1879
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1880
+  (0.0ms) rollback transaction
1881
+  (0.0ms) begin transaction
1882
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1883
+ Processing by WelcomeController#index as HTML
1884
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1885
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1886
+  (0.0ms) rollback transaction
1887
+  (0.0ms) begin transaction
1888
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1889
+ Processing by WelcomeController#index as HTML
1890
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1891
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1892
+  (0.0ms) rollback transaction
1893
+  (0.0ms) begin transaction
1894
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1895
+ Processing by WelcomeController#index as HTML
1896
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1897
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1898
+  (0.0ms) rollback transaction
1899
+  (0.0ms) begin transaction
1900
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1901
+ Processing by WelcomeController#index as HTML
1902
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
1903
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1904
+  (0.0ms) rollback transaction
1905
+  (0.0ms) begin transaction
1906
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1907
+ Processing by WelcomeController#index as HTML
1908
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1909
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1910
+  (0.0ms) rollback transaction
1911
+  (0.0ms) begin transaction
1912
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1913
+ Processing by WelcomeController#index as HTML
1914
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1915
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1916
+  (0.0ms) rollback transaction
1917
+  (0.0ms) begin transaction
1918
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1919
+ Processing by WelcomeController#index as HTML
1920
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1921
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1922
+  (0.0ms) rollback transaction
1923
+  (0.0ms) begin transaction
1924
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1925
+ Processing by WelcomeController#index as HTML
1926
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1927
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1928
+  (0.0ms) rollback transaction
1929
+  (0.0ms) begin transaction
1930
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1931
+ Processing by WelcomeController#index as HTML
1932
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
1933
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1934
+  (0.0ms) rollback transaction
1935
+  (0.0ms) begin transaction
1936
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1937
+ Processing by WelcomeController#index as HTML
1938
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1939
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1940
+  (0.0ms) rollback transaction
1941
+  (0.0ms) begin transaction
1942
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1943
+ Processing by WelcomeController#index as HTML
1944
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1945
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1946
+  (0.1ms) rollback transaction
1947
+  (0.0ms) begin transaction
1948
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1949
+ Processing by WelcomeController#index as HTML
1950
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1951
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1952
+  (0.1ms) rollback transaction
1953
+  (0.0ms) begin transaction
1954
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1955
+ Processing by WelcomeController#index as HTML
1956
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1957
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1958
+  (0.1ms) rollback transaction
1959
+  (0.1ms) begin transaction
1960
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1961
+ Processing by WelcomeController#index as HTML
1962
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1963
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1964
+  (0.1ms) rollback transaction
1965
+  (0.0ms) begin transaction
1966
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:13:47 +0400
1967
+ Processing by WelcomeController#index as HTML
1968
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1969
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1970
+  (0.0ms) rollback transaction
1971
+ Connecting to database specified by database.yml
1972
+  (0.4ms) begin transaction
1973
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:36 +0400
1974
+ Processing by WelcomeController#index as HTML
1975
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
1976
+ Completed 200 OK in 14.4ms (Views: 14.1ms | ActiveRecord: 0.0ms)
1977
+  (0.1ms) rollback transaction
1978
+  (0.0ms) begin transaction
1979
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:36 +0400
1980
+ Processing by WelcomeController#index as HTML
1981
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1982
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1983
+  (0.0ms) rollback transaction
1984
+  (0.0ms) begin transaction
1985
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:36 +0400
1986
+ Processing by WelcomeController#index as HTML
1987
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1988
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1989
+  (0.0ms) rollback transaction
1990
+  (0.0ms) begin transaction
1991
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:36 +0400
1992
+ Processing by WelcomeController#index as HTML
1993
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
1994
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
1995
+  (0.0ms) rollback transaction
1996
+  (0.1ms) begin transaction
1997
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:36 +0400
1998
+ Processing by WelcomeController#index as HTML
1999
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2000
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2001
+  (0.0ms) rollback transaction
2002
+  (0.0ms) begin transaction
2003
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:36 +0400
2004
+ Processing by WelcomeController#index as HTML
2005
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2006
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2007
+  (0.0ms) rollback transaction
2008
+  (0.0ms) begin transaction
2009
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2010
+ Processing by WelcomeController#index as HTML
2011
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2012
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2013
+  (0.0ms) rollback transaction
2014
+  (0.0ms) begin transaction
2015
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2016
+ Processing by WelcomeController#index as HTML
2017
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2018
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2019
+  (0.0ms) rollback transaction
2020
+  (0.0ms) begin transaction
2021
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2022
+ Processing by WelcomeController#index as HTML
2023
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2024
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2025
+  (0.0ms) rollback transaction
2026
+  (0.0ms) begin transaction
2027
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2028
+ Processing by WelcomeController#index as HTML
2029
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2030
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2031
+  (0.0ms) rollback transaction
2032
+  (0.0ms) begin transaction
2033
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2034
+ Processing by WelcomeController#index as HTML
2035
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2036
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2037
+  (0.0ms) rollback transaction
2038
+  (0.0ms) begin transaction
2039
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2040
+ Processing by WelcomeController#index as HTML
2041
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2042
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2043
+  (0.1ms) rollback transaction
2044
+  (0.1ms) begin transaction
2045
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2046
+ Processing by WelcomeController#index as HTML
2047
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
2048
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2049
+  (0.1ms) rollback transaction
2050
+  (0.1ms) begin transaction
2051
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2052
+ Processing by WelcomeController#index as HTML
2053
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2054
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2055
+  (0.0ms) rollback transaction
2056
+  (0.0ms) begin transaction
2057
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2058
+ Processing by WelcomeController#index as HTML
2059
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2060
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2061
+  (0.0ms) rollback transaction
2062
+  (0.0ms) begin transaction
2063
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2064
+ Processing by WelcomeController#index as HTML
2065
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2066
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2067
+  (0.0ms) rollback transaction
2068
+  (0.0ms) begin transaction
2069
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2070
+ Processing by WelcomeController#index as HTML
2071
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2072
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2073
+  (0.0ms) rollback transaction
2074
+  (0.0ms) begin transaction
2075
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:15:37 +0400
2076
+ Processing by WelcomeController#index as HTML
2077
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2078
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2079
+  (0.0ms) rollback transaction
2080
+ Connecting to database specified by database.yml
2081
+  (0.3ms) begin transaction
2082
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2083
+ Processing by WelcomeController#index as HTML
2084
+ Rendered welcome/index.html.haml within layouts/application (4.1ms)
2085
+ Completed 200 OK in 13.9ms (Views: 13.6ms | ActiveRecord: 0.0ms)
2086
+  (0.1ms) rollback transaction
2087
+  (0.0ms) begin transaction
2088
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2089
+ Processing by WelcomeController#index as HTML
2090
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2091
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2092
+  (0.0ms) rollback transaction
2093
+  (0.0ms) begin transaction
2094
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2095
+ Processing by WelcomeController#index as HTML
2096
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2097
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2098
+  (0.0ms) rollback transaction
2099
+  (0.0ms) begin transaction
2100
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2101
+ Processing by WelcomeController#index as HTML
2102
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2103
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2104
+  (0.1ms) rollback transaction
2105
+  (0.0ms) begin transaction
2106
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2107
+ Processing by WelcomeController#index as HTML
2108
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2109
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2110
+  (0.0ms) rollback transaction
2111
+  (0.0ms) begin transaction
2112
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2113
+ Processing by WelcomeController#index as HTML
2114
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2115
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2116
+  (0.0ms) rollback transaction
2117
+  (0.0ms) begin transaction
2118
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2119
+ Processing by WelcomeController#index as HTML
2120
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2121
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2122
+  (0.0ms) rollback transaction
2123
+  (0.0ms) begin transaction
2124
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2125
+ Processing by WelcomeController#index as HTML
2126
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2127
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2128
+  (0.0ms) rollback transaction
2129
+  (0.0ms) begin transaction
2130
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2131
+ Processing by WelcomeController#index as HTML
2132
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2133
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2134
+  (0.0ms) rollback transaction
2135
+  (0.0ms) begin transaction
2136
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2137
+ Processing by WelcomeController#index as HTML
2138
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2139
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2140
+  (0.0ms) rollback transaction
2141
+  (0.0ms) begin transaction
2142
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2143
+ Processing by WelcomeController#index as HTML
2144
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2145
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2146
+  (0.0ms) rollback transaction
2147
+  (0.0ms) begin transaction
2148
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2149
+ Processing by WelcomeController#index as HTML
2150
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2151
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2152
+  (0.0ms) rollback transaction
2153
+  (0.1ms) begin transaction
2154
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2155
+ Processing by WelcomeController#index as HTML
2156
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
2157
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2158
+  (0.1ms) rollback transaction
2159
+  (0.1ms) begin transaction
2160
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2161
+ Processing by WelcomeController#index as HTML
2162
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2163
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2164
+  (0.0ms) rollback transaction
2165
+  (0.0ms) begin transaction
2166
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2167
+ Processing by WelcomeController#index as HTML
2168
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2169
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2170
+  (0.0ms) rollback transaction
2171
+  (0.0ms) begin transaction
2172
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2173
+ Processing by WelcomeController#index as HTML
2174
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2175
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2176
+  (0.0ms) rollback transaction
2177
+  (0.0ms) begin transaction
2178
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2179
+ Processing by WelcomeController#index as HTML
2180
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2181
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2182
+  (0.0ms) rollback transaction
2183
+  (0.0ms) begin transaction
2184
+ Started GET "/" for 127.0.0.1 at 2014-03-13 19:16:56 +0400
2185
+ Processing by WelcomeController#index as HTML
2186
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2187
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2188
+  (0.0ms) rollback transaction
2189
+ Connecting to database specified by database.yml
2190
+  (0.3ms) begin transaction
2191
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2192
+ Processing by WelcomeController#index as HTML
2193
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
2194
+ Completed 200 OK in 15.1ms (Views: 14.7ms | ActiveRecord: 0.0ms)
2195
+  (0.1ms) rollback transaction
2196
+  (0.1ms) begin transaction
2197
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2198
+ Processing by WelcomeController#index as HTML
2199
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2200
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2201
+  (0.1ms) rollback transaction
2202
+  (0.0ms) begin transaction
2203
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2204
+ Processing by WelcomeController#index as HTML
2205
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2206
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2207
+  (0.1ms) rollback transaction
2208
+  (0.1ms) begin transaction
2209
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2210
+ Processing by WelcomeController#index as HTML
2211
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2212
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2213
+  (0.0ms) rollback transaction
2214
+  (0.0ms) begin transaction
2215
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2216
+ Processing by WelcomeController#index as HTML
2217
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2218
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2219
+  (0.0ms) rollback transaction
2220
+  (0.0ms) begin transaction
2221
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2222
+ Processing by WelcomeController#index as HTML
2223
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2224
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2225
+  (0.0ms) rollback transaction
2226
+  (0.0ms) begin transaction
2227
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2228
+ Processing by WelcomeController#index as HTML
2229
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2230
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2231
+  (0.0ms) rollback transaction
2232
+  (0.0ms) begin transaction
2233
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2234
+ Processing by WelcomeController#index as HTML
2235
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2236
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2237
+  (0.0ms) rollback transaction
2238
+  (0.0ms) begin transaction
2239
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2240
+ Processing by WelcomeController#index as HTML
2241
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2242
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2243
+  (0.0ms) rollback transaction
2244
+  (0.0ms) begin transaction
2245
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2246
+ Processing by WelcomeController#index as HTML
2247
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2248
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2249
+  (0.0ms) rollback transaction
2250
+  (0.0ms) begin transaction
2251
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2252
+ Processing by WelcomeController#index as HTML
2253
+ Rendered welcome/index.html.haml within layouts/application (1.3ms)
2254
+ Completed 200 OK in 3.0ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2255
+  (0.1ms) rollback transaction
2256
+  (0.0ms) begin transaction
2257
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2258
+ Processing by WelcomeController#index as HTML
2259
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2260
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2261
+  (0.0ms) rollback transaction
2262
+  (0.0ms) begin transaction
2263
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2264
+ Processing by WelcomeController#index as HTML
2265
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2266
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2267
+  (0.0ms) rollback transaction
2268
+  (0.0ms) begin transaction
2269
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2270
+ Processing by WelcomeController#index as HTML
2271
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2272
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2273
+  (0.0ms) rollback transaction
2274
+  (0.0ms) begin transaction
2275
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2276
+ Processing by WelcomeController#index as HTML
2277
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2278
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2279
+  (0.0ms) rollback transaction
2280
+  (0.0ms) begin transaction
2281
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2282
+ Processing by WelcomeController#index as HTML
2283
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2284
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2285
+  (0.0ms) rollback transaction
2286
+  (0.0ms) begin transaction
2287
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:24:59 +0400
2288
+ Processing by WelcomeController#index as HTML
2289
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2290
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2291
+  (0.0ms) rollback transaction
2292
+  (0.0ms) begin transaction
2293
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:25:00 +0400
2294
+ Processing by WelcomeController#index as HTML
2295
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2296
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2297
+  (0.0ms) rollback transaction
2298
+ Connecting to database specified by database.yml
2299
+  (0.1ms) select sqlite_version(*)
2300
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2301
+ Connecting to database specified by database.yml
2302
+  (0.3ms) begin transaction
2303
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2304
+ Processing by WelcomeController#index as HTML
2305
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
2306
+ Completed 200 OK in 14.6ms (Views: 14.4ms | ActiveRecord: 0.0ms)
2307
+  (0.0ms) rollback transaction
2308
+  (0.1ms) begin transaction
2309
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2310
+ Processing by WelcomeController#index as HTML
2311
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2312
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2313
+  (0.1ms) rollback transaction
2314
+  (0.0ms) begin transaction
2315
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2316
+ Processing by WelcomeController#index as HTML
2317
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2318
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2319
+  (0.0ms) rollback transaction
2320
+  (0.0ms) begin transaction
2321
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2322
+ Processing by WelcomeController#index as HTML
2323
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2324
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2325
+  (0.0ms) rollback transaction
2326
+  (0.0ms) begin transaction
2327
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2328
+ Processing by WelcomeController#index as HTML
2329
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2330
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2331
+  (0.0ms) rollback transaction
2332
+  (0.0ms) begin transaction
2333
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2334
+ Processing by WelcomeController#index as HTML
2335
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2336
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2337
+  (0.1ms) rollback transaction
2338
+  (0.1ms) begin transaction
2339
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2340
+ Processing by WelcomeController#index as HTML
2341
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2342
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2343
+  (0.1ms) rollback transaction
2344
+  (0.0ms) begin transaction
2345
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2346
+ Processing by WelcomeController#index as HTML
2347
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2348
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2349
+  (0.1ms) rollback transaction
2350
+  (0.1ms) begin transaction
2351
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2352
+ Processing by WelcomeController#index as HTML
2353
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2354
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2355
+  (0.1ms) rollback transaction
2356
+  (0.0ms) begin transaction
2357
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2358
+ Processing by WelcomeController#index as HTML
2359
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2360
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2361
+  (0.1ms) rollback transaction
2362
+  (0.0ms) begin transaction
2363
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2364
+ Processing by WelcomeController#index as HTML
2365
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2366
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2367
+  (0.0ms) rollback transaction
2368
+  (0.0ms) begin transaction
2369
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2370
+ Processing by WelcomeController#index as HTML
2371
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2372
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2373
+  (0.0ms) rollback transaction
2374
+  (0.0ms) begin transaction
2375
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2376
+ Processing by WelcomeController#index as HTML
2377
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2378
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2379
+  (0.1ms) rollback transaction
2380
+  (0.0ms) begin transaction
2381
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2382
+ Processing by WelcomeController#index as HTML
2383
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2384
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2385
+  (0.0ms) rollback transaction
2386
+  (0.0ms) begin transaction
2387
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2388
+ Processing by WelcomeController#index as HTML
2389
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2390
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2391
+  (0.0ms) rollback transaction
2392
+  (0.0ms) begin transaction
2393
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2394
+ Processing by WelcomeController#index as HTML
2395
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2396
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2397
+  (0.0ms) rollback transaction
2398
+  (0.0ms) begin transaction
2399
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2400
+ Processing by WelcomeController#index as HTML
2401
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2402
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2403
+  (0.0ms) rollback transaction
2404
+  (0.0ms) begin transaction
2405
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:37:12 +0400
2406
+ Processing by WelcomeController#index as HTML
2407
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2408
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2409
+  (0.0ms) rollback transaction
2410
+ Connecting to database specified by database.yml
2411
+  (0.2ms) begin transaction
2412
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2413
+ Processing by WelcomeController#index as HTML
2414
+ Rendered welcome/index.html.haml within layouts/application (4.1ms)
2415
+ Completed 200 OK in 14.9ms (Views: 14.6ms | ActiveRecord: 0.0ms)
2416
+  (0.1ms) rollback transaction
2417
+  (0.1ms) begin transaction
2418
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2419
+ Processing by WelcomeController#index as HTML
2420
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2421
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2422
+  (0.1ms) rollback transaction
2423
+  (0.1ms) begin transaction
2424
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2425
+ Processing by WelcomeController#index as HTML
2426
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2427
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2428
+  (0.0ms) rollback transaction
2429
+  (0.1ms) begin transaction
2430
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2431
+ Processing by WelcomeController#index as HTML
2432
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2433
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2434
+  (0.0ms) rollback transaction
2435
+  (0.0ms) begin transaction
2436
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2437
+ Processing by WelcomeController#index as HTML
2438
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2439
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2440
+  (0.0ms) rollback transaction
2441
+  (0.0ms) begin transaction
2442
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2443
+ Processing by WelcomeController#index as HTML
2444
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2445
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2446
+  (0.0ms) rollback transaction
2447
+  (0.1ms) begin transaction
2448
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2449
+ Processing by WelcomeController#index as HTML
2450
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2451
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2452
+  (0.1ms) rollback transaction
2453
+  (0.0ms) begin transaction
2454
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2455
+ Processing by WelcomeController#index as HTML
2456
+ Rendered welcome/index.html.haml within layouts/application (0.8ms)
2457
+ Completed 200 OK in 2.6ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2458
+  (0.1ms) rollback transaction
2459
+  (0.0ms) begin transaction
2460
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2461
+ Processing by WelcomeController#index as HTML
2462
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2463
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2464
+  (0.0ms) rollback transaction
2465
+  (0.0ms) begin transaction
2466
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2467
+ Processing by WelcomeController#index as HTML
2468
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2469
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2470
+  (0.0ms) rollback transaction
2471
+  (0.0ms) begin transaction
2472
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2473
+ Processing by WelcomeController#index as HTML
2474
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2475
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2476
+  (0.1ms) rollback transaction
2477
+  (0.1ms) begin transaction
2478
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2479
+ Processing by WelcomeController#index as HTML
2480
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2481
+ Completed 200 OK in 2.3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2482
+  (0.1ms) rollback transaction
2483
+  (0.0ms) begin transaction
2484
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2485
+ Processing by WelcomeController#index as HTML
2486
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2487
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2488
+  (0.0ms) rollback transaction
2489
+  (0.0ms) begin transaction
2490
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2491
+ Processing by WelcomeController#index as HTML
2492
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2493
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2494
+  (0.0ms) rollback transaction
2495
+  (0.0ms) begin transaction
2496
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2497
+ Processing by WelcomeController#index as HTML
2498
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2499
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2500
+  (0.1ms) rollback transaction
2501
+  (0.0ms) begin transaction
2502
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2503
+ Processing by WelcomeController#index as HTML
2504
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2505
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2506
+  (0.1ms) rollback transaction
2507
+  (0.0ms) begin transaction
2508
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2509
+ Processing by WelcomeController#index as HTML
2510
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2511
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2512
+  (0.0ms) rollback transaction
2513
+  (0.0ms) begin transaction
2514
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:05 +0400
2515
+ Processing by WelcomeController#index as HTML
2516
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2517
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2518
+  (0.1ms) rollback transaction
2519
+ Connecting to database specified by database.yml
2520
+  (0.2ms) begin transaction
2521
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2522
+ Processing by WelcomeController#index as HTML
2523
+ Rendered welcome/index.html.haml within layouts/application (4.3ms)
2524
+ Completed 200 OK in 14.2ms (Views: 13.9ms | ActiveRecord: 0.0ms)
2525
+  (0.1ms) rollback transaction
2526
+  (0.0ms) begin transaction
2527
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2528
+ Processing by WelcomeController#index as HTML
2529
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2530
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2531
+  (0.0ms) rollback transaction
2532
+  (0.1ms) begin transaction
2533
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2534
+ Processing by WelcomeController#index as HTML
2535
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2536
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2537
+  (0.0ms) rollback transaction
2538
+  (0.1ms) begin transaction
2539
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2540
+ Processing by WelcomeController#index as HTML
2541
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2542
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2543
+  (0.1ms) rollback transaction
2544
+  (0.1ms) begin transaction
2545
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2546
+ Processing by WelcomeController#index as HTML
2547
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2548
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2549
+  (0.0ms) rollback transaction
2550
+  (0.0ms) begin transaction
2551
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2552
+ Processing by WelcomeController#index as HTML
2553
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2554
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2555
+  (0.0ms) rollback transaction
2556
+  (0.0ms) begin transaction
2557
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2558
+ Processing by WelcomeController#index as HTML
2559
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2560
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2561
+  (0.0ms) rollback transaction
2562
+  (0.0ms) begin transaction
2563
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2564
+ Processing by WelcomeController#index as HTML
2565
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2566
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2567
+  (0.1ms) rollback transaction
2568
+  (0.0ms) begin transaction
2569
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2570
+ Processing by WelcomeController#index as HTML
2571
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2572
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2573
+  (0.1ms) rollback transaction
2574
+  (0.0ms) begin transaction
2575
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2576
+ Processing by WelcomeController#index as HTML
2577
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2578
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2579
+  (0.0ms) rollback transaction
2580
+  (0.0ms) begin transaction
2581
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2582
+ Processing by WelcomeController#index as HTML
2583
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2584
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2585
+  (0.1ms) rollback transaction
2586
+  (0.0ms) begin transaction
2587
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2588
+ Processing by WelcomeController#index as HTML
2589
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2590
+ Completed 200 OK in 2.0ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2591
+  (0.1ms) rollback transaction
2592
+  (0.0ms) begin transaction
2593
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2594
+ Processing by WelcomeController#index as HTML
2595
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2596
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2597
+  (0.1ms) rollback transaction
2598
+  (0.0ms) begin transaction
2599
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2600
+ Processing by WelcomeController#index as HTML
2601
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2602
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2603
+  (0.0ms) rollback transaction
2604
+  (0.0ms) begin transaction
2605
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2606
+ Processing by WelcomeController#index as HTML
2607
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2608
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2609
+  (0.0ms) rollback transaction
2610
+  (0.0ms) begin transaction
2611
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2612
+ Processing by WelcomeController#index as HTML
2613
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2614
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2615
+  (0.0ms) rollback transaction
2616
+  (0.0ms) begin transaction
2617
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2618
+ Processing by WelcomeController#index as HTML
2619
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2620
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2621
+  (0.1ms) rollback transaction
2622
+  (0.1ms) begin transaction
2623
+ Started GET "/" for 127.0.0.1 at 2014-03-14 13:43:12 +0400
2624
+ Processing by WelcomeController#index as HTML
2625
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2626
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2627
+  (0.1ms) rollback transaction
2628
+ Connecting to database specified by database.yml
2629
+  (0.3ms) begin transaction
2630
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2631
+ Processing by WelcomeController#index as HTML
2632
+ Rendered welcome/index.html.haml within layouts/application (4.0ms)
2633
+ Completed 200 OK in 28.4ms (Views: 28.2ms | ActiveRecord: 0.0ms)
2634
+  (0.1ms) rollback transaction
2635
+  (0.0ms) begin transaction
2636
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2637
+ Processing by WelcomeController#index as HTML
2638
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2639
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2640
+  (0.0ms) rollback transaction
2641
+  (0.0ms) begin transaction
2642
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2643
+ Processing by WelcomeController#index as HTML
2644
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2645
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2646
+  (0.0ms) rollback transaction
2647
+  (0.0ms) begin transaction
2648
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2649
+ Processing by WelcomeController#index as HTML
2650
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2651
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2652
+  (0.0ms) rollback transaction
2653
+  (0.0ms) begin transaction
2654
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2655
+ Processing by WelcomeController#index as HTML
2656
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2657
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2658
+  (0.0ms) rollback transaction
2659
+  (0.0ms) begin transaction
2660
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2661
+ Processing by WelcomeController#index as HTML
2662
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2663
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2664
+  (0.0ms) rollback transaction
2665
+  (0.1ms) begin transaction
2666
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2667
+ Processing by WelcomeController#index as HTML
2668
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
2669
+ Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2670
+  (0.0ms) rollback transaction
2671
+  (0.1ms) begin transaction
2672
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2673
+ Processing by WelcomeController#index as HTML
2674
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2675
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2676
+  (0.0ms) rollback transaction
2677
+  (0.0ms) begin transaction
2678
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2679
+ Processing by WelcomeController#index as HTML
2680
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2681
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2682
+  (0.0ms) rollback transaction
2683
+  (0.1ms) begin transaction
2684
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2685
+ Processing by WelcomeController#index as HTML
2686
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2687
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2688
+  (0.1ms) rollback transaction
2689
+  (0.0ms) begin transaction
2690
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2691
+ Processing by WelcomeController#index as HTML
2692
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2693
+ Completed 200 OK in 16.7ms (Views: 16.5ms | ActiveRecord: 0.0ms)
2694
+  (0.1ms) rollback transaction
2695
+  (0.0ms) begin transaction
2696
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2697
+ Processing by WelcomeController#index as HTML
2698
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
2699
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
2700
+  (0.1ms) rollback transaction
2701
+  (0.0ms) begin transaction
2702
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2703
+ Processing by WelcomeController#index as HTML
2704
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2705
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2706
+  (0.0ms) rollback transaction
2707
+  (0.0ms) begin transaction
2708
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2709
+ Processing by WelcomeController#index as HTML
2710
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2711
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2712
+  (0.0ms) rollback transaction
2713
+  (0.0ms) begin transaction
2714
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2715
+ Processing by WelcomeController#index as HTML
2716
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2717
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2718
+  (0.1ms) rollback transaction
2719
+  (0.0ms) begin transaction
2720
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2721
+ Processing by WelcomeController#index as HTML
2722
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2723
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2724
+  (0.1ms) rollback transaction
2725
+  (0.0ms) begin transaction
2726
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2727
+ Processing by WelcomeController#index as HTML
2728
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2729
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2730
+  (0.0ms) rollback transaction
2731
+  (0.0ms) begin transaction
2732
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:00:27 +0400
2733
+ Processing by WelcomeController#index as HTML
2734
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2735
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2736
+  (0.0ms) rollback transaction
2737
+ Connecting to database specified by database.yml
2738
+  (0.2ms) begin transaction
2739
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2740
+ Processing by WelcomeController#index as HTML
2741
+ Rendered welcome/index.html.haml within layouts/application (3.9ms)
2742
+ Completed 200 OK in 12.7ms (Views: 12.4ms | ActiveRecord: 0.0ms)
2743
+  (0.0ms) rollback transaction
2744
+  (0.0ms) begin transaction
2745
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2746
+ Processing by WelcomeController#index as HTML
2747
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2748
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2749
+  (0.0ms) rollback transaction
2750
+  (0.0ms) begin transaction
2751
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2752
+ Processing by WelcomeController#index as HTML
2753
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2754
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2755
+  (0.0ms) rollback transaction
2756
+  (0.0ms) begin transaction
2757
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2758
+ Processing by WelcomeController#index as HTML
2759
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2760
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2761
+  (0.0ms) rollback transaction
2762
+  (0.0ms) begin transaction
2763
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2764
+ Processing by WelcomeController#index as HTML
2765
+ Rendered welcome/index.html.haml within layouts/application (1.3ms)
2766
+ Completed 200 OK in 2.6ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2767
+  (0.1ms) rollback transaction
2768
+  (0.0ms) begin transaction
2769
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2770
+ Processing by WelcomeController#index as HTML
2771
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2772
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2773
+  (0.0ms) rollback transaction
2774
+  (0.0ms) begin transaction
2775
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2776
+ Processing by WelcomeController#index as HTML
2777
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2778
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2779
+  (0.1ms) rollback transaction
2780
+  (0.0ms) begin transaction
2781
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2782
+ Processing by WelcomeController#index as HTML
2783
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2784
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2785
+  (0.0ms) rollback transaction
2786
+  (0.0ms) begin transaction
2787
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2788
+ Processing by WelcomeController#index as HTML
2789
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2790
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2791
+  (0.1ms) rollback transaction
2792
+  (0.0ms) begin transaction
2793
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2794
+ Processing by WelcomeController#index as HTML
2795
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2796
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2797
+  (0.1ms) rollback transaction
2798
+  (0.0ms) begin transaction
2799
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2800
+ Processing by WelcomeController#index as HTML
2801
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2802
+ Completed 200 OK in 16.1ms (Views: 15.9ms | ActiveRecord: 0.0ms)
2803
+  (0.1ms) rollback transaction
2804
+  (0.1ms) begin transaction
2805
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2806
+ Processing by WelcomeController#index as HTML
2807
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2808
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2809
+  (0.0ms) rollback transaction
2810
+  (0.0ms) begin transaction
2811
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2812
+ Processing by WelcomeController#index as HTML
2813
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2814
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2815
+  (0.0ms) rollback transaction
2816
+  (0.0ms) begin transaction
2817
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2818
+ Processing by WelcomeController#index as HTML
2819
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2820
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2821
+  (0.0ms) rollback transaction
2822
+  (0.0ms) begin transaction
2823
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2824
+ Processing by WelcomeController#index as HTML
2825
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2826
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2827
+  (0.0ms) rollback transaction
2828
+  (0.0ms) begin transaction
2829
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2830
+ Processing by WelcomeController#index as HTML
2831
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2832
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2833
+  (0.1ms) rollback transaction
2834
+  (0.0ms) begin transaction
2835
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2836
+ Processing by WelcomeController#index as HTML
2837
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2838
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2839
+  (0.0ms) rollback transaction
2840
+  (0.0ms) begin transaction
2841
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:01:53 +0400
2842
+ Processing by WelcomeController#index as HTML
2843
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2844
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2845
+  (0.0ms) rollback transaction
2846
+ Connecting to database specified by database.yml
2847
+  (0.2ms) begin transaction
2848
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2849
+ Processing by WelcomeController#index as HTML
2850
+ Rendered welcome/index.html.haml within layouts/application (4.0ms)
2851
+ Completed 200 OK in 13.1ms (Views: 12.8ms | ActiveRecord: 0.0ms)
2852
+  (0.1ms) rollback transaction
2853
+  (0.0ms) begin transaction
2854
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2855
+ Processing by WelcomeController#index as HTML
2856
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2857
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2858
+  (0.0ms) rollback transaction
2859
+  (0.0ms) begin transaction
2860
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2861
+ Processing by WelcomeController#index as HTML
2862
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2863
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2864
+  (0.0ms) rollback transaction
2865
+  (0.0ms) begin transaction
2866
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2867
+ Processing by WelcomeController#index as HTML
2868
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2869
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2870
+  (0.1ms) rollback transaction
2871
+  (0.0ms) begin transaction
2872
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2873
+ Processing by WelcomeController#index as HTML
2874
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2875
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2876
+  (0.1ms) rollback transaction
2877
+  (0.0ms) begin transaction
2878
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2879
+ Processing by WelcomeController#index as HTML
2880
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
2881
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2882
+  (0.0ms) rollback transaction
2883
+  (0.0ms) begin transaction
2884
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2885
+ Processing by WelcomeController#index as HTML
2886
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2887
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2888
+  (0.0ms) rollback transaction
2889
+  (0.0ms) begin transaction
2890
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2891
+ Processing by WelcomeController#index as HTML
2892
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2893
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2894
+  (0.1ms) rollback transaction
2895
+  (0.0ms) begin transaction
2896
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2897
+ Processing by WelcomeController#index as HTML
2898
+ Rendered welcome/index.html.haml within layouts/application (0.7ms)
2899
+ Completed 200 OK in 2.3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
2900
+  (0.1ms) rollback transaction
2901
+  (0.0ms) begin transaction
2902
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2903
+ Processing by WelcomeController#index as HTML
2904
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2905
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2906
+  (0.0ms) rollback transaction
2907
+  (0.0ms) begin transaction
2908
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2909
+ Processing by WelcomeController#index as HTML
2910
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2911
+ Completed 200 OK in 16.7ms (Views: 16.6ms | ActiveRecord: 0.0ms)
2912
+  (0.0ms) rollback transaction
2913
+  (0.1ms) begin transaction
2914
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2915
+ Processing by WelcomeController#index as HTML
2916
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2917
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2918
+  (0.0ms) rollback transaction
2919
+  (0.0ms) begin transaction
2920
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2921
+ Processing by WelcomeController#index as HTML
2922
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2923
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2924
+  (0.0ms) rollback transaction
2925
+  (0.1ms) begin transaction
2926
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2927
+ Processing by WelcomeController#index as HTML
2928
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2929
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2930
+  (0.1ms) rollback transaction
2931
+  (0.1ms) begin transaction
2932
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2933
+ Processing by WelcomeController#index as HTML
2934
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2935
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2936
+  (0.0ms) rollback transaction
2937
+  (0.0ms) begin transaction
2938
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2939
+ Processing by WelcomeController#index as HTML
2940
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2941
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2942
+  (0.0ms) rollback transaction
2943
+  (0.0ms) begin transaction
2944
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2945
+ Processing by WelcomeController#index as HTML
2946
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2947
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2948
+  (0.0ms) rollback transaction
2949
+  (0.0ms) begin transaction
2950
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:02:33 +0400
2951
+ Processing by WelcomeController#index as HTML
2952
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2953
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2954
+  (0.0ms) rollback transaction
2955
+ Connecting to database specified by database.yml
2956
+  (0.3ms) begin transaction
2957
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
2958
+ Processing by WelcomeController#index as HTML
2959
+ Rendered welcome/index.html.haml within layouts/application (4.1ms)
2960
+ Completed 200 OK in 13.6ms (Views: 13.4ms | ActiveRecord: 0.0ms)
2961
+  (0.1ms) rollback transaction
2962
+  (0.0ms) begin transaction
2963
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
2964
+ Processing by WelcomeController#index as HTML
2965
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2966
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2967
+  (0.0ms) rollback transaction
2968
+  (0.0ms) begin transaction
2969
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
2970
+ Processing by WelcomeController#index as HTML
2971
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2972
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2973
+  (0.0ms) rollback transaction
2974
+  (0.0ms) begin transaction
2975
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
2976
+ Processing by WelcomeController#index as HTML
2977
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2978
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2979
+  (0.0ms) rollback transaction
2980
+  (0.0ms) begin transaction
2981
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
2982
+ Processing by WelcomeController#index as HTML
2983
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2984
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
2985
+  (0.0ms) rollback transaction
2986
+  (0.1ms) begin transaction
2987
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
2988
+ Processing by WelcomeController#index as HTML
2989
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
2990
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2991
+  (0.0ms) rollback transaction
2992
+  (0.1ms) begin transaction
2993
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
2994
+ Processing by WelcomeController#index as HTML
2995
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
2996
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2997
+  (0.1ms) rollback transaction
2998
+  (0.0ms) begin transaction
2999
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3000
+ Processing by WelcomeController#index as HTML
3001
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3002
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3003
+  (0.0ms) rollback transaction
3004
+  (0.0ms) begin transaction
3005
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3006
+ Processing by WelcomeController#index as HTML
3007
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3008
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3009
+  (0.0ms) rollback transaction
3010
+  (0.0ms) begin transaction
3011
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3012
+ Processing by WelcomeController#index as HTML
3013
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3014
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3015
+  (0.0ms) rollback transaction
3016
+  (0.0ms) begin transaction
3017
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3018
+ Processing by WelcomeController#index as HTML
3019
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3020
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3021
+  (0.1ms) rollback transaction
3022
+  (0.0ms) begin transaction
3023
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3024
+ Processing by WelcomeController#index as HTML
3025
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3026
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3027
+  (0.1ms) rollback transaction
3028
+  (0.0ms) begin transaction
3029
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3030
+ Processing by WelcomeController#index as HTML
3031
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3032
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3033
+  (0.0ms) rollback transaction
3034
+  (0.0ms) begin transaction
3035
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3036
+ Processing by WelcomeController#index as HTML
3037
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3038
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3039
+  (0.0ms) rollback transaction
3040
+  (0.0ms) begin transaction
3041
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3042
+ Processing by WelcomeController#index as HTML
3043
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3044
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3045
+  (0.0ms) rollback transaction
3046
+  (0.1ms) begin transaction
3047
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3048
+ Processing by WelcomeController#index as HTML
3049
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3050
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3051
+  (0.1ms) rollback transaction
3052
+  (0.1ms) begin transaction
3053
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3054
+ Processing by WelcomeController#index as HTML
3055
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3056
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3057
+  (0.1ms) rollback transaction
3058
+  (0.0ms) begin transaction
3059
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:03:17 +0400
3060
+ Processing by WelcomeController#index as HTML
3061
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3062
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3063
+  (0.0ms) rollback transaction
3064
+ Connecting to database specified by database.yml
3065
+  (0.2ms) begin transaction
3066
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:39 +0400
3067
+ Processing by WelcomeController#index as HTML
3068
+ Rendered welcome/index.html.haml within layouts/application (4.9ms)
3069
+ Completed 200 OK in 23.2ms (Views: 22.9ms | ActiveRecord: 0.0ms)
3070
+  (0.1ms) rollback transaction
3071
+  (0.0ms) begin transaction
3072
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:39 +0400
3073
+ Processing by WelcomeController#index as HTML
3074
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3075
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3076
+  (0.1ms) rollback transaction
3077
+  (0.1ms) begin transaction
3078
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:39 +0400
3079
+ Processing by WelcomeController#index as HTML
3080
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3081
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3082
+  (0.1ms) rollback transaction
3083
+  (0.0ms) begin transaction
3084
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:39 +0400
3085
+ Processing by WelcomeController#index as HTML
3086
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3087
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3088
+  (0.0ms) rollback transaction
3089
+  (0.1ms) begin transaction
3090
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:39 +0400
3091
+ Processing by WelcomeController#index as HTML
3092
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3093
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3094
+  (0.0ms) rollback transaction
3095
+  (0.0ms) begin transaction
3096
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3097
+ Processing by WelcomeController#index as HTML
3098
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3099
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3100
+  (0.1ms) rollback transaction
3101
+  (0.1ms) begin transaction
3102
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3103
+ Processing by WelcomeController#index as HTML
3104
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3105
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3106
+  (0.1ms) rollback transaction
3107
+  (0.0ms) begin transaction
3108
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3109
+ Processing by WelcomeController#index as HTML
3110
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3111
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3112
+  (0.0ms) rollback transaction
3113
+  (0.1ms) begin transaction
3114
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3115
+ Processing by WelcomeController#index as HTML
3116
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3117
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3118
+  (0.1ms) rollback transaction
3119
+  (0.0ms) begin transaction
3120
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3121
+ Processing by WelcomeController#index as HTML
3122
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3123
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3124
+  (0.0ms) rollback transaction
3125
+  (0.1ms) begin transaction
3126
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3127
+ Processing by WelcomeController#index as HTML
3128
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3129
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3130
+  (0.1ms) rollback transaction
3131
+  (0.1ms) begin transaction
3132
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3133
+ Processing by WelcomeController#index as HTML
3134
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3135
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3136
+  (0.0ms) rollback transaction
3137
+  (0.0ms) begin transaction
3138
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3139
+ Processing by WelcomeController#index as HTML
3140
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3141
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3142
+  (0.0ms) rollback transaction
3143
+  (0.0ms) begin transaction
3144
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3145
+ Processing by WelcomeController#index as HTML
3146
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3147
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3148
+  (0.0ms) rollback transaction
3149
+  (0.0ms) begin transaction
3150
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3151
+ Processing by WelcomeController#index as HTML
3152
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
3153
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3154
+  (0.0ms) rollback transaction
3155
+  (0.0ms) begin transaction
3156
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3157
+ Processing by WelcomeController#index as HTML
3158
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3159
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3160
+  (0.1ms) rollback transaction
3161
+  (0.0ms) begin transaction
3162
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3163
+ Processing by WelcomeController#index as HTML
3164
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3165
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3166
+  (0.0ms) rollback transaction
3167
+  (0.0ms) begin transaction
3168
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:45:40 +0400
3169
+ Processing by WelcomeController#index as HTML
3170
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3171
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3172
+  (0.0ms) rollback transaction
3173
+ Connecting to database specified by database.yml
3174
+  (0.2ms) begin transaction
3175
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3176
+ Processing by WelcomeController#index as HTML
3177
+ Rendered welcome/index.html.haml within layouts/application (5.6ms)
3178
+ Completed 200 OK in 15.5ms (Views: 15.2ms | ActiveRecord: 0.0ms)
3179
+  (0.0ms) rollback transaction
3180
+  (0.1ms) begin transaction
3181
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3182
+ Processing by WelcomeController#index as HTML
3183
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3184
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3185
+  (0.0ms) rollback transaction
3186
+  (0.0ms) begin transaction
3187
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3188
+ Processing by WelcomeController#index as HTML
3189
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3190
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3191
+  (0.0ms) rollback transaction
3192
+  (0.0ms) begin transaction
3193
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3194
+ Processing by WelcomeController#index as HTML
3195
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3196
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3197
+  (0.0ms) rollback transaction
3198
+  (0.0ms) begin transaction
3199
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3200
+ Processing by WelcomeController#index as HTML
3201
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3202
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3203
+  (0.0ms) rollback transaction
3204
+  (0.1ms) begin transaction
3205
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3206
+ Processing by WelcomeController#index as HTML
3207
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3208
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3209
+  (0.1ms) rollback transaction
3210
+  (0.0ms) begin transaction
3211
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3212
+ Processing by WelcomeController#index as HTML
3213
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3214
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3215
+  (0.1ms) rollback transaction
3216
+  (0.0ms) begin transaction
3217
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3218
+ Processing by WelcomeController#index as HTML
3219
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3220
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3221
+  (0.0ms) rollback transaction
3222
+  (0.0ms) begin transaction
3223
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3224
+ Processing by WelcomeController#index as HTML
3225
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3226
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3227
+  (0.0ms) rollback transaction
3228
+  (0.0ms) begin transaction
3229
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3230
+ Processing by WelcomeController#index as HTML
3231
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3232
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3233
+  (0.0ms) rollback transaction
3234
+  (0.0ms) begin transaction
3235
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3236
+ Processing by WelcomeController#index as HTML
3237
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3238
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3239
+  (0.1ms) rollback transaction
3240
+  (0.0ms) begin transaction
3241
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3242
+ Processing by WelcomeController#index as HTML
3243
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3244
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3245
+  (0.1ms) rollback transaction
3246
+  (0.0ms) begin transaction
3247
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3248
+ Processing by WelcomeController#index as HTML
3249
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3250
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3251
+  (0.0ms) rollback transaction
3252
+  (0.0ms) begin transaction
3253
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3254
+ Processing by WelcomeController#index as HTML
3255
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3256
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3257
+  (0.0ms) rollback transaction
3258
+  (0.1ms) begin transaction
3259
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3260
+ Processing by WelcomeController#index as HTML
3261
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3262
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3263
+  (0.1ms) rollback transaction
3264
+  (0.0ms) begin transaction
3265
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3266
+ Processing by WelcomeController#index as HTML
3267
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3268
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3269
+  (0.1ms) rollback transaction
3270
+  (0.1ms) begin transaction
3271
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3272
+ Processing by WelcomeController#index as HTML
3273
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3274
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3275
+  (0.0ms) rollback transaction
3276
+  (0.0ms) begin transaction
3277
+ Started GET "/" for 127.0.0.1 at 2014-03-14 18:47:39 +0400
3278
+ Processing by WelcomeController#index as HTML
3279
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3280
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3281
+  (0.0ms) rollback transaction
3282
+ Connecting to database specified by database.yml
3283
+  (0.3ms) begin transaction
3284
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3285
+ Processing by WelcomeController#index as HTML
3286
+ Rendered welcome/index.html.haml within layouts/application (6.6ms)
3287
+ Completed 200 OK in 22.9ms (Views: 22.5ms | ActiveRecord: 0.0ms)
3288
+  (0.1ms) rollback transaction
3289
+  (0.0ms) begin transaction
3290
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3291
+ Processing by WelcomeController#index as HTML
3292
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
3293
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3294
+  (0.1ms) rollback transaction
3295
+  (0.1ms) begin transaction
3296
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3297
+ Processing by WelcomeController#index as HTML
3298
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3299
+ Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3300
+  (0.0ms) rollback transaction
3301
+  (0.0ms) begin transaction
3302
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3303
+ Processing by WelcomeController#index as HTML
3304
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3305
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3306
+  (0.1ms) rollback transaction
3307
+  (0.0ms) begin transaction
3308
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3309
+ Processing by WelcomeController#index as HTML
3310
+ Rendered welcome/index.html.haml within layouts/application (1.0ms)
3311
+ Completed 200 OK in 3.4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3312
+  (0.1ms) rollback transaction
3313
+  (0.1ms) begin transaction
3314
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3315
+ Processing by WelcomeController#index as HTML
3316
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3317
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3318
+  (0.1ms) rollback transaction
3319
+  (0.0ms) begin transaction
3320
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3321
+ Processing by WelcomeController#index as HTML
3322
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3323
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3324
+  (0.1ms) rollback transaction
3325
+  (0.1ms) begin transaction
3326
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3327
+ Processing by WelcomeController#index as HTML
3328
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3329
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3330
+  (0.0ms) rollback transaction
3331
+  (0.0ms) begin transaction
3332
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3333
+ Processing by WelcomeController#index as HTML
3334
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3335
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3336
+  (0.1ms) rollback transaction
3337
+  (0.0ms) begin transaction
3338
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3339
+ Processing by WelcomeController#index as HTML
3340
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3341
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3342
+  (0.1ms) rollback transaction
3343
+  (0.0ms) begin transaction
3344
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3345
+ Processing by WelcomeController#index as HTML
3346
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3347
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3348
+  (0.0ms) rollback transaction
3349
+  (0.0ms) begin transaction
3350
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3351
+ Processing by WelcomeController#index as HTML
3352
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3353
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3354
+  (0.0ms) rollback transaction
3355
+  (0.0ms) begin transaction
3356
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3357
+ Processing by WelcomeController#index as HTML
3358
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3359
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3360
+  (0.0ms) rollback transaction
3361
+  (0.1ms) begin transaction
3362
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3363
+ Processing by WelcomeController#index as HTML
3364
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3365
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3366
+  (0.0ms) rollback transaction
3367
+  (0.1ms) begin transaction
3368
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3369
+ Processing by WelcomeController#index as HTML
3370
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3371
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3372
+  (0.0ms) rollback transaction
3373
+  (0.0ms) begin transaction
3374
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3375
+ Processing by WelcomeController#index as HTML
3376
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3377
+ Completed 200 OK in 1.8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3378
+  (0.0ms) rollback transaction
3379
+  (0.0ms) begin transaction
3380
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3381
+ Processing by WelcomeController#index as HTML
3382
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3383
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3384
+  (0.0ms) rollback transaction
3385
+  (0.0ms) begin transaction
3386
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:35:15 +0400
3387
+ Processing by WelcomeController#index as HTML
3388
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3389
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3390
+  (0.1ms) rollback transaction
3391
+ Connecting to database specified by database.yml
3392
+  (0.3ms) begin transaction
3393
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3394
+ Processing by WelcomeController#index as HTML
3395
+ Rendered welcome/index.html.haml within layouts/application (5.5ms)
3396
+ Completed 200 OK in 15.6ms (Views: 15.3ms | ActiveRecord: 0.0ms)
3397
+  (0.1ms) rollback transaction
3398
+  (0.0ms) begin transaction
3399
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3400
+ Processing by WelcomeController#index as HTML
3401
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3402
+ Completed 200 OK in 2.0ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3403
+  (0.1ms) rollback transaction
3404
+  (0.1ms) begin transaction
3405
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3406
+ Processing by WelcomeController#index as HTML
3407
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
3408
+ Completed 200 OK in 2.2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
3409
+  (0.1ms) rollback transaction
3410
+  (0.1ms) begin transaction
3411
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3412
+ Processing by WelcomeController#index as HTML
3413
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3414
+ Completed 200 OK in 2.3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
3415
+  (0.0ms) rollback transaction
3416
+  (0.0ms) begin transaction
3417
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3418
+ Processing by WelcomeController#index as HTML
3419
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3420
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3421
+  (0.0ms) rollback transaction
3422
+  (0.0ms) begin transaction
3423
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3424
+ Processing by WelcomeController#index as HTML
3425
+ Rendered welcome/index.html.haml within layouts/application (16.3ms)
3426
+ Completed 200 OK in 17.7ms (Views: 17.6ms | ActiveRecord: 0.0ms)
3427
+  (0.0ms) rollback transaction
3428
+  (0.0ms) begin transaction
3429
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3430
+ Processing by WelcomeController#index as HTML
3431
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3432
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3433
+  (0.1ms) rollback transaction
3434
+  (0.0ms) begin transaction
3435
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3436
+ Processing by WelcomeController#index as HTML
3437
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3438
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3439
+  (0.1ms) rollback transaction
3440
+  (0.0ms) begin transaction
3441
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3442
+ Processing by WelcomeController#index as HTML
3443
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3444
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3445
+  (0.0ms) rollback transaction
3446
+  (0.0ms) begin transaction
3447
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3448
+ Processing by WelcomeController#index as HTML
3449
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3450
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3451
+  (0.0ms) rollback transaction
3452
+  (0.1ms) begin transaction
3453
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3454
+ Processing by WelcomeController#index as HTML
3455
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3456
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3457
+  (0.0ms) rollback transaction
3458
+  (0.0ms) begin transaction
3459
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3460
+ Processing by WelcomeController#index as HTML
3461
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3462
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3463
+  (0.1ms) rollback transaction
3464
+  (0.0ms) begin transaction
3465
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3466
+ Processing by WelcomeController#index as HTML
3467
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3468
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3469
+  (0.1ms) rollback transaction
3470
+  (0.1ms) begin transaction
3471
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3472
+ Processing by WelcomeController#index as HTML
3473
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3474
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3475
+  (0.0ms) rollback transaction
3476
+  (0.0ms) begin transaction
3477
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3478
+ Processing by WelcomeController#index as HTML
3479
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3480
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3481
+  (0.0ms) rollback transaction
3482
+  (0.0ms) begin transaction
3483
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3484
+ Processing by WelcomeController#index as HTML
3485
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3486
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3487
+  (0.1ms) rollback transaction
3488
+  (0.0ms) begin transaction
3489
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3490
+ Processing by WelcomeController#index as HTML
3491
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3492
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3493
+  (0.1ms) rollback transaction
3494
+  (0.0ms) begin transaction
3495
+ Started GET "/" for 127.0.0.1 at 2014-03-19 18:44:14 +0400
3496
+ Processing by WelcomeController#index as HTML
3497
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3498
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3499
+  (0.0ms) rollback transaction
3500
+ Connecting to database specified by database.yml
3501
+  (0.2ms) begin transaction
3502
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:24 +0400
3503
+ Processing by WelcomeController#index as HTML
3504
+ Rendered welcome/index.html.haml within layouts/application (4.1ms)
3505
+ Completed 200 OK in 12.6ms (Views: 12.3ms | ActiveRecord: 0.0ms)
3506
+  (0.0ms) rollback transaction
3507
+  (0.0ms) begin transaction
3508
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3509
+ Processing by WelcomeController#index as HTML
3510
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3511
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3512
+  (0.1ms) rollback transaction
3513
+  (0.0ms) begin transaction
3514
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3515
+ Processing by WelcomeController#index as HTML
3516
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3517
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3518
+  (0.1ms) rollback transaction
3519
+  (0.0ms) begin transaction
3520
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3521
+ Processing by WelcomeController#index as HTML
3522
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
3523
+ Completed 200 OK in 2.1ms (Views: 2.0ms | ActiveRecord: 0.0ms)
3524
+  (0.0ms) rollback transaction
3525
+  (0.0ms) begin transaction
3526
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3527
+ Processing by WelcomeController#index as HTML
3528
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3529
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3530
+  (0.0ms) rollback transaction
3531
+  (0.0ms) begin transaction
3532
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3533
+ Processing by WelcomeController#index as HTML
3534
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3535
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3536
+  (0.0ms) rollback transaction
3537
+  (0.0ms) begin transaction
3538
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3539
+ Processing by WelcomeController#index as HTML
3540
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3541
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3542
+  (0.1ms) rollback transaction
3543
+  (0.0ms) begin transaction
3544
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3545
+ Processing by WelcomeController#index as HTML
3546
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3547
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3548
+  (0.0ms) rollback transaction
3549
+  (0.0ms) begin transaction
3550
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3551
+ Processing by WelcomeController#index as HTML
3552
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3553
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3554
+  (0.0ms) rollback transaction
3555
+  (0.0ms) begin transaction
3556
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3557
+ Processing by WelcomeController#index as HTML
3558
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3559
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3560
+  (0.1ms) rollback transaction
3561
+  (0.0ms) begin transaction
3562
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3563
+ Processing by WelcomeController#index as HTML
3564
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3565
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3566
+  (0.1ms) rollback transaction
3567
+  (0.0ms) begin transaction
3568
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3569
+ Processing by WelcomeController#index as HTML
3570
+ Rendered welcome/index.html.haml within layouts/application (0.6ms)
3571
+ Completed 200 OK in 2.3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
3572
+  (0.0ms) rollback transaction
3573
+  (0.0ms) begin transaction
3574
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3575
+ Processing by WelcomeController#index as HTML
3576
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3577
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3578
+  (0.0ms) rollback transaction
3579
+  (0.0ms) begin transaction
3580
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3581
+ Processing by WelcomeController#index as HTML
3582
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3583
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3584
+  (0.0ms) rollback transaction
3585
+  (0.0ms) begin transaction
3586
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3587
+ Processing by WelcomeController#index as HTML
3588
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3589
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3590
+  (0.1ms) rollback transaction
3591
+  (0.0ms) begin transaction
3592
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3593
+ Processing by WelcomeController#index as HTML
3594
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3595
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3596
+  (0.1ms) rollback transaction
3597
+  (0.1ms) begin transaction
3598
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3599
+ Processing by WelcomeController#index as HTML
3600
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3601
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3602
+  (0.0ms) rollback transaction
3603
+  (0.0ms) begin transaction
3604
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:04:25 +0400
3605
+ Processing by WelcomeController#index as HTML
3606
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3607
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3608
+  (0.0ms) rollback transaction
3609
+ Connecting to database specified by database.yml
3610
+  (0.2ms) begin transaction
3611
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3612
+ Processing by WelcomeController#index as HTML
3613
+ Rendered welcome/index.html.haml within layouts/application (4.0ms)
3614
+ Completed 200 OK in 12.5ms (Views: 12.2ms | ActiveRecord: 0.0ms)
3615
+  (0.0ms) rollback transaction
3616
+  (0.0ms) begin transaction
3617
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3618
+ Processing by WelcomeController#index as HTML
3619
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3620
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3621
+  (0.0ms) rollback transaction
3622
+  (0.0ms) begin transaction
3623
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3624
+ Processing by WelcomeController#index as HTML
3625
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3626
+ Completed 200 OK in 1.4ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3627
+  (0.0ms) rollback transaction
3628
+  (0.0ms) begin transaction
3629
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3630
+ Processing by WelcomeController#index as HTML
3631
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3632
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3633
+  (0.0ms) rollback transaction
3634
+  (0.1ms) begin transaction
3635
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3636
+ Processing by WelcomeController#index as HTML
3637
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3638
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3639
+  (0.1ms) rollback transaction
3640
+  (0.1ms) begin transaction
3641
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3642
+ Processing by WelcomeController#index as HTML
3643
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3644
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3645
+  (0.0ms) rollback transaction
3646
+  (0.0ms) begin transaction
3647
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3648
+ Processing by WelcomeController#index as HTML
3649
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3650
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3651
+  (0.0ms) rollback transaction
3652
+  (0.0ms) begin transaction
3653
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3654
+ Processing by WelcomeController#index as HTML
3655
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3656
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3657
+  (0.0ms) rollback transaction
3658
+  (0.0ms) begin transaction
3659
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3660
+ Processing by WelcomeController#index as HTML
3661
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3662
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3663
+  (0.0ms) rollback transaction
3664
+  (0.0ms) begin transaction
3665
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3666
+ Processing by WelcomeController#index as HTML
3667
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3668
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3669
+  (0.1ms) rollback transaction
3670
+  (0.0ms) begin transaction
3671
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3672
+ Processing by WelcomeController#index as HTML
3673
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3674
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3675
+  (0.0ms) rollback transaction
3676
+  (0.0ms) begin transaction
3677
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3678
+ Processing by WelcomeController#index as HTML
3679
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3680
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3681
+  (0.0ms) rollback transaction
3682
+  (0.0ms) begin transaction
3683
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3684
+ Processing by WelcomeController#index as HTML
3685
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3686
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3687
+  (0.0ms) rollback transaction
3688
+  (0.0ms) begin transaction
3689
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3690
+ Processing by WelcomeController#index as HTML
3691
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3692
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3693
+  (0.1ms) rollback transaction
3694
+  (0.0ms) begin transaction
3695
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3696
+ Processing by WelcomeController#index as HTML
3697
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3698
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3699
+  (0.1ms) rollback transaction
3700
+  (0.0ms) begin transaction
3701
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3702
+ Processing by WelcomeController#index as HTML
3703
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3704
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3705
+  (0.0ms) rollback transaction
3706
+  (0.1ms) begin transaction
3707
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3708
+ Processing by WelcomeController#index as HTML
3709
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3710
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3711
+  (0.0ms) rollback transaction
3712
+  (0.0ms) begin transaction
3713
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:06:17 +0400
3714
+ Processing by WelcomeController#index as HTML
3715
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3716
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3717
+  (0.0ms) rollback transaction
3718
+ Connecting to database specified by database.yml
3719
+  (0.3ms) begin transaction
3720
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3721
+ Processing by WelcomeController#index as HTML
3722
+ Rendered welcome/index.html.haml within layouts/application (4.4ms)
3723
+ Completed 200 OK in 13.1ms (Views: 12.8ms | ActiveRecord: 0.0ms)
3724
+  (0.1ms) rollback transaction
3725
+  (0.0ms) begin transaction
3726
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3727
+ Processing by WelcomeController#index as HTML
3728
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3729
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3730
+  (0.0ms) rollback transaction
3731
+  (0.0ms) begin transaction
3732
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3733
+ Processing by WelcomeController#index as HTML
3734
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3735
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3736
+  (0.0ms) rollback transaction
3737
+  (0.0ms) begin transaction
3738
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3739
+ Processing by WelcomeController#index as HTML
3740
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3741
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3742
+  (0.1ms) rollback transaction
3743
+  (0.0ms) begin transaction
3744
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3745
+ Processing by WelcomeController#index as HTML
3746
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3747
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3748
+  (0.1ms) rollback transaction
3749
+  (0.0ms) begin transaction
3750
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3751
+ Processing by WelcomeController#index as HTML
3752
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3753
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3754
+  (0.0ms) rollback transaction
3755
+  (0.0ms) begin transaction
3756
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3757
+ Processing by WelcomeController#index as HTML
3758
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3759
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3760
+  (0.1ms) rollback transaction
3761
+  (0.0ms) begin transaction
3762
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3763
+ Processing by WelcomeController#index as HTML
3764
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3765
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3766
+  (0.0ms) rollback transaction
3767
+  (0.0ms) begin transaction
3768
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3769
+ Processing by WelcomeController#index as HTML
3770
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3771
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3772
+  (0.0ms) rollback transaction
3773
+  (0.0ms) begin transaction
3774
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3775
+ Processing by WelcomeController#index as HTML
3776
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3777
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3778
+  (0.1ms) rollback transaction
3779
+  (0.0ms) begin transaction
3780
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3781
+ Processing by WelcomeController#index as HTML
3782
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3783
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3784
+  (0.1ms) rollback transaction
3785
+  (0.0ms) begin transaction
3786
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3787
+ Processing by WelcomeController#index as HTML
3788
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3789
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3790
+  (0.0ms) rollback transaction
3791
+  (0.0ms) begin transaction
3792
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3793
+ Processing by WelcomeController#index as HTML
3794
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3795
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3796
+  (0.0ms) rollback transaction
3797
+  (0.0ms) begin transaction
3798
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3799
+ Processing by WelcomeController#index as HTML
3800
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3801
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3802
+  (0.0ms) rollback transaction
3803
+  (0.0ms) begin transaction
3804
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3805
+ Processing by WelcomeController#index as HTML
3806
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3807
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3808
+  (0.1ms) rollback transaction
3809
+  (0.0ms) begin transaction
3810
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3811
+ Processing by WelcomeController#index as HTML
3812
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3813
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3814
+  (0.1ms) rollback transaction
3815
+  (0.0ms) begin transaction
3816
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3817
+ Processing by WelcomeController#index as HTML
3818
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3819
+ Completed 200 OK in 2.6ms (Views: 2.5ms | ActiveRecord: 0.0ms)
3820
+  (0.0ms) rollback transaction
3821
+  (0.0ms) begin transaction
3822
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:07:42 +0400
3823
+ Processing by WelcomeController#index as HTML
3824
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3825
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3826
+  (0.0ms) rollback transaction
3827
+ Connecting to database specified by database.yml
3828
+  (0.2ms) begin transaction
3829
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3830
+ Processing by WelcomeController#index as HTML
3831
+ Rendered welcome/index.html.haml within layouts/application (4.7ms)
3832
+ Completed 200 OK in 14.8ms (Views: 14.5ms | ActiveRecord: 0.0ms)
3833
+  (0.1ms) rollback transaction
3834
+  (0.0ms) begin transaction
3835
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3836
+ Processing by WelcomeController#index as HTML
3837
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3838
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3839
+  (0.0ms) rollback transaction
3840
+  (0.0ms) begin transaction
3841
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3842
+ Processing by WelcomeController#index as HTML
3843
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3844
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3845
+  (0.0ms) rollback transaction
3846
+  (0.1ms) begin transaction
3847
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3848
+ Processing by WelcomeController#index as HTML
3849
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3850
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3851
+  (0.0ms) rollback transaction
3852
+  (0.0ms) begin transaction
3853
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3854
+ Processing by WelcomeController#index as HTML
3855
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3856
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3857
+  (0.0ms) rollback transaction
3858
+  (0.0ms) begin transaction
3859
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3860
+ Processing by WelcomeController#index as HTML
3861
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3862
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3863
+  (0.0ms) rollback transaction
3864
+  (0.0ms) begin transaction
3865
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3866
+ Processing by WelcomeController#index as HTML
3867
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3868
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3869
+  (0.0ms) rollback transaction
3870
+  (0.0ms) begin transaction
3871
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3872
+ Processing by WelcomeController#index as HTML
3873
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3874
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3875
+  (0.1ms) rollback transaction
3876
+  (0.0ms) begin transaction
3877
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3878
+ Processing by WelcomeController#index as HTML
3879
+ Rendered welcome/index.html.haml within layouts/application (2.5ms)
3880
+ Completed 200 OK in 4.1ms (Views: 3.9ms | ActiveRecord: 0.0ms)
3881
+  (0.1ms) rollback transaction
3882
+  (0.0ms) begin transaction
3883
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3884
+ Processing by WelcomeController#index as HTML
3885
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3886
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3887
+  (0.1ms) rollback transaction
3888
+  (0.0ms) begin transaction
3889
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3890
+ Processing by WelcomeController#index as HTML
3891
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3892
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3893
+  (0.1ms) rollback transaction
3894
+  (0.0ms) begin transaction
3895
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3896
+ Processing by WelcomeController#index as HTML
3897
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3898
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3899
+  (0.0ms) rollback transaction
3900
+  (0.0ms) begin transaction
3901
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3902
+ Processing by WelcomeController#index as HTML
3903
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3904
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3905
+  (0.1ms) rollback transaction
3906
+  (0.0ms) begin transaction
3907
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3908
+ Processing by WelcomeController#index as HTML
3909
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3910
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3911
+  (0.0ms) rollback transaction
3912
+  (0.0ms) begin transaction
3913
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3914
+ Processing by WelcomeController#index as HTML
3915
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
3916
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3917
+  (0.0ms) rollback transaction
3918
+  (0.0ms) begin transaction
3919
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3920
+ Processing by WelcomeController#index as HTML
3921
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3922
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3923
+  (0.1ms) rollback transaction
3924
+  (0.0ms) begin transaction
3925
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3926
+ Processing by WelcomeController#index as HTML
3927
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3928
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
3929
+  (0.1ms) rollback transaction
3930
+  (0.1ms) begin transaction
3931
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:08:17 +0400
3932
+ Processing by WelcomeController#index as HTML
3933
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3934
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3935
+  (0.1ms) rollback transaction
3936
+ Connecting to database specified by database.yml
3937
+  (0.3ms) begin transaction
3938
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3939
+ Processing by WelcomeController#index as HTML
3940
+ Rendered welcome/index.html.haml within layouts/application (4.7ms)
3941
+ Completed 200 OK in 14.2ms (Views: 13.9ms | ActiveRecord: 0.0ms)
3942
+  (0.0ms) rollback transaction
3943
+  (0.0ms) begin transaction
3944
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3945
+ Processing by WelcomeController#index as HTML
3946
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3947
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3948
+  (0.0ms) rollback transaction
3949
+  (0.0ms) begin transaction
3950
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3951
+ Processing by WelcomeController#index as HTML
3952
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3953
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
3954
+  (0.0ms) rollback transaction
3955
+  (0.0ms) begin transaction
3956
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3957
+ Processing by WelcomeController#index as HTML
3958
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3959
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3960
+  (0.0ms) rollback transaction
3961
+  (0.0ms) begin transaction
3962
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3963
+ Processing by WelcomeController#index as HTML
3964
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3965
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3966
+  (0.0ms) rollback transaction
3967
+  (0.0ms) begin transaction
3968
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3969
+ Processing by WelcomeController#index as HTML
3970
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3971
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3972
+  (0.1ms) rollback transaction
3973
+  (0.0ms) begin transaction
3974
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3975
+ Processing by WelcomeController#index as HTML
3976
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3977
+ Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3978
+  (0.0ms) rollback transaction
3979
+  (0.0ms) begin transaction
3980
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3981
+ Processing by WelcomeController#index as HTML
3982
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
3983
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3984
+  (0.0ms) rollback transaction
3985
+  (0.0ms) begin transaction
3986
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3987
+ Processing by WelcomeController#index as HTML
3988
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3989
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
3990
+  (0.0ms) rollback transaction
3991
+  (0.0ms) begin transaction
3992
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3993
+ Processing by WelcomeController#index as HTML
3994
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
3995
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
3996
+  (0.0ms) rollback transaction
3997
+  (0.0ms) begin transaction
3998
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
3999
+ Processing by WelcomeController#index as HTML
4000
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4001
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
4002
+  (0.1ms) rollback transaction
4003
+  (0.0ms) begin transaction
4004
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
4005
+ Processing by WelcomeController#index as HTML
4006
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4007
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
4008
+  (0.1ms) rollback transaction
4009
+  (0.0ms) begin transaction
4010
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
4011
+ Processing by WelcomeController#index as HTML
4012
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4013
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4014
+  (0.0ms) rollback transaction
4015
+  (0.0ms) begin transaction
4016
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
4017
+ Processing by WelcomeController#index as HTML
4018
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4019
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4020
+  (0.1ms) rollback transaction
4021
+  (0.0ms) begin transaction
4022
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
4023
+ Processing by WelcomeController#index as HTML
4024
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4025
+ Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4026
+  (0.1ms) rollback transaction
4027
+  (0.0ms) begin transaction
4028
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
4029
+ Processing by WelcomeController#index as HTML
4030
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4031
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4032
+  (0.1ms) rollback transaction
4033
+  (0.0ms) begin transaction
4034
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
4035
+ Processing by WelcomeController#index as HTML
4036
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4037
+ Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
4038
+  (0.0ms) rollback transaction
4039
+  (0.0ms) begin transaction
4040
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:20:17 +0400
4041
+ Processing by WelcomeController#index as HTML
4042
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4043
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4044
+  (0.1ms) rollback transaction
4045
+ Connecting to database specified by database.yml
4046
+  (0.2ms) begin transaction
4047
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4048
+ Processing by WelcomeController#index as HTML
4049
+ Rendered welcome/index.html.haml within layouts/application (6.1ms)
4050
+ Completed 200 OK in 15.2ms (Views: 14.9ms | ActiveRecord: 0.0ms)
4051
+  (0.1ms) rollback transaction
4052
+  (0.0ms) begin transaction
4053
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4054
+ Processing by WelcomeController#index as HTML
4055
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4056
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4057
+  (0.0ms) rollback transaction
4058
+  (0.0ms) begin transaction
4059
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4060
+ Processing by WelcomeController#index as HTML
4061
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4062
+ Completed 200 OK in 1.6ms (Views: 1.4ms | ActiveRecord: 0.0ms)
4063
+  (0.0ms) rollback transaction
4064
+  (0.0ms) begin transaction
4065
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4066
+ Processing by WelcomeController#index as HTML
4067
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4068
+ Completed 200 OK in 1.8ms (Views: 1.6ms | ActiveRecord: 0.0ms)
4069
+  (0.1ms) rollback transaction
4070
+  (0.0ms) begin transaction
4071
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4072
+ Processing by WelcomeController#index as HTML
4073
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4074
+ Completed 200 OK in 1.9ms (Views: 1.8ms | ActiveRecord: 0.0ms)
4075
+  (0.1ms) rollback transaction
4076
+  (0.0ms) begin transaction
4077
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4078
+ Processing by WelcomeController#index as HTML
4079
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4080
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4081
+  (0.1ms) rollback transaction
4082
+  (0.0ms) begin transaction
4083
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4084
+ Processing by WelcomeController#index as HTML
4085
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4086
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
4087
+  (0.0ms) rollback transaction
4088
+  (0.0ms) begin transaction
4089
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4090
+ Processing by WelcomeController#index as HTML
4091
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4092
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4093
+  (0.1ms) rollback transaction
4094
+  (0.1ms) begin transaction
4095
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4096
+ Processing by WelcomeController#index as HTML
4097
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4098
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
4099
+  (0.1ms) rollback transaction
4100
+  (0.1ms) begin transaction
4101
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4102
+ Processing by WelcomeController#index as HTML
4103
+ Rendered welcome/index.html.haml within layouts/application (0.5ms)
4104
+ Completed 200 OK in 1.7ms (Views: 1.6ms | ActiveRecord: 0.0ms)
4105
+  (0.0ms) rollback transaction
4106
+  (0.0ms) begin transaction
4107
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4108
+ Processing by WelcomeController#index as HTML
4109
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4110
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
4111
+  (0.0ms) rollback transaction
4112
+  (0.0ms) begin transaction
4113
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4114
+ Processing by WelcomeController#index as HTML
4115
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4116
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4117
+  (0.0ms) rollback transaction
4118
+  (0.0ms) begin transaction
4119
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4120
+ Processing by WelcomeController#index as HTML
4121
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4122
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4123
+  (0.1ms) rollback transaction
4124
+  (0.0ms) begin transaction
4125
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4126
+ Processing by WelcomeController#index as HTML
4127
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4128
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4129
+  (0.1ms) rollback transaction
4130
+  (0.0ms) begin transaction
4131
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4132
+ Processing by WelcomeController#index as HTML
4133
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4134
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4135
+  (0.1ms) rollback transaction
4136
+  (0.0ms) begin transaction
4137
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4138
+ Processing by WelcomeController#index as HTML
4139
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4140
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
4141
+  (0.0ms) rollback transaction
4142
+  (0.0ms) begin transaction
4143
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4144
+ Processing by WelcomeController#index as HTML
4145
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4146
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4147
+  (0.1ms) rollback transaction
4148
+  (0.0ms) begin transaction
4149
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:21:31 +0400
4150
+ Processing by WelcomeController#index as HTML
4151
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4152
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
4153
+  (0.1ms) rollback transaction
4154
+ Connecting to database specified by database.yml
4155
+  (0.2ms) begin transaction
4156
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4157
+ Processing by WelcomeController#index as HTML
4158
+ Rendered welcome/index.html.haml within layouts/application (4.8ms)
4159
+ Completed 200 OK in 13.5ms (Views: 13.3ms | ActiveRecord: 0.0ms)
4160
+  (0.0ms) rollback transaction
4161
+  (0.0ms) begin transaction
4162
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4163
+ Processing by WelcomeController#index as HTML
4164
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4165
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4166
+  (0.0ms) rollback transaction
4167
+  (0.0ms) begin transaction
4168
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4169
+ Processing by WelcomeController#index as HTML
4170
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4171
+ Completed 200 OK in 1.4ms (Views: 1.3ms | ActiveRecord: 0.0ms)
4172
+  (0.0ms) rollback transaction
4173
+  (0.0ms) begin transaction
4174
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4175
+ Processing by WelcomeController#index as HTML
4176
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4177
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4178
+  (0.0ms) rollback transaction
4179
+  (0.0ms) begin transaction
4180
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4181
+ Processing by WelcomeController#index as HTML
4182
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
4183
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4184
+  (0.0ms) rollback transaction
4185
+  (0.0ms) begin transaction
4186
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4187
+ Processing by WelcomeController#index as HTML
4188
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4189
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4190
+  (0.1ms) rollback transaction
4191
+  (0.0ms) begin transaction
4192
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4193
+ Processing by WelcomeController#index as HTML
4194
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4195
+ Completed 200 OK in 1.7ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4196
+  (0.0ms) rollback transaction
4197
+  (0.0ms) begin transaction
4198
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4199
+ Processing by WelcomeController#index as HTML
4200
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4201
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4202
+  (0.0ms) rollback transaction
4203
+  (0.0ms) begin transaction
4204
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4205
+ Processing by WelcomeController#index as HTML
4206
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4207
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4208
+  (0.0ms) rollback transaction
4209
+  (0.0ms) begin transaction
4210
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4211
+ Processing by WelcomeController#index as HTML
4212
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4213
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4214
+  (0.0ms) rollback transaction
4215
+  (0.0ms) begin transaction
4216
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4217
+ Processing by WelcomeController#index as HTML
4218
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4219
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4220
+  (0.1ms) rollback transaction
4221
+  (0.0ms) begin transaction
4222
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4223
+ Processing by WelcomeController#index as HTML
4224
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4225
+ Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4226
+  (0.0ms) rollback transaction
4227
+  (0.0ms) begin transaction
4228
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4229
+ Processing by WelcomeController#index as HTML
4230
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4231
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4232
+  (0.0ms) rollback transaction
4233
+  (0.0ms) begin transaction
4234
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4235
+ Processing by WelcomeController#index as HTML
4236
+ Rendered welcome/index.html.haml within layouts/application (0.3ms)
4237
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4238
+  (0.0ms) rollback transaction
4239
+  (0.0ms) begin transaction
4240
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4241
+ Processing by WelcomeController#index as HTML
4242
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4243
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
4244
+  (0.1ms) rollback transaction
4245
+  (0.0ms) begin transaction
4246
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4247
+ Processing by WelcomeController#index as HTML
4248
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4249
+ Completed 200 OK in 1.5ms (Views: 1.4ms | ActiveRecord: 0.0ms)
4250
+  (0.0ms) rollback transaction
4251
+  (0.0ms) begin transaction
4252
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4253
+ Processing by WelcomeController#index as HTML
4254
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4255
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4256
+  (0.0ms) rollback transaction
4257
+  (0.0ms) begin transaction
4258
+ Started GET "/" for 127.0.0.1 at 2014-03-19 19:36:56 +0400
4259
+ Processing by WelcomeController#index as HTML
4260
+ Rendered welcome/index.html.haml within layouts/application (0.4ms)
4261
+ Completed 200 OK in 1.3ms (Views: 1.2ms | ActiveRecord: 0.0ms)
4262
+  (0.0ms) rollback transaction