clearance_http_auth 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +58 -0
  3. data/Rakefile +29 -0
  4. data/lib/clearance_http_auth/configuration.rb +18 -0
  5. data/lib/clearance_http_auth/current_user_override.rb +20 -0
  6. data/lib/clearance_http_auth/engine.rb +13 -0
  7. data/lib/clearance_http_auth/middleware.rb +39 -0
  8. data/lib/clearance_http_auth/version.rb +5 -0
  9. data/lib/clearance_http_auth.rb +21 -0
  10. data/test/clearance_http_auth_test.rb +17 -0
  11. data/test/dummy/Rakefile +7 -0
  12. data/test/dummy/app/controllers/application_controller.rb +5 -0
  13. data/test/dummy/app/controllers/entrances_controller.rb +29 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/helpers/entrance_helper.rb +2 -0
  16. data/test/dummy/app/models/user.rb +3 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/config/application.rb +47 -0
  19. data/test/dummy/config/boot.rb +10 -0
  20. data/test/dummy/config/database.yml +22 -0
  21. data/test/dummy/config/environment.rb +5 -0
  22. data/test/dummy/config/environments/development.rb +26 -0
  23. data/test/dummy/config/environments/production.rb +49 -0
  24. data/test/dummy/config/environments/test.rb +35 -0
  25. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  26. data/test/dummy/config/initializers/clearance.rb +3 -0
  27. data/test/dummy/config/initializers/inflections.rb +10 -0
  28. data/test/dummy/config/initializers/mime_types.rb +1 -0
  29. data/test/dummy/config/initializers/secret_token.rb +7 -0
  30. data/test/dummy/config/initializers/session_store.rb +8 -0
  31. data/test/dummy/config/locales/en.yml +5 -0
  32. data/test/dummy/config/routes.rb +4 -0
  33. data/test/dummy/config.ru +4 -0
  34. data/test/dummy/db/development.sqlite3 +0 -0
  35. data/test/dummy/db/migrate/20101221153914_clearance_create_users.rb +20 -0
  36. data/test/dummy/db/schema.rb +29 -0
  37. data/test/dummy/db/test.sqlite3 +0 -0
  38. data/test/dummy/log/development.log +1743 -0
  39. data/test/dummy/log/production.log +0 -0
  40. data/test/dummy/log/server.log +0 -0
  41. data/test/dummy/log/test.log +9431 -0
  42. data/test/dummy/public/404.html +26 -0
  43. data/test/dummy/public/422.html +26 -0
  44. data/test/dummy/public/500.html +26 -0
  45. data/test/dummy/public/favicon.ico +0 -0
  46. data/test/dummy/public/javascripts/application.js +2 -0
  47. data/test/dummy/public/javascripts/controls.js +965 -0
  48. data/test/dummy/public/javascripts/dragdrop.js +974 -0
  49. data/test/dummy/public/javascripts/effects.js +1123 -0
  50. data/test/dummy/public/javascripts/prototype.js +6001 -0
  51. data/test/dummy/public/javascripts/rails.js +175 -0
  52. data/test/dummy/script/rails +6 -0
  53. data/test/dummy/test/factories/clearance.rb +13 -0
  54. data/test/dummy/tmp/capybara/capybara-20101221172010.html +42 -0
  55. data/test/dummy/tmp/pids/server.pid +1 -0
  56. data/test/integration/api_test.rb +63 -0
  57. data/test/integration/navigation_test.rb +39 -0
  58. data/test/support/integration_case.rb +5 -0
  59. data/test/test_helper.rb +29 -0
  60. metadata +215 -0
@@ -0,0 +1,1743 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at Tue Dec 21 16:23:02 +0100 2010
4
+
5
+ ActionController::RoutingError (No route matches "/"):
6
+
7
+
8
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
9
+
10
+
11
+ Started GET "/" for 127.0.0.1 at Tue Dec 21 16:25:00 +0100 2010
12
+
13
+ ActionController::RoutingError (No route matches "/"):
14
+
15
+
16
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
17
+ SQL (0.3ms)  SELECT name
18
+ FROM sqlite_master
19
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
20
+ 
21
+ SQL (0.1ms) SELECT name
22
+ FROM sqlite_master
23
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
24
+ SQL (0.5ms)  SELECT name
25
+ FROM sqlite_master
26
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
27
+ 
28
+ SQL (0.1ms) select sqlite_version(*)
29
+ SQL (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
30
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
31
+ SQL (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
32
+ SQL (0.1ms) SELECT name
33
+ FROM sqlite_master
34
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
35
+ SQL (0.1ms)  SELECT name
36
+ FROM sqlite_master
37
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
38
+ 
39
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
40
+ Migrating to ClearanceCreateUsers (20101221153914)
41
+ SQL (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(128), "salt" varchar(128), "confirmation_token" varchar(128), "remember_token" varchar(128), "email_confirmed" boolean DEFAULT 'f' NOT NULL, "created_at" datetime, "updated_at" datetime) 
42
+ SQL (0.0ms) PRAGMA index_list("users")
43
+ SQL (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
44
+ SQL (0.1ms) PRAGMA index_list("users")
45
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
46
+ SQL (0.1ms) CREATE INDEX "index_users_on_remember_token" ON "users" ("remember_token")
47
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101221153914')
48
+ SQL (0.2ms) SELECT name
49
+ FROM sqlite_master
50
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
51
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
52
+ SQL (0.1ms) SELECT name
53
+ FROM sqlite_master
54
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
55
+ SQL (0.1ms) PRAGMA index_list("users")
56
+ SQL (0.1ms) PRAGMA index_info('index_users_on_remember_token')
57
+ SQL (0.1ms) PRAGMA index_info('index_users_on_email')
58
+
59
+
60
+ Started GET "/" for 127.0.0.1 at Tue Dec 21 16:43:35 +0100 2010
61
+
62
+ ActionController::RoutingError (No route matches "/"):
63
+
64
+
65
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
66
+
67
+
68
+ Started GET "/" for 127.0.0.1 at Tue Dec 21 16:44:17 +0100 2010
69
+ Processing by EntranceController#index as HTML
70
+ SQL (0.2ms)  SELECT name
71
+ FROM sqlite_master
72
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
73
+ 
74
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = '9b64812db09f2e5046c9eb0fd66f24d47f35dd91') LIMIT 1
75
+ Redirected to http://localhost:3000/sign_in
76
+ Completed 302 Found in 48ms
77
+
78
+
79
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 16:44:17 +0100 2010
80
+ Processing by Clearance::SessionsController#new as HTML
81
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (9.1ms)
82
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.4ms)
83
+
84
+
85
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 16:44:20 +0100 2010
86
+ Processing by Clearance::SessionsController#create as HTML
87
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"user@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
88
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'user@example.com') LIMIT 1
89
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (5.0ms)
90
+ Completed 401 Unauthorized in 25ms (Views: 16.0ms | ActiveRecord: 0.2ms)
91
+
92
+
93
+ Started GET "/" for 127.0.0.1 at Tue Dec 21 16:45:40 +0100 2010
94
+ Processing by EntranceController#index as HTML
95
+ SQL (0.2ms)  SELECT name
96
+ FROM sqlite_master
97
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
98
+ 
99
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = '9b64812db09f2e5046c9eb0fd66f24d47f35dd91') LIMIT 1
100
+ Redirected to http://localhost:3000/sign_in
101
+ Completed 302 Found in 42ms
102
+
103
+
104
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 16:45:41 +0100 2010
105
+ Processing by Clearance::SessionsController#new as HTML
106
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (6.9ms)
107
+ Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.5ms)
108
+
109
+
110
+ Started GET "/entrance/index" for 127.0.0.1 at Tue Dec 21 16:45:51 +0100 2010
111
+
112
+ ActionController::RoutingError (No route matches "/entrance/index"):
113
+
114
+
115
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
116
+
117
+
118
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 16:45:53 +0100 2010
119
+ Processing by Clearance::SessionsController#new as HTML
120
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.6ms)
121
+ Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms)
122
+
123
+
124
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 17:21:23 +0100 2010
125
+ Processing by Clearance::SessionsController#create as HTML
126
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"user@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
127
+ SQL (0.3ms)  SELECT name
128
+ FROM sqlite_master
129
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
130
+ 
131
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'user@example.com') LIMIT 1
132
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.6ms)
133
+ Completed 401 Unauthorized in 125ms (Views: 15.4ms | ActiveRecord: 0.5ms)
134
+ User Load (0.4ms) SELECT "users".* FROM "users"
135
+ SQL (0.2ms) SELECT name
136
+ FROM sqlite_master
137
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
138
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
139
+ AREL (0.5ms) INSERT INTO "users" ("email_confirmed", "email", "confirmation_token", "created_at", "updated_at", "remember_token", "encrypted_password", "salt") VALUES ('f', 'test@example.com', 'be2b1b53ce03bc14d7885c7d0c1043c69464a174', '2010-12-21 16:24:48.848981', '2010-12-21 16:24:48.848981', 'efc5c957d0f0945164273c476448e0cba59573f9', '1b6a6507dd23f625410c549f6d6369095463c6e1', '5524a31f575b439dc1e2b88b7cbf3cdeeb427e50')
140
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/clearance_mailer/confirmation.html.erb (16.4ms)
141
+ SQL (0.2ms)  SELECT name
142
+ FROM sqlite_master
143
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
144
+ 
145
+ User Load (0.1ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
146
+ AREL (0.5ms) INSERT INTO "users" ("encrypted_password", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "email", "created_at", "salt") VALUES ('717757faf334e68ce7257d0464397d0eed66461f', '97442b55ec6c55595547a4fa0ae8b59593be1e54', 'f', '6f046d1ae40aace5e6ecc14840e63516c0eded92', '2010-12-21 16:34:39.577122', 'test@example.com', '2010-12-21 16:34:39.577122', 'd3d9dbc395a2034b6afc2d3f78a11dbbdf86063d')
147
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/clearance_mailer/confirmation.html.erb (18.8ms)
148
+ SQL (0.3ms) SELECT name
149
+ FROM sqlite_master
150
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
151
+ User Load (0.2ms) SELECT "users"."id" FROM "users" WHERE (LOWER("users"."email") = LOWER('test@example.com')) LIMIT 1
152
+ AREL (0.9ms) INSERT INTO "users" ("encrypted_password", "confirmation_token", "email_confirmed", "remember_token", "updated_at", "email", "created_at", "salt") VALUES ('7115c9cfbc8d39c744d9bab64ad39510c42149d0', '34425cd955db8655c1585ebf8e7efa402d58eac7', 't', 'bcaf2c9d42bd9f09569f048e2b82a130298982fd', '2010-12-21 16:35:25.145106', 'test@example.com', '2010-12-21 16:35:25.145106', '68785635c4b13716720e14385faab240f41cc02d')
153
+
154
+
155
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 17:35:34 +0100 2010
156
+ Processing by Clearance::SessionsController#create as HTML
157
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
158
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
159
+ Redirected to http://localhost:3000/
160
+ Completed 302 Found in 16ms
161
+
162
+
163
+ Started GET "/" for 127.0.0.1 at Tue Dec 21 17:35:36 +0100 2010
164
+ Processing by EntranceController#index as HTML
165
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
166
+ Rendered text template (0.0ms)
167
+ Completed 200 OK in 12ms (Views: 2.2ms | ActiveRecord: 0.5ms)
168
+
169
+
170
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 17:35:39 +0100 2010
171
+
172
+ ActionController::RoutingError (No route matches "/entrances"):
173
+
174
+
175
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
176
+
177
+
178
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 17:36:17 +0100 2010
179
+
180
+ ActionController::RoutingError (uninitialized constant EntrancesController):
181
+
182
+
183
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
184
+
185
+
186
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 17:42:09 +0100 2010
187
+ Processing by EntrancesController#index as HTML
188
+ SQL (0.2ms)  SELECT name
189
+ FROM sqlite_master
190
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
191
+ 
192
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
193
+ Rendered text template (0.0ms)
194
+ Completed 200 OK in 45ms (Views: 2.0ms | ActiveRecord: 0.5ms)
195
+
196
+
197
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 17:42:13 +0100 2010
198
+ Processing by EntrancesController#index as JSON
199
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
200
+ Rendered text template (0.0ms)
201
+ Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.2ms)
202
+
203
+
204
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 17:43:09 +0100 2010
205
+ Processing by EntrancesController#index as JSON
206
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
207
+ Completed 200 OK in 16ms (Views: 6.7ms | ActiveRecord: 0.2ms)
208
+
209
+
210
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 17:43:11 +0100 2010
211
+ Processing by EntrancesController#index as JSON
212
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
213
+ Completed 200 OK in 16ms (Views: 6.0ms | ActiveRecord: 0.2ms)
214
+
215
+
216
+ Started GET "/entrances.xml" for 127.0.0.1 at Tue Dec 21 17:43:13 +0100 2010
217
+ Processing by EntrancesController#index as XML
218
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
219
+ Completed 200 OK in 15ms (Views: 5.9ms | ActiveRecord: 0.2ms)
220
+
221
+
222
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 17:44:00 +0100 2010
223
+ Processing by EntrancesController#index as JSON
224
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
225
+ Completed 200 OK in 15ms (Views: 6.1ms | ActiveRecord: 0.2ms)
226
+
227
+
228
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 17:44:18 +0100 2010
229
+ Processing by EntrancesController#index as JSON
230
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
231
+ Completed 200 OK in 15ms (Views: 5.9ms | ActiveRecord: 0.2ms)
232
+
233
+
234
+ Started GET "/entrances.xml" for 127.0.0.1 at Tue Dec 21 17:44:19 +0100 2010
235
+ Processing by EntrancesController#index as XML
236
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
237
+ Completed 200 OK in 48ms (Views: 6.3ms | ActiveRecord: 0.2ms)
238
+
239
+
240
+ Started GET "/entrances.xml" for 127.0.0.1 at Tue Dec 21 17:44:32 +0100 2010
241
+ Processing by EntrancesController#index as XML
242
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
243
+ Completed 200 OK in 15ms (Views: 5.8ms | ActiveRecord: 0.2ms)
244
+
245
+
246
+ Started GET "/entrances.xml" for 127.0.0.1 at Tue Dec 21 18:01:59 +0100 2010
247
+ Processing by EntrancesController#index as XML
248
+ Redirected to http://localhost:3000/sign_in
249
+ Completed 302 Found in 1ms
250
+
251
+
252
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:01:59 +0100 2010
253
+ Processing by Clearance::SessionsController#new as HTML
254
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (8.0ms)
255
+ Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
256
+
257
+
258
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:02:11 +0100 2010
259
+ Processing by EntrancesController#index as JSON
260
+ Redirected to http://localhost:3000/sign_in
261
+ Completed 302 Found in 9ms
262
+
263
+
264
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:02:12 +0100 2010
265
+ Processing by Clearance::SessionsController#new as HTML
266
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (52.9ms)
267
+ Completed 200 OK in 77ms (Views: 75.5ms | ActiveRecord: 0.0ms)
268
+
269
+
270
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:12:40 +0100 2010
271
+
272
+ ActionController::RoutingError (uninitialized constant ClearanceHttpAuth::Middleware):
273
+ app/controllers/entrances_controller.rb:5
274
+
275
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
276
+
277
+
278
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:14:40 +0100 2010
279
+
280
+ ActionController::RoutingError (uninitialized constant ClearanceHttpAuth::Middleware):
281
+ app/controllers/entrances_controller.rb:5
282
+
283
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
284
+
285
+
286
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:14:47 +0100 2010
287
+ Processing by EntrancesController#index as JSON
288
+ Redirected to http://localhost:3000/sign_in
289
+ Completed 302 Found in 1ms
290
+
291
+
292
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:14:47 +0100 2010
293
+ Processing by Clearance::SessionsController#new as HTML
294
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (69.9ms)
295
+ Completed 200 OK in 82ms (Views: 81.5ms | ActiveRecord: 0.0ms)
296
+
297
+
298
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:15:25 +0100 2010
299
+ Processing by EntrancesController#index as JSON
300
+ Redirected to http://localhost:3000/sign_in
301
+ Completed 302 Found in 1ms
302
+
303
+
304
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:15:25 +0100 2010
305
+ Processing by Clearance::SessionsController#new as HTML
306
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.8ms)
307
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
308
+
309
+
310
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:15:38 +0100 2010
311
+ Processing by EntrancesController#index as JSON
312
+ Redirected to http://localhost:3000/sign_in
313
+ Completed 302 Found in 1ms
314
+
315
+
316
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:15:38 +0100 2010
317
+ Processing by Clearance::SessionsController#new as HTML
318
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (70.5ms)
319
+ Completed 200 OK in 82ms (Views: 81.7ms | ActiveRecord: 0.0ms)
320
+
321
+
322
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:15:56 +0100 2010
323
+ Processing by EntrancesController#index as JSON
324
+ Redirected to http://localhost:3000/sign_in
325
+ Completed 302 Found in 1ms
326
+
327
+
328
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:15:56 +0100 2010
329
+ Processing by Clearance::SessionsController#new as HTML
330
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (7.1ms)
331
+ Completed 200 OK in 81ms (Views: 80.9ms | ActiveRecord: 0.0ms)
332
+
333
+
334
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:17:14 +0100 2010
335
+
336
+ NoMethodError (You have a nil object when you didn't expect it!
337
+ You might have expected an instance of ActiveRecord::Base.
338
+ The error occurred while evaluating nil.[]):
339
+
340
+
341
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
342
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.1ms)
343
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
344
+
345
+
346
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:19:18 +0100 2010
347
+ Processing by EntrancesController#index as JSON
348
+ Redirected to http://localhost:3000/sign_in
349
+ Completed 302 Found in 1ms
350
+
351
+
352
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:19:18 +0100 2010
353
+ Processing by Clearance::SessionsController#new as HTML
354
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (71.9ms)
355
+ Completed 200 OK in 86ms (Views: 85.3ms | ActiveRecord: 0.0ms)
356
+
357
+
358
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:19:33 +0100 2010
359
+ Processing by Clearance::SessionsController#new as HTML
360
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.4ms)
361
+ Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.0ms)
362
+
363
+
364
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:19:38 +0100 2010
365
+ Processing by EntrancesController#index as JSON
366
+ Redirected to http://localhost:3000/sign_in
367
+ Completed 302 Found in 1ms
368
+
369
+
370
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:19:38 +0100 2010
371
+ Processing by Clearance::SessionsController#new as HTML
372
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (5.5ms)
373
+ Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
374
+
375
+
376
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:23:13 +0100 2010
377
+ Processing by EntrancesController#index as JSON
378
+ Redirected to http://localhost:3000/sign_in
379
+ Completed 302 Found in 1ms
380
+
381
+
382
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:23:14 +0100 2010
383
+ Processing by Clearance::SessionsController#new as HTML
384
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (8.1ms)
385
+ Completed 200 OK in 87ms (Views: 83.9ms | ActiveRecord: 0.0ms)
386
+
387
+
388
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:24:10 +0100 2010
389
+ Processing by EntrancesController#index as JSON
390
+ Redirected to http://localhost:3000/sign_in
391
+ Completed 302 Found in 1ms
392
+
393
+
394
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:24:11 +0100 2010
395
+ Processing by Clearance::SessionsController#new as HTML
396
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (7.4ms)
397
+ Completed 200 OK in 84ms (Views: 83.5ms | ActiveRecord: 0.0ms)
398
+
399
+
400
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:25:07 +0100 2010
401
+ Processing by Clearance::SessionsController#new as HTML
402
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (10.4ms)
403
+ Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms)
404
+
405
+
406
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:25:11 +0100 2010
407
+ Processing by EntrancesController#index as JSON
408
+ Redirected to http://localhost:3000/sign_in
409
+ Completed 302 Found in 1ms
410
+
411
+
412
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:25:11 +0100 2010
413
+ Processing by Clearance::SessionsController#new as HTML
414
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.9ms)
415
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
416
+
417
+
418
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:25:35 +0100 2010
419
+ Processing by EntrancesController#index as JSON
420
+ Redirected to http://localhost:3000/sign_in
421
+ Completed 302 Found in 1ms
422
+
423
+
424
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:25:38 +0100 2010
425
+ Processing by Clearance::SessionsController#new as HTML
426
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (5.4ms)
427
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
428
+
429
+
430
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:26:12 +0100 2010
431
+ Processing by EntrancesController#index as JSON
432
+ Redirected to http://localhost:3000/sign_in
433
+ Completed 302 Found in 1ms
434
+
435
+
436
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:26:20 +0100 2010
437
+ Processing by Clearance::SessionsController#new as HTML
438
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (7.9ms)
439
+ Completed 200 OK in 95ms (Views: 94.9ms | ActiveRecord: 0.0ms)
440
+
441
+
442
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:27:05 +0100 2010
443
+ Processing by EntrancesController#index as JSON
444
+ Redirected to http://localhost:3000/sign_in
445
+ Completed 302 Found in 1ms
446
+
447
+
448
+ Started HEAD "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:27:11 +0100 2010
449
+ Processing by EntrancesController#index as JSON
450
+ Redirected to http://localhost:3000/sign_in
451
+ Completed 302 Found in 1ms
452
+
453
+
454
+ Started HEAD "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:27:25 +0100 2010
455
+ Processing by EntrancesController#index as JSON
456
+ Redirected to http://localhost:3000/sign_in
457
+ Completed 302 Found in 1ms
458
+
459
+
460
+ Started HEAD "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:27:34 +0100 2010
461
+ Processing by EntrancesController#index as JSON
462
+ Redirected to http://localhost:3000/sign_in
463
+ Completed 302 Found in 1ms
464
+
465
+
466
+ Started HEAD "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:28:17 +0100 2010
467
+ Processing by EntrancesController#index as JSON
468
+ Redirected to http://localhost:3000/sign_in
469
+ Completed 302 Found in 1ms
470
+
471
+
472
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:29:41 +0100 2010
473
+ Processing by EntrancesController#index as JSON
474
+ Redirected to http://localhost:3000/sign_in
475
+ Completed 302 Found in 1ms
476
+
477
+
478
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:30:43 +0100 2010
479
+ User Load (0.9ms) SELECT "users".* FROM "users" LIMIT 1
480
+ Processing by EntrancesController#index as JSON
481
+ Redirected to http://localhost:3000/sign_in
482
+ Completed 302 Found in 1ms
483
+
484
+
485
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:30:56 +0100 2010
486
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1
487
+ Processing by EntrancesController#index as JSON
488
+ Redirected to http://localhost:3000/sign_in
489
+ Completed 302 Found in 1ms
490
+
491
+
492
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 18:30:56 +0100 2010
493
+ Processing by Clearance::SessionsController#new as HTML
494
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (8.0ms)
495
+ Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 1.2ms)
496
+
497
+
498
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 18:31:11 +0100 2010
499
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
500
+ Processing by EntrancesController#index as JSON
501
+ Redirected to http://localhost:3000/sign_in
502
+ Completed 302 Found in 1ms
503
+
504
+
505
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:03:45 +0100 2010
506
+ Processing by EntrancesController#index as JSON
507
+ Redirected to http://localhost:3000/sign_in
508
+ Completed 302 Found in 1ms
509
+
510
+
511
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:04:05 +0100 2010
512
+
513
+ NoMethodError (undefined method `[]' for #<Rack::Auth::Basic:0x103213410>):
514
+
515
+
516
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
517
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms)
518
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.5ms)
519
+
520
+
521
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:05:03 +0100 2010
522
+
523
+ NoMethodError (undefined method `call' for Rack::Auth::Basic:Class):
524
+
525
+
526
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
527
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.6ms)
528
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.5ms)
529
+
530
+
531
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:05:19 +0100 2010
532
+
533
+ ArgumentError (wrong number of arguments (0 for 1)):
534
+
535
+
536
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
537
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.6ms)
538
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
539
+
540
+
541
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:06:54 +0100 2010
542
+
543
+ NoMethodError (undefined method `[]' for #<Rack::Auth::Basic:0x1032133e8>):
544
+
545
+
546
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
547
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms)
548
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (11.4ms)
549
+
550
+
551
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:08:01 +0100 2010
552
+
553
+
554
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:08:25 +0100 2010
555
+ Processing by EntrancesController#index as JSON
556
+ Redirected to http://localhost:3000/sign_in
557
+ Completed 302 Found in 1ms
558
+
559
+
560
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:09:05 +0100 2010
561
+ Processing by EntrancesController#index as JSON
562
+ Redirected to http://localhost:3000/sign_in
563
+ Completed 302 Found in 1ms
564
+
565
+
566
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:09:20 +0100 2010
567
+
568
+
569
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:10:48 +0100 2010
570
+
571
+ NameError (undefined local variable or method `protected_app' for #<ClearanceHttpAuth::Middleware:0x10321f148>):
572
+
573
+
574
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
575
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.3ms)
576
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.9ms)
577
+
578
+
579
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:11:00 +0100 2010
580
+
581
+
582
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:11:09 +0100 2010
583
+ Processing by EntrancesController#index as JSON
584
+ Redirected to http://localhost:3000/sign_in
585
+ Completed 302 Found in 1ms
586
+
587
+
588
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:11:14 +0100 2010
589
+ Processing by EntrancesController#index as */*
590
+ Redirected to http://localhost:3000/sign_in
591
+ Completed 302 Found in 1ms
592
+
593
+
594
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:11:19 +0100 2010
595
+ Processing by EntrancesController#index as */*
596
+ Redirected to http://localhost:3000/sign_in
597
+ Completed 302 Found in 1ms
598
+
599
+
600
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:11:28 +0100 2010
601
+ Processing by EntrancesController#index as */*
602
+ Redirected to http://localhost:3000/sign_in
603
+ Completed 302 Found in 1ms
604
+
605
+
606
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 19:11:28 +0100 2010
607
+ Processing by Clearance::SessionsController#new as */*
608
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (8.0ms)
609
+ Completed 200 OK in 59ms (Views: 59.0ms | ActiveRecord: 0.0ms)
610
+
611
+
612
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:12:27 +0100 2010
613
+ Processing by EntrancesController#index as */*
614
+ Redirected to http://localhost:3000/sign_in
615
+ Completed 302 Found in 1ms
616
+
617
+
618
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 19:12:27 +0100 2010
619
+ Processing by Clearance::SessionsController#new as */*
620
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.7ms)
621
+ Completed 200 OK in 54ms (Views: 53.9ms | ActiveRecord: 0.0ms)
622
+
623
+
624
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:12:32 +0100 2010
625
+ Processing by EntrancesController#index as */*
626
+ Redirected to http://localhost:3000/sign_in
627
+ Completed 302 Found in 1ms
628
+
629
+
630
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:12:35 +0100 2010
631
+ Processing by EntrancesController#index as JSON
632
+ Redirected to http://localhost:3000/sign_in
633
+ Completed 302 Found in 1ms
634
+
635
+
636
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:12:43 +0100 2010
637
+ Processing by EntrancesController#index as JSON
638
+ Redirected to http://localhost:3000/sign_in
639
+ Completed 302 Found in 1ms
640
+
641
+
642
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:14:48 +0100 2010
643
+ User Load (1.2ms) SELECT "users".* FROM "users" LIMIT 1
644
+ Processing by EntrancesController#index as JSON
645
+ Redirected to http://localhost:3000/sign_in
646
+ Completed 302 Found in 1ms
647
+
648
+
649
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:16:09 +0100 2010
650
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
651
+ Processing by EntrancesController#index as JSON
652
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.5ms)
653
+
654
+
655
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:16:15 +0100 2010
656
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1
657
+ Processing by EntrancesController#index as JSON
658
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 0.3ms)
659
+
660
+
661
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:16:32 +0100 2010
662
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
663
+ Processing by EntrancesController#index as JSON
664
+ #<User:0x1034e74e8>
665
+ Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.5ms)
666
+
667
+
668
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:16:39 +0100 2010
669
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
670
+ Processing by EntrancesController#index as JSON
671
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
672
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.5ms)
673
+
674
+
675
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:15 +0100 2010
676
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
677
+ Processing by EntrancesController#index as JSON
678
+ #<User:0x10312ba70>
679
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
680
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.5ms)
681
+
682
+
683
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:35 +0100 2010
684
+ User Load (0.3ms) SELECT "users".* FROM "users" LIMIT 1
685
+
686
+
687
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:38 +0100 2010
688
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
689
+
690
+
691
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:42 +0100 2010
692
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
693
+
694
+
695
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:44 +0100 2010
696
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
697
+
698
+
699
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:49 +0100 2010
700
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
701
+
702
+
703
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:51 +0100 2010
704
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
705
+
706
+
707
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:52 +0100 2010
708
+ User Load (0.5ms) SELECT "users".* FROM "users" LIMIT 1
709
+
710
+
711
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:17:58 +0100 2010
712
+ User Load (1.1ms) SELECT "users".* FROM "users" LIMIT 1
713
+ Processing by EntrancesController#index as JSON
714
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
715
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 4.3ms)
716
+
717
+
718
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:19:43 +0100 2010
719
+
720
+ NameError (undefined local variable or method `user' for #<ClearanceHttpAuth::Middleware:0x103213398>):
721
+
722
+
723
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
724
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.4ms)
725
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.7ms)
726
+
727
+
728
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:20:35 +0100 2010
729
+
730
+ NameError (undefined local variable or method `login' for #<ClearanceHttpAuth::Middleware:0x10321e9a0>):
731
+
732
+
733
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
734
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.2ms)
735
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
736
+
737
+
738
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:20:53 +0100 2010
739
+ SQL (0.3ms)  SELECT name
740
+ FROM sqlite_master
741
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
742
+ 
743
+ User Load (1.1ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'user') LIMIT 1
744
+
745
+
746
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:20:59 +0100 2010
747
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'user') LIMIT 1
748
+
749
+
750
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:22:38 +0100 2010
751
+ User Load (1.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
752
+ Processing by EntrancesController#index as JSON
753
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
754
+ Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 2.8ms)
755
+
756
+
757
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:22:47 +0100 2010
758
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
759
+
760
+
761
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:23:00 +0100 2010
762
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
763
+
764
+
765
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:23:06 +0100 2010
766
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
767
+ Processing by EntrancesController#index as JSON
768
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
769
+ Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.7ms)
770
+
771
+
772
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:32:54 +0100 2010
773
+ User Load (1.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
774
+ Processing by EntrancesController#index as JSON
775
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
776
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 1.3ms)
777
+
778
+
779
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:36:31 +0100 2010
780
+ SQL (0.3ms)  SELECT name
781
+ FROM sqlite_master
782
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
783
+ 
784
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
785
+ Processing by EntrancesController#index as JSON
786
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
787
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.6ms)
788
+
789
+
790
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:36:39 +0100 2010
791
+ Processing by EntrancesController#index as */*
792
+ Redirected to http://localhost:3000/sign_in
793
+ Completed 302 Found in 1ms
794
+
795
+
796
+ Started GET "/entrances.xml" for 127.0.0.1 at Tue Dec 21 19:36:43 +0100 2010
797
+ Processing by EntrancesController#index as XML
798
+ Redirected to http://localhost:3000/sign_in
799
+ Completed 302 Found in 1ms
800
+
801
+
802
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:36:50 +0100 2010
803
+ Processing by EntrancesController#index as JSON
804
+ Redirected to http://localhost:3000/sign_in
805
+ Completed 302 Found in 1ms
806
+
807
+
808
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:38:30 +0100 2010
809
+ SQL (0.2ms)  SELECT name
810
+ FROM sqlite_master
811
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
812
+ 
813
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
814
+ Processing by EntrancesController#index as JSON
815
+ Redirected to http://localhost:3000/sign_in
816
+ Completed 302 Found in 1ms
817
+
818
+
819
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:39:10 +0100 2010
820
+ Processing by EntrancesController#index as JSON
821
+ Redirected to http://localhost:3000/sign_in
822
+ Completed 302 Found in 1ms
823
+
824
+
825
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:39:15 +0100 2010
826
+ SQL (0.2ms)  SELECT name
827
+ FROM sqlite_master
828
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
829
+ 
830
+ User Load (1.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
831
+ Processing by EntrancesController#index as JSON
832
+ Redirected to http://localhost:3000/sign_in
833
+ Completed 302 Found in 1ms
834
+
835
+
836
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 19:40:10 +0100 2010
837
+ SQL (0.2ms)  SELECT name
838
+ FROM sqlite_master
839
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
840
+ 
841
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
842
+ Processing by EntrancesController#index as JSON
843
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
844
+ Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.5ms)
845
+
846
+
847
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:43:02 +0100 2010
848
+ Processing by EntrancesController#index as HTML
849
+ Redirected to http://localhost:3000/sign_in
850
+ Completed 302 Found in 1ms
851
+
852
+
853
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 19:43:02 +0100 2010
854
+ Processing by Clearance::SessionsController#new as HTML
855
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (13.2ms)
856
+ Completed 200 OK in 31ms (Views: 30.1ms | ActiveRecord: 0.0ms)
857
+
858
+
859
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 19:43:11 +0100 2010
860
+ Processing by Clearance::SessionsController#create as HTML
861
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
862
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
863
+ Redirected to http://localhost:3000/entrances
864
+ Completed 302 Found in 27ms
865
+
866
+
867
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 19:43:11 +0100 2010
868
+ Processing by EntrancesController#index as HTML
869
+ Redirected to http://localhost:3000/sign_in
870
+ Completed 302 Found in 1ms
871
+
872
+
873
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 19:43:11 +0100 2010
874
+ Processing by Clearance::SessionsController#new as HTML
875
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (85.2ms)
876
+ Completed 200 OK in 98ms (Views: 97.9ms | ActiveRecord: 1.0ms)
877
+
878
+
879
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 23:28:35 +0100 2010
880
+ Processing by Clearance::SessionsController#create as HTML
881
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
882
+ User Load (2.8ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
883
+ Redirected to http://localhost:3000/entrances
884
+ Completed 302 Found in 31ms
885
+
886
+
887
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:28:36 +0100 2010
888
+ Processing by EntrancesController#index as HTML
889
+ Redirected to http://localhost:3000/sign_in
890
+ Completed 302 Found in 3ms
891
+
892
+
893
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 23:28:36 +0100 2010
894
+ Processing by Clearance::SessionsController#new as HTML
895
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (5.4ms)
896
+ Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 2.8ms)
897
+
898
+
899
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 23:28:41 +0100 2010
900
+ Processing by Clearance::SessionsController#create as HTML
901
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
902
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
903
+ Redirected to http://localhost:3000/entrances
904
+ Completed 302 Found in 14ms
905
+
906
+
907
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:28:41 +0100 2010
908
+ Processing by EntrancesController#index as HTML
909
+ Redirected to http://localhost:3000/sign_in
910
+ Completed 302 Found in 1ms
911
+
912
+
913
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 23:28:41 +0100 2010
914
+ Processing by Clearance::SessionsController#new as HTML
915
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.6ms)
916
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.2ms)
917
+
918
+
919
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 23:30:50 +0100 2010
920
+ SQL (0.2ms)  SELECT name
921
+ FROM sqlite_master
922
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
923
+ 
924
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'admin') LIMIT 1
925
+
926
+
927
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 23:30:53 +0100 2010
928
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'admin') LIMIT 1
929
+
930
+
931
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:30:56 +0100 2010
932
+ Processing by EntrancesController#index as HTML
933
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
934
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
935
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
936
+ Rendered text template (0.0ms)
937
+ Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 1.0ms)
938
+
939
+
940
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:30:59 +0100 2010
941
+ Processing by EntrancesController#index as HTML
942
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
943
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
944
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
945
+ Rendered text template (0.0ms)
946
+ Completed 200 OK in 11ms (Views: 0.9ms | ActiveRecord: 0.2ms)
947
+
948
+
949
+ Started GET "/logout" for 127.0.0.1 at Tue Dec 21 23:31:02 +0100 2010
950
+
951
+ ActionController::RoutingError (No route matches "/logout"):
952
+
953
+
954
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
955
+
956
+
957
+ Started GET "/sign_out" for 127.0.0.1 at Tue Dec 21 23:31:06 +0100 2010
958
+
959
+ ActionController::RoutingError (No route matches "/sign_out"):
960
+
961
+
962
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
963
+
964
+
965
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:32:17 +0100 2010
966
+ Processing by EntrancesController#index as HTML
967
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
968
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
969
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
970
+ Rendered text template (0.0ms)
971
+ Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.2ms)
972
+
973
+
974
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:32:24 +0100 2010
975
+ Processing by EntrancesController#index as HTML
976
+ Redirected to http://localhost:3000/sign_in
977
+ Completed 302 Found in 1ms
978
+
979
+
980
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 23:32:24 +0100 2010
981
+ Processing by Clearance::SessionsController#new as HTML
982
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (6.8ms)
983
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
984
+
985
+
986
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 23:32:28 +0100 2010
987
+ Processing by Clearance::SessionsController#create as HTML
988
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
989
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
990
+ Redirected to http://localhost:3000/entrances
991
+ Completed 302 Found in 17ms
992
+
993
+
994
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:32:28 +0100 2010
995
+ Processing by EntrancesController#index as HTML
996
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
997
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
998
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
999
+ Rendered text template (0.0ms)
1000
+ Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms)
1001
+
1002
+
1003
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:32:32 +0100 2010
1004
+ Processing by EntrancesController#index as HTML
1005
+ Redirected to http://localhost:3000/sign_in
1006
+ Completed 302 Found in 1ms
1007
+
1008
+
1009
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 23:32:32 +0100 2010
1010
+ Processing by Clearance::SessionsController#new as HTML
1011
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.6ms)
1012
+ Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
1013
+
1014
+
1015
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 23:32:50 +0100 2010
1016
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1017
+ Processing by EntrancesController#index as JSON
1018
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1019
+ Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms)
1020
+
1021
+
1022
+ Started GET "/entrances.xml" for 127.0.0.1 at Tue Dec 21 23:32:59 +0100 2010
1023
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1024
+ Processing by EntrancesController#index as XML
1025
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1026
+ Completed 200 OK in 43ms (Views: 9.1ms | ActiveRecord: 0.2ms)
1027
+
1028
+
1029
+ Started GET "/entrances.ahoj" for 127.0.0.1 at Tue Dec 21 23:33:06 +0100 2010
1030
+ Processing by EntrancesController#index as
1031
+ Redirected to http://localhost:3000/sign_in
1032
+ Completed 302 Found in 1ms
1033
+
1034
+
1035
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 23:56:39 +0100 2010
1036
+ SQL (0.2ms)  SELECT name
1037
+ FROM sqlite_master
1038
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1039
+ 
1040
+ User Load (1.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1041
+ Processing by EntrancesController#index as JSON
1042
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1043
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 1.5ms)
1044
+
1045
+
1046
+ Started GET "/sign_in" for 127.0.0.1 at Tue Dec 21 23:56:45 +0100 2010
1047
+ Processing by Clearance::SessionsController#new as HTML
1048
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (6.8ms)
1049
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
1050
+
1051
+
1052
+ Started POST "/session" for 127.0.0.1 at Tue Dec 21 23:56:48 +0100 2010
1053
+ Processing by Clearance::SessionsController#create as HTML
1054
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
1055
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1056
+ Redirected to http://localhost:3000/entrances
1057
+ Completed 302 Found in 16ms
1058
+
1059
+
1060
+ Started GET "/entrances" for 127.0.0.1 at Tue Dec 21 23:56:48 +0100 2010
1061
+ Processing by EntrancesController#index as HTML
1062
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1063
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1064
+ Rendered text template (0.0ms)
1065
+ Completed 200 OK in 12ms (Views: 1.9ms | ActiveRecord: 0.4ms)
1066
+
1067
+
1068
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 23:58:37 +0100 2010
1069
+ Processing by EntrancesController#index as JSON
1070
+ Redirected to http://localhost:3000/sign_in
1071
+ Completed 302 Found in 1ms
1072
+
1073
+
1074
+ Started GET "/entrances.json" for 127.0.0.1 at Tue Dec 21 23:58:48 +0100 2010
1075
+ Processing by EntrancesController#index as JSON
1076
+ Redirected to http://localhost:3000/sign_in
1077
+ Completed 302 Found in 1ms
1078
+
1079
+
1080
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:01:34 +0100 2010
1081
+ Processing by EntrancesController#index as JSON
1082
+ Redirected to http://localhost:3000/sign_in
1083
+ Completed 302 Found in 1ms
1084
+
1085
+
1086
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:01:38 +0100 2010
1087
+ Processing by EntrancesController#index as */*
1088
+ Redirected to http://localhost:3000/sign_in
1089
+ Completed 302 Found in 1ms
1090
+
1091
+
1092
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:01:44 +0100 2010
1093
+ Processing by EntrancesController#index as JSON
1094
+ Redirected to http://localhost:3000/sign_in
1095
+ Completed 302 Found in 1ms
1096
+
1097
+
1098
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:02:15 +0100 2010
1099
+ SQL (0.2ms)  SELECT name
1100
+ FROM sqlite_master
1101
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1102
+ 
1103
+ User Load (1.4ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1104
+ Processing by EntrancesController#index as JSON
1105
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1106
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 1.7ms)
1107
+
1108
+
1109
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:05:10 +0100 2010
1110
+ SQL (0.2ms)  SELECT name
1111
+ FROM sqlite_master
1112
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1113
+ 
1114
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1115
+ Processing by EntrancesController#index as JSON
1116
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1117
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.5ms)
1118
+
1119
+
1120
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:06:05 +0100 2010
1121
+ Processing by EntrancesController#index as HTML
1122
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1123
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1124
+ Rendered text template (0.0ms)
1125
+ Completed 200 OK in 13ms (Views: 2.8ms | ActiveRecord: 0.3ms)
1126
+
1127
+
1128
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:06:09 +0100 2010
1129
+ Processing by EntrancesController#index as HTML
1130
+ Redirected to http://localhost:3000/sign_in
1131
+ Completed 302 Found in 1ms
1132
+
1133
+
1134
+ Started GET "/sign_in" for 127.0.0.1 at Wed Dec 22 00:06:09 +0100 2010
1135
+ Processing by Clearance::SessionsController#new as HTML
1136
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (7.0ms)
1137
+ Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms)
1138
+
1139
+
1140
+ Started POST "/session" for 127.0.0.1 at Wed Dec 22 00:06:12 +0100 2010
1141
+ Processing by Clearance::SessionsController#create as HTML
1142
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
1143
+ User Load (1.1ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1144
+ Redirected to http://localhost:3000/entrances
1145
+ Completed 302 Found in 17ms
1146
+
1147
+
1148
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:06:12 +0100 2010
1149
+ Processing by EntrancesController#index as HTML
1150
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1151
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1152
+ Rendered text template (0.0ms)
1153
+ Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 1.3ms)
1154
+
1155
+
1156
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:09:09 +0100 2010
1157
+ Processing by EntrancesController#index as JSON
1158
+ Redirected to http://localhost:3000/sign_in
1159
+ Completed 302 Found in 1ms
1160
+
1161
+
1162
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:10:14 +0100 2010
1163
+ SQL (0.2ms)  SELECT name
1164
+ FROM sqlite_master
1165
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1166
+ 
1167
+ User Load (1.1ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1168
+ Processing by EntrancesController#index as JSON
1169
+ Redirected to http://localhost:3000/sign_in
1170
+ Completed 302 Found in 1ms
1171
+
1172
+
1173
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:10:18 +0100 2010
1174
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1175
+ Processing by EntrancesController#index as JSON
1176
+ Redirected to http://localhost:3000/sign_in
1177
+ Completed 302 Found in 1ms
1178
+
1179
+
1180
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:10:27 +0100 2010
1181
+ SQL (0.2ms)  SELECT name
1182
+ FROM sqlite_master
1183
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1184
+ 
1185
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1186
+ Processing by EntrancesController#index as JSON
1187
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1188
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.5ms)
1189
+
1190
+
1191
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:10:34 +0100 2010
1192
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1193
+ Processing by EntrancesController#index as JSON
1194
+ Redirected to http://localhost:3000/sign_in
1195
+ Completed 302 Found in 1ms
1196
+
1197
+
1198
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:10:36 +0100 2010
1199
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1200
+ Processing by EntrancesController#index as JSON
1201
+ Redirected to http://localhost:3000/sign_in
1202
+ Completed 302 Found in 1ms
1203
+
1204
+
1205
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:10:38 +0100 2010
1206
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1207
+ Processing by EntrancesController#index as JSON
1208
+ Redirected to http://localhost:3000/sign_in
1209
+ Completed 302 Found in 1ms
1210
+
1211
+
1212
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:14:50 +0100 2010
1213
+ Processing by EntrancesController#index as JSON
1214
+ Redirected to http://localhost:3000/sign_in
1215
+ Completed 302 Found in 1ms
1216
+
1217
+
1218
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:14:54 +0100 2010
1219
+ Processing by EntrancesController#index as JSON
1220
+ Redirected to http://localhost:3000/sign_in
1221
+ Completed 302 Found in 1ms
1222
+
1223
+
1224
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:15:19 +0100 2010
1225
+ SQL (0.2ms)  SELECT name
1226
+ FROM sqlite_master
1227
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1228
+ 
1229
+ User Load (1.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1230
+ Processing by EntrancesController#index as JSON
1231
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1232
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 1.4ms)
1233
+
1234
+
1235
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:15:20 +0100 2010
1236
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1237
+ Processing by EntrancesController#index as JSON
1238
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1239
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)
1240
+
1241
+
1242
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:15:21 +0100 2010
1243
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1244
+ Processing by EntrancesController#index as JSON
1245
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1246
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
1247
+
1248
+
1249
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:17:05 +0100 2010
1250
+ SQL (0.2ms)  SELECT name
1251
+ FROM sqlite_master
1252
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1253
+ 
1254
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1255
+ Processing by EntrancesController#index as JSON
1256
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1257
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.5ms)
1258
+
1259
+
1260
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:17:07 +0100 2010
1261
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1262
+ Processing by EntrancesController#index as JSON
1263
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1264
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
1265
+
1266
+
1267
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:17:09 +0100 2010
1268
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1269
+ Processing by EntrancesController#index as JSON
1270
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1271
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.2ms)
1272
+
1273
+
1274
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:19:27 +0100 2010
1275
+ SQL (0.2ms)  SELECT name
1276
+ FROM sqlite_master
1277
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1278
+ 
1279
+ User Load (1.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1280
+ Processing by EntrancesController#index as JSON
1281
+ Redirected to http://localhost:3000/sign_in
1282
+ Completed 302 Found in 1ms
1283
+
1284
+
1285
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:19:30 +0100 2010
1286
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1287
+ Processing by EntrancesController#index as JSON
1288
+ Redirected to http://localhost:3000/sign_in
1289
+ Completed 302 Found in 1ms
1290
+
1291
+
1292
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:19:31 +0100 2010
1293
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1294
+ Processing by EntrancesController#index as JSON
1295
+ Redirected to http://localhost:3000/sign_in
1296
+ Completed 302 Found in 1ms
1297
+
1298
+
1299
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:19:37 +0100 2010
1300
+ Processing by EntrancesController#index as HTML
1301
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1302
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1303
+ Rendered text template (0.0ms)
1304
+ Completed 200 OK in 13ms (Views: 2.0ms | ActiveRecord: 2.2ms)
1305
+
1306
+
1307
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:19:42 +0100 2010
1308
+
1309
+
1310
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:19:43 +0100 2010
1311
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'admin') LIMIT 1
1312
+
1313
+
1314
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:19:50 +0100 2010
1315
+ Processing by EntrancesController#index as HTML
1316
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1317
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1318
+ Rendered text template (0.0ms)
1319
+ Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.4ms)
1320
+
1321
+
1322
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:19:54 +0100 2010
1323
+ Processing by EntrancesController#index as HTML
1324
+ Redirected to http://localhost:3000/sign_in
1325
+ Completed 302 Found in 1ms
1326
+
1327
+
1328
+ Started GET "/sign_in" for 127.0.0.1 at Wed Dec 22 00:19:54 +0100 2010
1329
+ Processing by Clearance::SessionsController#new as HTML
1330
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (8.5ms)
1331
+ Completed 200 OK in 25ms (Views: 23.9ms | ActiveRecord: 0.0ms)
1332
+
1333
+
1334
+ Started POST "/session" for 127.0.0.1 at Wed Dec 22 00:19:57 +0100 2010
1335
+ Processing by Clearance::SessionsController#create as HTML
1336
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
1337
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1338
+ Redirected to http://localhost:3000/entrances
1339
+ Completed 302 Found in 15ms
1340
+
1341
+
1342
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:19:57 +0100 2010
1343
+ Processing by EntrancesController#index as HTML
1344
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1345
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1346
+ Rendered text template (0.0ms)
1347
+ Completed 200 OK in 86ms (Views: 1.0ms | ActiveRecord: 0.5ms)
1348
+
1349
+
1350
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:20:03 +0100 2010
1351
+
1352
+
1353
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:20:22 +0100 2010
1354
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1355
+ Processing by EntrancesController#index as JSON
1356
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1357
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1358
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.4ms)
1359
+
1360
+
1361
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:20:33 +0100 2010
1362
+ Processing by EntrancesController#index as HTML
1363
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1364
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1365
+ Rendered text template (0.0ms)
1366
+ Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.2ms)
1367
+
1368
+
1369
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:20:36 +0100 2010
1370
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1371
+ Processing by EntrancesController#index as JSON
1372
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1373
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1374
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.5ms)
1375
+
1376
+
1377
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:20:39 +0100 2010
1378
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1379
+ Processing by EntrancesController#index as XML
1380
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1381
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1382
+ Completed 200 OK in 113ms (Views: 9.2ms | ActiveRecord: 0.4ms)
1383
+
1384
+
1385
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:20:44 +0100 2010
1386
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1387
+ Processing by EntrancesController#index as XML
1388
+ Redirected to http://localhost:3000/sign_in
1389
+ Completed 302 Found in 1ms
1390
+
1391
+
1392
+ Started GET "/sign_in" for 127.0.0.1 at Wed Dec 22 00:20:44 +0100 2010
1393
+ Processing by Clearance::SessionsController#new as HTML
1394
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.6ms)
1395
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.2ms)
1396
+
1397
+
1398
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:20:47 +0100 2010
1399
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1400
+ Processing by EntrancesController#index as JSON
1401
+ Redirected to http://localhost:3000/sign_in
1402
+ Completed 302 Found in 1ms
1403
+
1404
+
1405
+ Started GET "/sign_in" for 127.0.0.1 at Wed Dec 22 00:20:47 +0100 2010
1406
+ Processing by Clearance::SessionsController#new as HTML
1407
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.5ms)
1408
+ Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.2ms)
1409
+
1410
+
1411
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:20:52 +0100 2010
1412
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1413
+ Processing by EntrancesController#index as JSON
1414
+ Redirected to http://localhost:3000/sign_in
1415
+ Completed 302 Found in 1ms
1416
+
1417
+
1418
+ Started GET "/sign_in" for 127.0.0.1 at Wed Dec 22 00:20:52 +0100 2010
1419
+ Processing by Clearance::SessionsController#new as HTML
1420
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (4.9ms)
1421
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.2ms)
1422
+
1423
+
1424
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:22:18 +0100 2010
1425
+ SQL (0.2ms)  SELECT name
1426
+ FROM sqlite_master
1427
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1428
+ 
1429
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1430
+ Processing by EntrancesController#index as JSON
1431
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1432
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.5ms)
1433
+
1434
+
1435
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:22:21 +0100 2010
1436
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1437
+ Processing by EntrancesController#index as XML
1438
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1439
+ Completed 200 OK in 38ms (Views: 9.0ms | ActiveRecord: 0.3ms)
1440
+
1441
+
1442
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:22:22 +0100 2010
1443
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1444
+ Processing by EntrancesController#index as XML
1445
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1446
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
1447
+
1448
+
1449
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:22:23 +0100 2010
1450
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1451
+ Processing by EntrancesController#index as XML
1452
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1453
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)
1454
+
1455
+
1456
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:22:23 +0100 2010
1457
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1458
+ Processing by EntrancesController#index as XML
1459
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1460
+ Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.2ms)
1461
+
1462
+
1463
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:22:23 +0100 2010
1464
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1465
+ Processing by EntrancesController#index as XML
1466
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1467
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)
1468
+
1469
+
1470
+ Started GET "/entrances.xml" for 127.0.0.1 at Wed Dec 22 00:22:24 +0100 2010
1471
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1472
+ Processing by EntrancesController#index as XML
1473
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1474
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
1475
+
1476
+
1477
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:22:26 +0100 2010
1478
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1479
+ Processing by EntrancesController#index as JSON
1480
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1481
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)
1482
+
1483
+
1484
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:22:27 +0100 2010
1485
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1486
+ Processing by EntrancesController#index as JSON
1487
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1488
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.2ms)
1489
+
1490
+
1491
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:22:27 +0100 2010
1492
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1493
+ Processing by EntrancesController#index as JSON
1494
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1495
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.2ms)
1496
+
1497
+
1498
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:22:29 +0100 2010
1499
+ Processing by EntrancesController#index as HTML
1500
+ Redirected to http://localhost:3000/sign_in
1501
+ Completed 302 Found in 1ms
1502
+
1503
+
1504
+ Started GET "/sign_in" for 127.0.0.1 at Wed Dec 22 00:22:29 +0100 2010
1505
+ Processing by Clearance::SessionsController#new as HTML
1506
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (9.3ms)
1507
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms)
1508
+
1509
+
1510
+ Started POST "/session" for 127.0.0.1 at Wed Dec 22 00:22:32 +0100 2010
1511
+ Processing by Clearance::SessionsController#create as HTML
1512
+ Parameters: {"session"=>{"password"=>"[FILTERED]", "email"=>"test@example.com"}, "authenticity_token"=>"[FILTERED]", "utf8"=>"✓"}
1513
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1514
+ Redirected to http://localhost:3000/entrances
1515
+ Completed 302 Found in 18ms
1516
+
1517
+
1518
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:22:32 +0100 2010
1519
+ Processing by EntrancesController#index as HTML
1520
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1521
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1522
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1523
+ Rendered text template (0.0ms)
1524
+ Completed 200 OK in 87ms (Views: 2.0ms | ActiveRecord: 0.4ms)
1525
+
1526
+
1527
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:22:37 +0100 2010
1528
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1529
+ Processing by EntrancesController#index as JSON
1530
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1531
+ Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.2ms)
1532
+
1533
+
1534
+ Started GET "/entrances.json" for 127.0.0.1 at Wed Dec 22 00:22:45 +0100 2010
1535
+
1536
+
1537
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:22:50 +0100 2010
1538
+ Processing by EntrancesController#index as HTML
1539
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1540
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1541
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1542
+ Rendered text template (0.0ms)
1543
+ Completed 200 OK in 12ms (Views: 1.0ms | ActiveRecord: 0.2ms)
1544
+
1545
+
1546
+ Started GET "/entrances" for 127.0.0.1 at Wed Dec 22 00:22:55 +0100 2010
1547
+ Processing by EntrancesController#index as HTML
1548
+ Redirected to http://localhost:3000/sign_in
1549
+ Completed 302 Found in 1ms
1550
+
1551
+
1552
+ Started GET "/sign_in" for 127.0.0.1 at Wed Dec 22 00:22:55 +0100 2010
1553
+ Processing by Clearance::SessionsController#new as HTML
1554
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (5.3ms)
1555
+ Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms)
1556
+
1557
+
1558
+ Started GET "/entrances.json" for 127.0.0.1 at Thu Dec 23 09:21:30 +0100 2010
1559
+
1560
+
1561
+ Started GET "/entrances.json" for 127.0.0.1 at Thu Dec 23 09:21:34 +0100 2010
1562
+
1563
+
1564
+ Started GET "/entrances.json" for 127.0.0.1 at Thu Dec 23 09:21:47 +0100 2010
1565
+ User Load (1.6ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1566
+ Processing by EntrancesController#index as JSON
1567
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1568
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 1.6ms)
1569
+
1570
+
1571
+ Started GET "/entrances.xml" for 127.0.0.1 at Thu Dec 23 09:21:51 +0100 2010
1572
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1573
+ Processing by EntrancesController#index as XML
1574
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1575
+ Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.2ms)
1576
+
1577
+
1578
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:21:54 +0100 2010
1579
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1580
+ Processing by EntrancesController#index as CSV
1581
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1582
+ Completed 406 Not Acceptable in 1ms
1583
+
1584
+
1585
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:22:56 +0100 2010
1586
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1587
+ Processing by EntrancesController#index as CSV
1588
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1589
+ Completed 406 Not Acceptable in 1ms
1590
+
1591
+
1592
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:23:07 +0100 2010
1593
+ SQL (0.2ms)  SELECT name
1594
+ FROM sqlite_master
1595
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1596
+ 
1597
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1598
+ Processing by EntrancesController#index as CSV
1599
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1600
+ Completed 406 Not Acceptable in 1ms
1601
+
1602
+
1603
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:23:57 +0100 2010
1604
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1605
+ Processing by EntrancesController#index as CSV
1606
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1607
+ Completed 406 Not Acceptable in 1ms
1608
+
1609
+
1610
+ Started GET "/entrances.json" for 127.0.0.1 at Thu Dec 23 09:24:00 +0100 2010
1611
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1612
+ Processing by EntrancesController#index as JSON
1613
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1614
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 1.0ms)
1615
+
1616
+
1617
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:24:05 +0100 2010
1618
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1619
+ Processing by EntrancesController#index as CSV
1620
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1621
+ Completed 406 Not Acceptable in 1ms
1622
+
1623
+
1624
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:25:49 +0100 2010
1625
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1626
+ Processing by EntrancesController#index as CSV
1627
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1628
+ Completed 406 Not Acceptable in 69ms
1629
+
1630
+
1631
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:25:51 +0100 2010
1632
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1633
+ Processing by EntrancesController#index as CSV
1634
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1635
+ Completed 406 Not Acceptable in 1ms
1636
+
1637
+
1638
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:25:52 +0100 2010
1639
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1640
+ Processing by EntrancesController#index as CSV
1641
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1642
+ Completed 406 Not Acceptable in 1ms
1643
+
1644
+
1645
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:25:52 +0100 2010
1646
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1647
+ Processing by EntrancesController#index as CSV
1648
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1649
+ Completed 406 Not Acceptable in 1ms
1650
+
1651
+
1652
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:25:58 +0100 2010
1653
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1654
+ Processing by EntrancesController#index as CSV
1655
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1656
+ Rendered text template (0.0ms)
1657
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 1.3ms)
1658
+
1659
+
1660
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:26:00 +0100 2010
1661
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1662
+ Processing by EntrancesController#index as CSV
1663
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1664
+ Rendered text template (0.0ms)
1665
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1666
+
1667
+
1668
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:26:54 +0100 2010
1669
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1670
+ Processing by EntrancesController#index as CSV
1671
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1672
+ Rendered text template (0.0ms)
1673
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1674
+
1675
+
1676
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 09:27:09 +0100 2010
1677
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1678
+ Processing by EntrancesController#index as CSV
1679
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1680
+ Rendered text template (0.0ms)
1681
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms)
1682
+
1683
+
1684
+ Started GET "/entrances.json" for 127.0.0.1 at Thu Dec 23 15:02:37 +0100 2010
1685
+ SQL (0.2ms)  SELECT name
1686
+ FROM sqlite_master
1687
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1688
+ 
1689
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1690
+ Processing by EntrancesController#index as JSON
1691
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1692
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.5ms)
1693
+
1694
+
1695
+ Started GET "/entrances.csv" for 127.0.0.1 at Thu Dec 23 15:02:51 +0100 2010
1696
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1697
+ Processing by EntrancesController#index as CSV
1698
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1699
+ Rendered text template (0.0ms)
1700
+ Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.2ms)
1701
+
1702
+
1703
+ Started GET "/entrances.html" for 127.0.0.1 at Thu Dec 23 15:02:57 +0100 2010
1704
+ Processing by EntrancesController#index as HTML
1705
+ Redirected to http://localhost:3000/sign_in
1706
+ Completed 302 Found in 1ms
1707
+
1708
+
1709
+ Started GET "/entrances.json" for 127.0.0.1 at Sat Dec 25 20:18:41 +0100 2010
1710
+ User Load (2.1ms) SELECT "users".* FROM "users" WHERE ("users"."email" = 'test@example.com') LIMIT 1
1711
+ Processing by EntrancesController#index as JSON
1712
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1713
+ Completed 200 OK in 46ms (Views: 24.6ms | ActiveRecord: 2.1ms)
1714
+
1715
+
1716
+ Started GET "/" for 127.0.0.1 at Sat Dec 25 20:37:26 +0100 2010
1717
+ Processing by EntrancesController#index as HTML
1718
+ User Load (1.3ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1719
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = 'bcaf2c9d42bd9f09569f048e2b82a130298982fd') LIMIT 1
1720
+ #<User id: 1, email: "test@example.com", encrypted_password: "7115c9cfbc8d39c744d9bab64ad39510c42149d0", salt: "68785635c4b13716720e14385faab240f41cc02d", confirmation_token: "34425cd955db8655c1585ebf8e7efa402d58eac7", remember_token: "bcaf2c9d42bd9f09569f048e2b82a130298982fd", email_confirmed: true, created_at: "2010-12-21 16:35:25", updated_at: "2010-12-21 16:35:25">
1721
+ Rendered text template (1.9ms)
1722
+ Completed 200 OK in 65ms (Views: 36.5ms | ActiveRecord: 1.4ms)
1723
+
1724
+
1725
+ Started GET "/resources.json" for 127.0.0.1 at Sat Dec 25 20:39:34 +0100 2010
1726
+
1727
+ ActionController::RoutingError (No route matches "/resources.json"):
1728
+
1729
+
1730
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/actionpack-3.0.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (15.9ms)
1731
+
1732
+
1733
+ Started GET "/" for 127.0.0.1 at Sat Dec 25 20:54:41 +0100 2010
1734
+ Processing by EntrancesController#index as HTML
1735
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE ("users"."remember_token" = '073a1c93ec1f364ebb46d8e51ddff3977c0b661a') LIMIT 1
1736
+ Redirected to http://localhost:3000/sign_in
1737
+ Completed 302 Found in 10ms
1738
+
1739
+
1740
+ Started GET "/sign_in" for 127.0.0.1 at Sat Dec 25 20:54:43 +0100 2010
1741
+ Processing by Clearance::SessionsController#new as HTML
1742
+ Rendered /opt/local/lib/ruby/gems/1.8/gems/gems/clearance-0.9.1/app/views/sessions/new.html.erb within layouts/application (16.8ms)
1743
+ Completed 200 OK in 31ms (Views: 30.5ms | ActiveRecord: 0.2ms)