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.
- data/lib/role_block_haml/engine.rb +77 -59
- data/lib/role_block_haml/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +23 -0
- data/spec/dummy/log/test.log +4262 -0
- metadata +37 -17
- checksums.yaml +0 -15
@@ -1,72 +1,90 @@
|
|
1
1
|
module RoleBlockHaml
|
2
|
-
|
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
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
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
|
-
|
41
|
-
|
42
|
-
|
43
|
-
if
|
44
|
-
|
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
|
-
|
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
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
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
|
-
|
60
|
-
@value
|
61
|
-
end
|
62
|
-
end
|
47
|
+
end
|
63
48
|
|
64
|
-
|
65
|
-
self.send(:parse_tag_without_feature, FakeLine.new(line.scan(/%([-:\w]+)([-:\w\.\#\@]*)(.*)/)))
|
66
|
-
end
|
49
|
+
module InstanceMethods
|
67
50
|
|
68
|
-
|
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
|
Binary file
|
@@ -0,0 +1,23 @@
|
|
1
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2
|
+
[1m[35m (1.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
3
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
5
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
8
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
9
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
10
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
11
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
12
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
13
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
14
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
15
|
+
[1m[35m (1.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
16
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
17
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
18
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
19
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
20
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
21
|
+
[1m[35m (1.5ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
22
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
23
|
+
[1m[35m (1.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
@@ -0,0 +1,4262 @@
|
|
1
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
4
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
6
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
8
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 13:55:47 +0400
|
9
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
10
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
11
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:04 +0400
|
12
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
14
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:07 +0400
|
15
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
17
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:52 +0400
|
18
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
20
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 13:56:59 +0400
|
21
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
22
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
23
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 13:58:45 +0400
|
24
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
25
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
30
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
35
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
40
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
45
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
50
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
55
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
60
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
65
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
70
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
75
|
+
Connecting to database specified by database.yml
|
76
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
77
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 15:57:56 +0400
|
78
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
79
|
+
Connecting to database specified by database.yml
|
80
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
81
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 15:58:03 +0400
|
82
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
83
|
+
Connecting to database specified by database.yml
|
84
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
85
|
+
Started GET "/" for 127.0.0.1 at 2014-03-07 15:59:10 +0400
|
86
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
87
|
+
Connecting to database specified by database.yml
|
88
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
93
|
+
Connecting to database specified by database.yml
|
94
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
99
|
+
Connecting to database specified by database.yml
|
100
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
105
|
+
Connecting to database specified by database.yml
|
106
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
112
|
+
Connecting to database specified by database.yml
|
113
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
118
|
+
Connecting to database specified by database.yml
|
119
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
125
|
+
Connecting to database specified by database.yml
|
126
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
132
|
+
Connecting to database specified by database.yml
|
133
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
139
|
+
Connecting to database specified by database.yml
|
140
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
146
|
+
Connecting to database specified by database.yml
|
147
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
153
|
+
Connecting to database specified by database.yml
|
154
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
160
|
+
Connecting to database specified by database.yml
|
161
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
167
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
173
|
+
Connecting to database specified by database.yml
|
174
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
186
|
+
Connecting to database specified by database.yml
|
187
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
188
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
189
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
195
|
+
Connecting to database specified by database.yml
|
196
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
197
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
199
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
200
|
+
Connecting to database specified by database.yml
|
201
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
207
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
208
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
209
|
+
Connecting to database specified by database.yml
|
210
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
216
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
222
|
+
Connecting to database specified by database.yml
|
223
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
229
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
235
|
+
Connecting to database specified by database.yml
|
236
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
242
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
248
|
+
Connecting to database specified by database.yml
|
249
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
255
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
261
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
262
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
263
|
+
Connecting to database specified by database.yml
|
264
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
276
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
277
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
278
|
+
Connecting to database specified by database.yml
|
279
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
285
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
291
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
292
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
293
|
+
Connecting to database specified by database.yml
|
294
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
300
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
306
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
307
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
308
|
+
Connecting to database specified by database.yml
|
309
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
315
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
321
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
322
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
323
|
+
Connecting to database specified by database.yml
|
324
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
325
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
332
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
338
|
+
Connecting to database specified by database.yml
|
339
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
351
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
352
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
353
|
+
Connecting to database specified by database.yml
|
354
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
366
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
367
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
368
|
+
Connecting to database specified by database.yml
|
369
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
375
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
381
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
382
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
383
|
+
Connecting to database specified by database.yml
|
384
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
390
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
396
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
397
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
398
|
+
Connecting to database specified by database.yml
|
399
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
405
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
412
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
413
|
+
Connecting to database specified by database.yml
|
414
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
426
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
427
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
428
|
+
Connecting to database specified by database.yml
|
429
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
441
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
448
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
449
|
+
Connecting to database specified by database.yml
|
450
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
451
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
452
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
458
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
464
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
470
|
+
Connecting to database specified by database.yml
|
471
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
477
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
483
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
489
|
+
Connecting to database specified by database.yml
|
490
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
496
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
502
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
508
|
+
Connecting to database specified by database.yml
|
509
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
515
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
521
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
527
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
533
|
+
Connecting to database specified by database.yml
|
534
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
540
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
546
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
552
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
558
|
+
Connecting to database specified by database.yml
|
559
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
565
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
571
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
577
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
583
|
+
Connecting to database specified by database.yml
|
584
|
+
Connecting to database specified by database.yml
|
585
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
591
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
597
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
603
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
609
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
615
|
+
Connecting to database specified by database.yml
|
616
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
622
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
634
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
640
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
646
|
+
Connecting to database specified by database.yml
|
647
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
653
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
659
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
665
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
671
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
677
|
+
Connecting to database specified by database.yml
|
678
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
684
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
690
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
696
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
702
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
708
|
+
Connecting to database specified by database.yml
|
709
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
715
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
721
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
727
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
733
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
739
|
+
Connecting to database specified by database.yml
|
740
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
746
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
752
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
758
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
764
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
770
|
+
Connecting to database specified by database.yml
|
771
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
777
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
783
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
789
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
795
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
801
|
+
Connecting to database specified by database.yml
|
802
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
808
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
820
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
826
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
832
|
+
Connecting to database specified by database.yml
|
833
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
839
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
845
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
851
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
857
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
863
|
+
Connecting to database specified by database.yml
|
864
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
870
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
876
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
882
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
888
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
894
|
+
Connecting to database specified by database.yml
|
895
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
901
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
907
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
913
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
919
|
+
Connecting to database specified by database.yml
|
920
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
926
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
932
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
938
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
944
|
+
Connecting to database specified by database.yml
|
945
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
951
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
957
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
963
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
969
|
+
Connecting to database specified by database.yml
|
970
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
976
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
982
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
988
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
994
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1000
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1006
|
+
Connecting to database specified by database.yml
|
1007
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1013
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1025
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1031
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1037
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1043
|
+
Connecting to database specified by database.yml
|
1044
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1050
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1056
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1062
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1068
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1074
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1086
|
+
Connecting to database specified by database.yml
|
1087
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1093
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1099
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1105
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1111
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1117
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1147
|
+
Connecting to database specified by database.yml
|
1148
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1154
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1160
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1166
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1172
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1178
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1184
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1190
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1196
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1214
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1220
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1232
|
+
Connecting to database specified by database.yml
|
1233
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1245
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1251
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1263
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1269
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1275
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1281
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1287
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1293
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1299
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1311
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1317
|
+
Connecting to database specified by database.yml
|
1318
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1324
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1330
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1336
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1342
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1348
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1354
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1366
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1372
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1378
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1384
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1390
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1396
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1408
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1414
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1420
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1426
|
+
Connecting to database specified by database.yml
|
1427
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1439
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1445
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1451
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1457
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1463
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1469
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1475
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1481
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1487
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1493
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1499
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1505
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1511
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1517
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1523
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1529
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1535
|
+
Connecting to database specified by database.yml
|
1536
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1542
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1548
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1554
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1560
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1566
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1572
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1578
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1584
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1590
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1596
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1602
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1608
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1620
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1626
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1632
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1638
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1644
|
+
Connecting to database specified by database.yml
|
1645
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1651
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1657
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1663
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1669
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1675
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1681
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1687
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1693
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1699
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1711
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1717
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1723
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1729
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1735
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1741
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1747
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1753
|
+
Connecting to database specified by database.yml
|
1754
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1760
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1766
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1772
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1778
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1790
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1796
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1802
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1808
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1814
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1820
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (2.1ms)[0m rollback transaction
|
1826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1832
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1838
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1844
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1850
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1856
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1862
|
+
Connecting to database specified by database.yml
|
1863
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1869
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1875
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1881
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1887
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1899
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1905
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1911
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1917
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1923
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1929
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1935
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1941
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1947
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1953
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1959
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1965
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1971
|
+
Connecting to database specified by database.yml
|
1972
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1978
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1984
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1990
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1996
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2002
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2008
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2014
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2020
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2026
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2032
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2038
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2044
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2050
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2056
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2062
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2068
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2074
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2080
|
+
Connecting to database specified by database.yml
|
2081
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2087
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2093
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2099
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2105
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2111
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2117
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2123
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2129
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2147
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2153
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2159
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2165
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2171
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2177
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2183
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2189
|
+
Connecting to database specified by database.yml
|
2190
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2196
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2202
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2208
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2214
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2220
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2226
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2232
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2238
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2244
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2250
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2256
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2268
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2274
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2280
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2286
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2292
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2298
|
+
Connecting to database specified by database.yml
|
2299
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2300
|
+
[1m[35m (1.0ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
2301
|
+
Connecting to database specified by database.yml
|
2302
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2314
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2320
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2326
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2332
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2338
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2344
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2350
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2356
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2362
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2368
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2374
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2380
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2386
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2392
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2398
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2404
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2410
|
+
Connecting to database specified by database.yml
|
2411
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2417
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2423
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2429
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2435
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2441
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2447
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2453
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2459
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2465
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2471
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2477
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2483
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2489
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2495
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2501
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2507
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2513
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2519
|
+
Connecting to database specified by database.yml
|
2520
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2532
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2538
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2544
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2550
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2556
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2568
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2574
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2580
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2586
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2592
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2598
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2604
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2610
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2616
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2622
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2628
|
+
Connecting to database specified by database.yml
|
2629
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2635
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2641
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2647
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2653
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2659
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2665
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2671
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2677
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2683
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2689
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2695
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2701
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2707
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2713
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2719
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2725
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2731
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2737
|
+
Connecting to database specified by database.yml
|
2738
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2744
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2750
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2756
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2762
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2768
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2774
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2780
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2786
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2792
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2798
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2804
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2810
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2822
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2828
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2834
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2840
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2846
|
+
Connecting to database specified by database.yml
|
2847
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2853
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2865
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2871
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2877
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2883
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2889
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2895
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2901
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2907
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2913
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2919
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2925
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2931
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2937
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2943
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2949
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2955
|
+
Connecting to database specified by database.yml
|
2956
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2962
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2968
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2974
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2980
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2986
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2992
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2998
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3004
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3010
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3016
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3022
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3028
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3034
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3040
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3046
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3052
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3058
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3064
|
+
Connecting to database specified by database.yml
|
3065
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3071
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3077
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3083
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3089
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3095
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3101
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3107
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3113
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3119
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3125
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3131
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3137
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3149
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3155
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3173
|
+
Connecting to database specified by database.yml
|
3174
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3180
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3186
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3192
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3198
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3204
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3210
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3216
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3222
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3228
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3240
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3246
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3252
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3258
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3264
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3270
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3276
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3282
|
+
Connecting to database specified by database.yml
|
3283
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3289
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3295
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3307
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3319
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3325
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3331
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3337
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3343
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3349
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3355
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3367
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3373
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3379
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3391
|
+
Connecting to database specified by database.yml
|
3392
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3398
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3410
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3416
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3422
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3428
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3434
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3440
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3446
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3452
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3458
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3464
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3476
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3482
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3488
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3500
|
+
Connecting to database specified by database.yml
|
3501
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3507
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3513
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3519
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3525
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3531
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3537
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3543
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3549
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3555
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3561
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3567
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3573
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3579
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3585
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3591
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3597
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3603
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3609
|
+
Connecting to database specified by database.yml
|
3610
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3616
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3622
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3634
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3640
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3646
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3652
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3658
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3664
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3676
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3688
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3694
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3700
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3712
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3718
|
+
Connecting to database specified by database.yml
|
3719
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3725
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3731
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3737
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3743
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3749
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3755
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3761
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3767
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3773
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3779
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3785
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3791
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3797
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3803
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3809
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3815
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3821
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3827
|
+
Connecting to database specified by database.yml
|
3828
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3834
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3840
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3846
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3852
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3858
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3864
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3870
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3876
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3882
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3888
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3894
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3900
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3906
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3912
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3918
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3924
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3930
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3936
|
+
Connecting to database specified by database.yml
|
3937
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3943
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3949
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3955
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3961
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3967
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3973
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3979
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3985
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3991
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3997
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4003
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4009
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4015
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4021
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4027
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4033
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4039
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4045
|
+
Connecting to database specified by database.yml
|
4046
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4052
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4058
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4064
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4070
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4076
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4082
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4088
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4094
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4100
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4106
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4112
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4118
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4124
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4130
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4136
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4142
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4148
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4154
|
+
Connecting to database specified by database.yml
|
4155
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4167
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4173
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4179
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4185
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4191
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4197
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4203
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4209
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4215
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4221
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4227
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4233
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4239
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4245
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
4257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.0ms)[0m rollback transaction
|