left_side 0.0.3 → 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +30 -5
- data/Rakefile +5 -0
- data/left_side.gemspec +9 -0
- data/lib/assets/stylesheets/left-side.css.scss +55 -0
- data/lib/left_side/base.rb +3 -3
- data/lib/left_side/cells/left_side/base.html.erb +1 -1
- data/lib/left_side/cells/left_side_cell.rb +3 -2
- data/lib/left_side/rails.rb +2 -2
- data/lib/left_side/section.yml +3 -5
- data/lib/left_side/version.rb +1 -1
- data/spec/dummy/.sass-cache/77b12a84de3c9aab14bc1e241ef001cd6fe973e0/left-side.css.scssc +0 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/images/rails.png +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +12 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/tasks_controller.rb +7 -0
- data/spec/dummy/app/controllers/todos_controller.rb +7 -0
- data/spec/dummy/app/models/.gitkeep +0 -0
- data/spec/dummy/app/models/task.rb +3 -0
- data/spec/dummy/app/models/todo.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +18 -0
- data/spec/dummy/app/views/tasks/index.html.erb +0 -0
- data/spec/dummy/app/views/tasks/new.html.erb +0 -0
- data/spec/dummy/app/views/todos/index.html.erb +0 -0
- data/spec/dummy/app/views/todos/new.html.erb +0 -0
- data/spec/dummy/config/application.rb +62 -0
- data/spec/dummy/config/boot.rb +8 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/left_side/section.yml +6 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +5 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20130129091246_create_todos.rb +8 -0
- data/spec/dummy/db/migrate/20130204072342_create_tasks.rb +8 -0
- data/spec/dummy/db/schema.rb +21 -0
- data/spec/dummy/db/seeds.rb +7 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/.gitkeep +0 -0
- data/spec/dummy/log/development.log +2269 -0
- data/spec/dummy/log/test.log +640 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/robots.txt +5 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/left_side/feature/left_side_spec.rb +47 -0
- data/spec/spec_helper.rb +14 -0
- metadata +217 -4
- data/lib/assets/stylesheets/left-side.scss +0 -8
@@ -0,0 +1,640 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
Connecting to database specified by database.yml
|
6
|
+
Connecting to database specified by database.yml
|
7
|
+
Connecting to database specified by database.yml
|
8
|
+
Connecting to database specified by database.yml
|
9
|
+
Connecting to database specified by database.yml
|
10
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 14:51:06 +0800
|
11
|
+
Processing by TodosController#index as HTML
|
12
|
+
Completed 500 Internal Server Error in 1ms
|
13
|
+
Connecting to database specified by database.yml
|
14
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 14:53:56 +0800
|
15
|
+
Processing by TodosController#index as HTML
|
16
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
17
|
+
Rendered todos/index.html.erb within layouts/application (23.0ms)
|
18
|
+
Completed 500 Internal Server Error in 29ms
|
19
|
+
Connecting to database specified by database.yml
|
20
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 14:55:24 +0800
|
21
|
+
Processing by TodosController#index as HTML
|
22
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
23
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (3.6ms)
|
24
|
+
Rendered todos/index.html.erb within layouts/application (45.6ms)
|
25
|
+
Completed 200 OK in 52ms (Views: 50.0ms | ActiveRecord: 0.9ms)
|
26
|
+
Connecting to database specified by database.yml
|
27
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 14:55:48 +0800
|
28
|
+
Processing by TodosController#index as HTML
|
29
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
30
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
31
|
+
Rendered todos/index.html.erb within layouts/application (6.9ms)
|
32
|
+
Completed 200 OK in 14ms (Views: 11.4ms | ActiveRecord: 0.9ms)
|
33
|
+
Connecting to database specified by database.yml
|
34
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 14:56:54 +0800
|
35
|
+
Processing by TodosController#index as HTML
|
36
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
37
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
38
|
+
Rendered todos/index.html.erb within layouts/application (6.8ms)
|
39
|
+
Completed 200 OK in 14ms (Views: 11.2ms | ActiveRecord: 0.9ms)
|
40
|
+
Connecting to database specified by database.yml
|
41
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:02:56 +0800
|
42
|
+
Processing by TodosController#index as HTML
|
43
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
44
|
+
Rendered todos/index.html.erb within layouts/application (2.6ms)
|
45
|
+
Completed 500 Internal Server Error in 8ms
|
46
|
+
Connecting to database specified by database.yml
|
47
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:03:23 +0800
|
48
|
+
Processing by TodosController#index as HTML
|
49
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
50
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
51
|
+
Rendered todos/index.html.erb within layouts/application (7.2ms)
|
52
|
+
Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.9ms)
|
53
|
+
Connecting to database specified by database.yml
|
54
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:04:11 +0800
|
55
|
+
Processing by TodosController#index as HTML
|
56
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
57
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
58
|
+
Rendered todos/index.html.erb within layouts/application (7.3ms)
|
59
|
+
Completed 200 OK in 15ms (Views: 12.1ms | ActiveRecord: 1.0ms)
|
60
|
+
Connecting to database specified by database.yml
|
61
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:04:26 +0800
|
62
|
+
Processing by TodosController#index as HTML
|
63
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
64
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
65
|
+
Rendered todos/index.html.erb within layouts/application (7.4ms)
|
66
|
+
Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 1.0ms)
|
67
|
+
Connecting to database specified by database.yml
|
68
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:04:52 +0800
|
69
|
+
Processing by TodosController#index as HTML
|
70
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
71
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.9ms)
|
72
|
+
Rendered todos/index.html.erb within layouts/application (73187.3ms)
|
73
|
+
Completed 200 OK in 73196ms (Views: 73193.1ms | ActiveRecord: 1.1ms)
|
74
|
+
Connecting to database specified by database.yml
|
75
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:06:51 +0800
|
76
|
+
Processing by TodosController#index as HTML
|
77
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
78
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
79
|
+
Rendered todos/index.html.erb within layouts/application (9.9ms)
|
80
|
+
Completed 200 OK in 19ms (Views: 15.6ms | ActiveRecord: 1.1ms)
|
81
|
+
Connecting to database specified by database.yml
|
82
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:09:38 +0800
|
83
|
+
Processing by TodosController#index as HTML
|
84
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
85
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
86
|
+
Rendered todos/index.html.erb within layouts/application (9.1ms)
|
87
|
+
Completed 200 OK in 18ms (Views: 14.5ms | ActiveRecord: 1.0ms)
|
88
|
+
Connecting to database specified by database.yml
|
89
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:09:48 +0800
|
90
|
+
Processing by TodosController#index as HTML
|
91
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
92
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
93
|
+
Rendered todos/index.html.erb within layouts/application (9.2ms)
|
94
|
+
Completed 200 OK in 18ms (Views: 14.7ms | ActiveRecord: 1.0ms)
|
95
|
+
Connecting to database specified by database.yml
|
96
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:15:22 +0800
|
97
|
+
Processing by TodosController#index as HTML
|
98
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
99
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.7ms)
|
100
|
+
Rendered todos/index.html.erb within layouts/application (9.3ms)
|
101
|
+
Completed 200 OK in 18ms (Views: 14.7ms | ActiveRecord: 1.0ms)
|
102
|
+
Connecting to database specified by database.yml
|
103
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:19:44 +0800
|
104
|
+
Processing by TodosController#index as HTML
|
105
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
106
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
107
|
+
Rendered todos/index.html.erb within layouts/application (9.8ms)
|
108
|
+
Completed 200 OK in 19ms (Views: 15.5ms | ActiveRecord: 1.1ms)
|
109
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:19:44 +0800
|
110
|
+
Processing by TodosController#index as HTML
|
111
|
+
[1m[35mTodo Load (0.2ms)[0m SELECT "todos".* FROM "todos"
|
112
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.9ms)
|
113
|
+
Rendered todos/index.html.erb within layouts/application (7.6ms)
|
114
|
+
Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.2ms)
|
115
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:19:44 +0800
|
116
|
+
Processing by TodosController#index as HTML
|
117
|
+
[1m[36mTodo Load (0.2ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
118
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.6ms)
|
119
|
+
Rendered todos/index.html.erb within layouts/application (7.7ms)
|
120
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.2ms)
|
121
|
+
Connecting to database specified by database.yml
|
122
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:19:48 +0800
|
123
|
+
Processing by TodosController#index as HTML
|
124
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
125
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
126
|
+
Rendered todos/index.html.erb within layouts/application (7.3ms)
|
127
|
+
Completed 200 OK in 14ms (Views: 11.9ms | ActiveRecord: 1.0ms)
|
128
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:19:48 +0800
|
129
|
+
Processing by TodosController#index as HTML
|
130
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
131
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
132
|
+
Rendered todos/index.html.erb within layouts/application (4.9ms)
|
133
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
134
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:19:48 +0800
|
135
|
+
Processing by TodosController#index as HTML
|
136
|
+
[1m[36mTodo Load (0.2ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
137
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
138
|
+
Rendered todos/index.html.erb within layouts/application (4.8ms)
|
139
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.2ms)
|
140
|
+
Connecting to database specified by database.yml
|
141
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:20:15 +0800
|
142
|
+
Processing by TodosController#index as HTML
|
143
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
144
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
145
|
+
Rendered todos/index.html.erb within layouts/application (6.9ms)
|
146
|
+
Completed 200 OK in 14ms (Views: 11.4ms | ActiveRecord: 0.9ms)
|
147
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:20:15 +0800
|
148
|
+
Processing by TodosController#index as HTML
|
149
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
150
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
151
|
+
Rendered todos/index.html.erb within layouts/application (4.8ms)
|
152
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
153
|
+
Connecting to database specified by database.yml
|
154
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:20:24 +0800
|
155
|
+
Processing by TodosController#index as HTML
|
156
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
157
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
158
|
+
Rendered todos/index.html.erb within layouts/application (6.9ms)
|
159
|
+
Completed 200 OK in 14ms (Views: 11.4ms | ActiveRecord: 0.9ms)
|
160
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:20:24 +0800
|
161
|
+
Processing by TodosController#index as HTML
|
162
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
163
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
164
|
+
Rendered todos/index.html.erb within layouts/application (4.7ms)
|
165
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
166
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:20:24 +0800
|
167
|
+
Processing by TodosController#new as HTML
|
168
|
+
Rendered todos/_form.html.erb (32.4ms)
|
169
|
+
Rendered todos/new.html.erb within layouts/application (75.3ms)
|
170
|
+
Completed 200 OK in 79ms (Views: 76.6ms | ActiveRecord: 0.0ms)
|
171
|
+
Connecting to database specified by database.yml
|
172
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:21:16 +0800
|
173
|
+
Processing by TodosController#index as HTML
|
174
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
175
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
176
|
+
Rendered todos/index.html.erb within layouts/application (7.2ms)
|
177
|
+
Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.9ms)
|
178
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:21:16 +0800
|
179
|
+
Processing by TodosController#index as HTML
|
180
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
181
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
182
|
+
Rendered todos/index.html.erb within layouts/application (5.0ms)
|
183
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
184
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:21:16 +0800
|
185
|
+
Processing by TodosController#new as HTML
|
186
|
+
Rendered todos/_form.html.erb (4.8ms)
|
187
|
+
Rendered todos/new.html.erb within layouts/application (6.9ms)
|
188
|
+
Completed 200 OK in 11ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
189
|
+
Connecting to database specified by database.yml
|
190
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:21:56 +0800
|
191
|
+
Processing by TodosController#index as HTML
|
192
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
193
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
194
|
+
Rendered todos/index.html.erb within layouts/application (7.2ms)
|
195
|
+
Completed 200 OK in 15ms (Views: 11.9ms | ActiveRecord: 1.0ms)
|
196
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:21:56 +0800
|
197
|
+
Processing by TodosController#index as HTML
|
198
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
199
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
200
|
+
Rendered todos/index.html.erb within layouts/application (4.9ms)
|
201
|
+
Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
202
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:21:56 +0800
|
203
|
+
Processing by TodosController#new as HTML
|
204
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
205
|
+
Rendered todos/_form.html.erb (5.0ms)
|
206
|
+
Rendered todos/new.html.erb within layouts/application (11.8ms)
|
207
|
+
Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
208
|
+
Connecting to database specified by database.yml
|
209
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:32:22 +0800
|
210
|
+
Processing by TodosController#index as HTML
|
211
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
212
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
213
|
+
Rendered todos/index.html.erb within layouts/application (7.9ms)
|
214
|
+
Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.9ms)
|
215
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:32:22 +0800
|
216
|
+
Processing by TodosController#index as HTML
|
217
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
218
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
219
|
+
Rendered todos/index.html.erb within layouts/application (5.7ms)
|
220
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
221
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:32:22 +0800
|
222
|
+
Processing by TodosController#index as HTML
|
223
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
224
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
225
|
+
Rendered todos/index.html.erb within layouts/application (5.5ms)
|
226
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.1ms)
|
227
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:32:22 +0800
|
228
|
+
Processing by TodosController#new as HTML
|
229
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
230
|
+
Rendered todos/_form.html.erb (5.1ms)
|
231
|
+
Rendered todos/new.html.erb within layouts/application (14.3ms)
|
232
|
+
Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.0ms)
|
233
|
+
Connecting to database specified by database.yml
|
234
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:34:10 +0800
|
235
|
+
Processing by TodosController#index as HTML
|
236
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
237
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
238
|
+
Rendered todos/index.html.erb within layouts/application (7.9ms)
|
239
|
+
Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.9ms)
|
240
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:34:10 +0800
|
241
|
+
Processing by TodosController#index as HTML
|
242
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
243
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
244
|
+
Rendered todos/index.html.erb within layouts/application (5.4ms)
|
245
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.1ms)
|
246
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:34:10 +0800
|
247
|
+
Processing by TodosController#index as HTML
|
248
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
249
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
250
|
+
Rendered todos/index.html.erb within layouts/application (5.2ms)
|
251
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.1ms)
|
252
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:34:10 +0800
|
253
|
+
Processing by TodosController#new as HTML
|
254
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
255
|
+
Rendered todos/_form.html.erb (6.4ms)
|
256
|
+
Rendered todos/new.html.erb within layouts/application (16.3ms)
|
257
|
+
Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.0ms)
|
258
|
+
Connecting to database specified by database.yml
|
259
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:36:25 +0800
|
260
|
+
Processing by TodosController#index as HTML
|
261
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
262
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
263
|
+
Rendered todos/index.html.erb within layouts/application (7.8ms)
|
264
|
+
Completed 200 OK in 15ms (Views: 12.4ms | ActiveRecord: 1.0ms)
|
265
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:36:25 +0800
|
266
|
+
Processing by TodosController#index as HTML
|
267
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
268
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
269
|
+
Rendered todos/index.html.erb within layouts/application (6.5ms)
|
270
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.1ms)
|
271
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:36:25 +0800
|
272
|
+
Processing by TodosController#index as HTML
|
273
|
+
[1m[36mTodo Load (0.2ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
274
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
275
|
+
Rendered todos/index.html.erb within layouts/application (5.9ms)
|
276
|
+
Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.2ms)
|
277
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:36:25 +0800
|
278
|
+
Processing by TodosController#new as HTML
|
279
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
280
|
+
Rendered todos/_form.html.erb (6.5ms)
|
281
|
+
Rendered todos/new.html.erb within layouts/application (17.9ms)
|
282
|
+
Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 0.0ms)
|
283
|
+
Connecting to database specified by database.yml
|
284
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:36:48 +0800
|
285
|
+
Processing by TodosController#index as HTML
|
286
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
287
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
288
|
+
Rendered todos/index.html.erb within layouts/application (107774.9ms)
|
289
|
+
Completed 200 OK in 107783ms (Views: 107780.2ms | ActiveRecord: 1.0ms)
|
290
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:36 +0800
|
291
|
+
Processing by TodosController#index as HTML
|
292
|
+
[1m[35mTodo Load (0.2ms)[0m SELECT "todos".* FROM "todos"
|
293
|
+
Rendered todos/index.html.erb within layouts/application (1066.1ms)
|
294
|
+
Completed 500 Internal Server Error in 1068ms
|
295
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:37 +0800
|
296
|
+
Processing by TodosController#index as HTML
|
297
|
+
[1m[36mTodo Load (0.2ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
298
|
+
Rendered todos/index.html.erb within layouts/application (695.4ms)
|
299
|
+
Completed 500 Internal Server Error in 697ms
|
300
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:38:38 +0800
|
301
|
+
Processing by TodosController#new as HTML
|
302
|
+
Rendered todos/new.html.erb within layouts/application (669.1ms)
|
303
|
+
Completed 500 Internal Server Error in 673ms
|
304
|
+
Connecting to database specified by database.yml
|
305
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:42 +0800
|
306
|
+
Processing by TodosController#index as HTML
|
307
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
308
|
+
Rendered todos/index.html.erb within layouts/application (5.7ms)
|
309
|
+
Completed 500 Internal Server Error in 12ms
|
310
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:42 +0800
|
311
|
+
Processing by TodosController#index as HTML
|
312
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
313
|
+
Rendered todos/index.html.erb within layouts/application (3.0ms)
|
314
|
+
Completed 500 Internal Server Error in 4ms
|
315
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:42 +0800
|
316
|
+
Processing by TodosController#index as HTML
|
317
|
+
[1m[36mTodo Load (0.2ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
318
|
+
Rendered todos/index.html.erb within layouts/application (3.0ms)
|
319
|
+
Completed 500 Internal Server Error in 4ms
|
320
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:38:42 +0800
|
321
|
+
Processing by TodosController#new as HTML
|
322
|
+
Rendered todos/new.html.erb within layouts/application (3.1ms)
|
323
|
+
Completed 500 Internal Server Error in 6ms
|
324
|
+
Connecting to database specified by database.yml
|
325
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:53 +0800
|
326
|
+
Processing by TodosController#index as HTML
|
327
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
328
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
329
|
+
Rendered todos/index.html.erb within layouts/application (7.9ms)
|
330
|
+
Completed 200 OK in 15ms (Views: 12.4ms | ActiveRecord: 1.0ms)
|
331
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:53 +0800
|
332
|
+
Processing by TodosController#index as HTML
|
333
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
334
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
335
|
+
Rendered todos/index.html.erb within layouts/application (6.0ms)
|
336
|
+
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.1ms)
|
337
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:38:53 +0800
|
338
|
+
Processing by TodosController#index as HTML
|
339
|
+
[1m[36mTodo Load (0.2ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
340
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
341
|
+
Rendered todos/index.html.erb within layouts/application (6.3ms)
|
342
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.2ms)
|
343
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:38:53 +0800
|
344
|
+
Processing by TodosController#new as HTML
|
345
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.7ms)
|
346
|
+
Rendered todos/_form.html.erb (6.9ms)
|
347
|
+
Rendered todos/new.html.erb within layouts/application (16.7ms)
|
348
|
+
Completed 200 OK in 22ms (Views: 18.2ms | ActiveRecord: 0.0ms)
|
349
|
+
Connecting to database specified by database.yml
|
350
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:39:07 +0800
|
351
|
+
Processing by TodosController#index as HTML
|
352
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
353
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
354
|
+
Rendered todos/index.html.erb within layouts/application (7.7ms)
|
355
|
+
Completed 200 OK in 15ms (Views: 12.1ms | ActiveRecord: 0.9ms)
|
356
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:39:07 +0800
|
357
|
+
Processing by TodosController#index as HTML
|
358
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
359
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.8ms)
|
360
|
+
Rendered todos/index.html.erb within layouts/application (5.3ms)
|
361
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.1ms)
|
362
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:39:07 +0800
|
363
|
+
Processing by TodosController#index as HTML
|
364
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
365
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
366
|
+
Rendered todos/index.html.erb within layouts/application (7.4ms)
|
367
|
+
Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms)
|
368
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:39:07 +0800
|
369
|
+
Processing by TodosController#new as HTML
|
370
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
371
|
+
Rendered todos/_form.html.erb (4.5ms)
|
372
|
+
Rendered todos/new.html.erb within layouts/application (11.7ms)
|
373
|
+
Completed 200 OK in 16ms (Views: 12.8ms | ActiveRecord: 0.0ms)
|
374
|
+
Connecting to database specified by database.yml
|
375
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:39:24 +0800
|
376
|
+
Processing by TodosController#index as HTML
|
377
|
+
[1m[36mTodo Load (0.1ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
378
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
379
|
+
Rendered todos/index.html.erb within layouts/application (7.9ms)
|
380
|
+
Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.9ms)
|
381
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:39:24 +0800
|
382
|
+
Processing by TodosController#index as HTML
|
383
|
+
[1m[35mTodo Load (0.1ms)[0m SELECT "todos".* FROM "todos"
|
384
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.8ms)
|
385
|
+
Rendered todos/index.html.erb within layouts/application (5.3ms)
|
386
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.1ms)
|
387
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:39:24 +0800
|
388
|
+
Processing by TodosController#index as HTML
|
389
|
+
[1m[36mTodo Load (0.2ms)[0m [1mSELECT "todos".* FROM "todos" [0m
|
390
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
391
|
+
Rendered todos/index.html.erb within layouts/application (5.0ms)
|
392
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
393
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:39:24 +0800
|
394
|
+
Processing by TodosController#new as HTML
|
395
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
396
|
+
Rendered todos/_form.html.erb (4.6ms)
|
397
|
+
Rendered todos/new.html.erb within layouts/application (12.7ms)
|
398
|
+
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.0ms)
|
399
|
+
Connecting to database specified by database.yml
|
400
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:44:24 +0800
|
401
|
+
Processing by TodosController#index as HTML
|
402
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.8ms)
|
403
|
+
Rendered todos/index.html.erb within layouts/application (7.0ms)
|
404
|
+
Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
405
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:44:24 +0800
|
406
|
+
Processing by TodosController#index as HTML
|
407
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.8ms)
|
408
|
+
Rendered todos/index.html.erb within layouts/application (4.9ms)
|
409
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
410
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:44:24 +0800
|
411
|
+
Processing by TodosController#index as HTML
|
412
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.8ms)
|
413
|
+
Rendered todos/index.html.erb within layouts/application (5.0ms)
|
414
|
+
Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
415
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:44:24 +0800
|
416
|
+
Processing by TodosController#new as HTML
|
417
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
418
|
+
Rendered todos/new.html.erb within layouts/application (5.1ms)
|
419
|
+
Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
420
|
+
Connecting to database specified by database.yml
|
421
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:55:21 +0800
|
422
|
+
Processing by TodosController#index as HTML
|
423
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
424
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
425
|
+
Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
|
426
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:55:21 +0800
|
427
|
+
Processing by TodosController#index as HTML
|
428
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
429
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
430
|
+
Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
431
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:55:21 +0800
|
432
|
+
Processing by TodosController#index as HTML
|
433
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
434
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
435
|
+
Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
436
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:55:21 +0800
|
437
|
+
Processing by TodosController#new as HTML
|
438
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
439
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
440
|
+
Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
441
|
+
Connecting to database specified by database.yml
|
442
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:57:36 +0800
|
443
|
+
Processing by TodosController#index as HTML
|
444
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
445
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
446
|
+
Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
447
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:57:36 +0800
|
448
|
+
Processing by TodosController#index as HTML
|
449
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
450
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
451
|
+
Completed 200 OK in 27ms (Views: 27.1ms | ActiveRecord: 0.0ms)
|
452
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:57:36 +0800
|
453
|
+
Processing by TodosController#index as HTML
|
454
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
455
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
456
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
457
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:57:36 +0800
|
458
|
+
Processing by TodosController#new as HTML
|
459
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
460
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
461
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
462
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-04 15:57:36 +0800
|
463
|
+
Processing by TasksController#new as HTML
|
464
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
465
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
466
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
467
|
+
Connecting to database specified by database.yml
|
468
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:58:46 +0800
|
469
|
+
Processing by TodosController#index as HTML
|
470
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
471
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
472
|
+
Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
473
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:58:46 +0800
|
474
|
+
Processing by TodosController#index as HTML
|
475
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
476
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
477
|
+
Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
|
478
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 15:58:46 +0800
|
479
|
+
Processing by TodosController#index as HTML
|
480
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
481
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
482
|
+
Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
483
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 15:58:46 +0800
|
484
|
+
Processing by TodosController#new as HTML
|
485
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
486
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
487
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
488
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-04 15:58:46 +0800
|
489
|
+
Processing by TasksController#new as HTML
|
490
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
491
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
492
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
493
|
+
Connecting to database specified by database.yml
|
494
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 16:04:26 +0800
|
495
|
+
Processing by TodosController#index as HTML
|
496
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
497
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
498
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
499
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-04 16:04:26 +0800
|
500
|
+
Processing by TasksController#index as HTML
|
501
|
+
Rendered tasks/index.html.erb within layouts/application (0.3ms)
|
502
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
503
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
504
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 16:04:26 +0800
|
505
|
+
Processing by TodosController#index as HTML
|
506
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
507
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
508
|
+
Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
509
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-04 16:04:27 +0800
|
510
|
+
Processing by TasksController#new as HTML
|
511
|
+
Rendered tasks/new.html.erb within layouts/application (0.4ms)
|
512
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
513
|
+
Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
514
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 16:04:27 +0800
|
515
|
+
Processing by TodosController#index as HTML
|
516
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
517
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
518
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
519
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 16:04:27 +0800
|
520
|
+
Processing by TodosController#new as HTML
|
521
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
522
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
523
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
524
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-04 16:04:27 +0800
|
525
|
+
Processing by TodosController#index as HTML
|
526
|
+
Parameters: {"extract"=>"Hi"}
|
527
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
528
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
529
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
530
|
+
Connecting to database specified by database.yml
|
531
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:43:30 +0800
|
532
|
+
Processing by TodosController#index as HTML
|
533
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
534
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
535
|
+
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
536
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-04 17:43:30 +0800
|
537
|
+
Processing by TasksController#index as HTML
|
538
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
539
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
540
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
541
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:43:30 +0800
|
542
|
+
Processing by TodosController#index as HTML
|
543
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
544
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
545
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
546
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-04 17:43:30 +0800
|
547
|
+
Processing by TasksController#new as HTML
|
548
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
549
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.9ms)
|
550
|
+
Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
551
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:43:30 +0800
|
552
|
+
Processing by TodosController#index as HTML
|
553
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
554
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
555
|
+
Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
556
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 17:43:30 +0800
|
557
|
+
Processing by TodosController#new as HTML
|
558
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
559
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
560
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
561
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-04 17:43:30 +0800
|
562
|
+
Processing by TodosController#index as HTML
|
563
|
+
Parameters: {"extract"=>"Hi"}
|
564
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
565
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
566
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
567
|
+
Connecting to database specified by database.yml
|
568
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:43:58 +0800
|
569
|
+
Processing by TodosController#index as HTML
|
570
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
571
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
572
|
+
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
573
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-04 17:43:58 +0800
|
574
|
+
Processing by TasksController#index as HTML
|
575
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
576
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
577
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
578
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:43:58 +0800
|
579
|
+
Processing by TodosController#index as HTML
|
580
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
581
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
582
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
583
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-04 17:43:58 +0800
|
584
|
+
Processing by TasksController#new as HTML
|
585
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
586
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
587
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
588
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:43:58 +0800
|
589
|
+
Processing by TodosController#index as HTML
|
590
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
591
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
592
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
593
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 17:43:58 +0800
|
594
|
+
Processing by TodosController#new as HTML
|
595
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
596
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
597
|
+
Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
598
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-04 17:43:58 +0800
|
599
|
+
Processing by TodosController#index as HTML
|
600
|
+
Parameters: {"extract"=>"Hi"}
|
601
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
602
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (0.9ms)
|
603
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
604
|
+
Connecting to database specified by database.yml
|
605
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:45:22 +0800
|
606
|
+
Processing by TodosController#index as HTML
|
607
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
608
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
609
|
+
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
610
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-04 17:45:22 +0800
|
611
|
+
Processing by TasksController#index as HTML
|
612
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
613
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
614
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
615
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:45:22 +0800
|
616
|
+
Processing by TodosController#index as HTML
|
617
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
618
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
619
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
620
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-04 17:45:22 +0800
|
621
|
+
Processing by TasksController#new as HTML
|
622
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
623
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
624
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
625
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-04 17:45:22 +0800
|
626
|
+
Processing by TodosController#index as HTML
|
627
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
628
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
629
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
630
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-04 17:45:22 +0800
|
631
|
+
Processing by TodosController#new as HTML
|
632
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
633
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
634
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
635
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-04 17:45:22 +0800
|
636
|
+
Processing by TodosController#index as HTML
|
637
|
+
Parameters: {"extract"=>"Hi"}
|
638
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
639
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
640
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|