devise-remote-user 0.1.0 → 0.2.0

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 (71) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -0
  3. data/README.md +1 -4
  4. data/Rakefile +8 -1
  5. data/devise_remote_user.gemspec +5 -1
  6. data/lib/devise_remote_user/engine.rb +10 -0
  7. data/lib/devise_remote_user/manager.rb +2 -3
  8. data/lib/devise_remote_user/version.rb +1 -1
  9. data/lib/devise_remote_user.rb +1 -11
  10. data/spec/controllers/application_controller_spec.rb +157 -0
  11. data/spec/controllers/application_controller_spec.rb~ +9 -0
  12. data/spec/dummy/README.rdoc +28 -0
  13. data/spec/dummy/Rakefile +6 -0
  14. data/spec/dummy/app/assets/images/.keep +0 -0
  15. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  16. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +11 -0
  18. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  19. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  20. data/spec/dummy/app/mailers/.keep +0 -0
  21. data/spec/dummy/app/models/.keep +0 -0
  22. data/spec/dummy/app/models/concerns/.keep +0 -0
  23. data/spec/dummy/app/models/user.rb +4 -0
  24. data/spec/dummy/app/models/user.rb~ +6 -0
  25. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/spec/dummy/bin/bundle +3 -0
  27. data/spec/dummy/bin/rails +4 -0
  28. data/spec/dummy/bin/rake +4 -0
  29. data/spec/dummy/config/application.rb +23 -0
  30. data/spec/dummy/config/boot.rb +5 -0
  31. data/spec/dummy/config/database.yml +25 -0
  32. data/spec/dummy/config/environment.rb +5 -0
  33. data/spec/dummy/config/environments/development.rb +29 -0
  34. data/spec/dummy/config/environments/production.rb +80 -0
  35. data/spec/dummy/config/environments/test.rb +36 -0
  36. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  37. data/spec/dummy/config/initializers/devise.rb +258 -0
  38. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  39. data/spec/dummy/config/initializers/inflections.rb +16 -0
  40. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  41. data/spec/dummy/config/initializers/secret_token.rb +12 -0
  42. data/spec/dummy/config/initializers/session_store.rb +3 -0
  43. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/spec/dummy/config/locales/devise.en.yml +60 -0
  45. data/spec/dummy/config/locales/en.yml +23 -0
  46. data/spec/dummy/config/routes.rb +4 -0
  47. data/spec/dummy/config.ru +4 -0
  48. data/spec/dummy/db/development.sqlite3 +0 -0
  49. data/spec/dummy/db/migrate/20131101150807_devise_create_users.rb +42 -0
  50. data/spec/dummy/db/migrate/20131101184256_add_name_fields_to_user.rb +10 -0
  51. data/spec/dummy/db/migrate/20131101184256_add_name_fields_to_user.rb~ +4 -0
  52. data/spec/dummy/db/schema.rb +38 -0
  53. data/spec/dummy/db/test.sqlite3 +0 -0
  54. data/spec/dummy/lib/assets/.keep +0 -0
  55. data/spec/dummy/log/.keep +0 -0
  56. data/spec/dummy/log/development.log +222 -0
  57. data/spec/dummy/log/test.log +1292 -0
  58. data/spec/dummy/public/404.html +58 -0
  59. data/spec/dummy/public/422.html +58 -0
  60. data/spec/dummy/public/500.html +57 -0
  61. data/spec/dummy/public/favicon.ico +0 -0
  62. data/spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  63. data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  64. data/spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  65. data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  66. data/spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  67. data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  68. data/spec/factories/user_factories.rb +6 -0
  69. data/spec/factories/user_factories.rb~ +6 -0
  70. data/spec/spec_helper.rb +18 -14
  71. metadata +161 -4
@@ -0,0 +1,1292 @@
1
+  (0.3ms) begin transaction
2
+  (0.1ms) SAVEPOINT active_record_1
3
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
4
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
5
+  (0.0ms) SAVEPOINT active_record_1
6
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
7
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
8
+  (0.1ms) rollback transaction
9
+  (0.0ms) begin transaction
10
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
11
+ Processing by AnonymousController#index as HTML
12
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
13
+  (0.0ms) SAVEPOINT active_record_1
14
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
15
+ Binary data inserted for `string` type on column `encrypted_password`
16
+ SQL (40.7ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:29:25 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$6iN7CI0GsHVYzh/cxnWwiu5h5/3k8541pmJASjmub70/DUCmCqcRq"], ["updated_at", Fri, 01 Nov 2013 18:29:25 UTC +00:00]]
17
+  (0.1ms) RELEASE SAVEPOINT active_record_1
18
+  (0.1ms) SAVEPOINT active_record_1
19
+  (0.1ms) RELEASE SAVEPOINT active_record_1
20
+  (0.1ms) SAVEPOINT active_record_1
21
+ SQL (1.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 18:29:25 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 18:29:25 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 18:29:25 UTC +00:00]]
22
+  (0.1ms) RELEASE SAVEPOINT active_record_1
23
+ Completed 200 OK in 119ms (Views: 50.4ms | ActiveRecord: 42.3ms)
24
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
25
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
26
+  (0.5ms) rollback transaction
27
+  (0.1ms) begin transaction
28
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
29
+ Processing by AnonymousController#index as HTML
30
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
31
+ Completed 401 Unauthorized in 7ms
32
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
33
+  (0.1ms) rollback transaction
34
+  (0.0ms) begin transaction
35
+  (0.1ms) SAVEPOINT active_record_1
36
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
37
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
38
+  (0.1ms) rollback transaction
39
+  (0.1ms) begin transaction
40
+  (0.1ms) SAVEPOINT active_record_1
41
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
42
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
43
+  (0.1ms) rollback transaction
44
+  (0.0ms) begin transaction
45
+ Processing by AnonymousController#index as HTML
46
+ Completed 401 Unauthorized in 1ms
47
+  (0.1ms) rollback transaction
48
+  (0.3ms) begin transaction
49
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
50
+ Processing by AnonymousController#index as HTML
51
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
52
+  (0.1ms) SAVEPOINT active_record_1
53
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
54
+ Binary data inserted for `string` type on column `encrypted_password`
55
+ SQL (2.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$5Z7R6MDzp6oosNkOd2FGSu.ipm/qu9o5YPDvnopGC09hfx7tigdBC"], ["updated_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00]]
56
+  (0.0ms) RELEASE SAVEPOINT active_record_1
57
+  (0.0ms) SAVEPOINT active_record_1
58
+  (0.0ms) RELEASE SAVEPOINT active_record_1
59
+  (0.0ms) SAVEPOINT active_record_1
60
+ SQL (1.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00]]
61
+  (0.1ms) RELEASE SAVEPOINT active_record_1
62
+ Rendered text template (0.0ms)
63
+ Completed 200 OK in 48ms (Views: 3.5ms | ActiveRecord: 3.7ms)
64
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
65
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
66
+  (21.0ms) rollback transaction
67
+  (0.1ms) begin transaction
68
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
69
+ Processing by AnonymousController#index as HTML
70
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
71
+ Completed 401 Unauthorized in 8ms
72
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
73
+  (0.1ms) rollback transaction
74
+  (0.0ms) begin transaction
75
+  (0.0ms) SAVEPOINT active_record_1
76
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
77
+ Binary data inserted for `string` type on column `encrypted_password`
78
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$8PPWRweX.O0RJ5bOROnPUuJBdYiZIyeKeMVmvzD9phH.6hEKl.Z9e"], ["updated_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00]]
79
+  (0.1ms) RELEASE SAVEPOINT active_record_1
80
+ Processing by AnonymousController#index as HTML
81
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' ORDER BY "users"."id" ASC LIMIT 1
82
+  (0.1ms) SAVEPOINT active_record_1
83
+ SQL (0.5ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00]]
84
+  (0.0ms) RELEASE SAVEPOINT active_record_1
85
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.7ms)
86
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
87
+  (0.9ms) rollback transaction
88
+  (0.1ms) begin transaction
89
+ Processing by AnonymousController#index as HTML
90
+ Completed 401 Unauthorized in 1ms
91
+  (0.1ms) rollback transaction
92
+  (0.1ms) begin transaction
93
+  (0.1ms) SAVEPOINT active_record_1
94
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
95
+ Binary data inserted for `string` type on column `encrypted_password`
96
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$CihulyI24LaQpOtVlu5ZheyYy6v/dY72aqtUEafu119U5xGvOIWli"], ["updated_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00]]
97
+  (0.0ms) RELEASE SAVEPOINT active_record_1
98
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
99
+  (0.8ms) rollback transaction
100
+  (0.1ms) begin transaction
101
+  (0.1ms) SAVEPOINT active_record_1
102
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
103
+ Binary data inserted for `string` type on column `encrypted_password`
104
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$hnc4cWDqYOnTWqq7ZoKTielZAG/Lxad31x.h8qL1M.IM/byp3TSzu"], ["updated_at", Fri, 01 Nov 2013 18:30:10 UTC +00:00]]
105
+  (0.0ms) RELEASE SAVEPOINT active_record_1
106
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
107
+  (0.8ms) rollback transaction
108
+  (0.3ms) begin transaction
109
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
110
+ Processing by AnonymousController#index as HTML
111
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
112
+  (0.1ms) SAVEPOINT active_record_1
113
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
114
+ Binary data inserted for `string` type on column `encrypted_password`
115
+ SQL (3.7ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$k1DGO6e4SpYA8JCQITZtJOlJFUo1PWczGJK6frQgMWn1vGyOSFTnu"], ["updated_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00]]
116
+  (0.1ms) RELEASE SAVEPOINT active_record_1
117
+  (0.0ms) SAVEPOINT active_record_1
118
+  (0.1ms) RELEASE SAVEPOINT active_record_1
119
+  (0.1ms) SAVEPOINT active_record_1
120
+ SQL (1.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00]]
121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
122
+ Rendered text template (0.0ms)
123
+ Completed 200 OK in 57ms (Views: 3.7ms | ActiveRecord: 5.4ms)
124
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
125
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
126
+  (0.6ms) rollback transaction
127
+  (0.0ms) begin transaction
128
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
129
+ Processing by AnonymousController#index as HTML
130
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
131
+ Completed 401 Unauthorized in 8ms
132
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
133
+  (0.1ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+  (0.1ms) SAVEPOINT active_record_1
136
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
137
+ Binary data inserted for `string` type on column `encrypted_password`
138
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$5/iO6mSbvJ0sXtqObS16z.4v10WpgWI1CsZ12lX/tv.BT.dezNXMa"], ["updated_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00]]
139
+  (0.0ms) RELEASE SAVEPOINT active_record_1
140
+  (0.0ms) SAVEPOINT active_record_1
141
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
142
+ Binary data inserted for `string` type on column `encrypted_password`
143
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$u99EW6e/KBrk3eNl7DHlW.pShkqVXGAyTplsUbWXLFzpLpqnmXVOK"], ["updated_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00]]
144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
145
+ Processing by AnonymousController#index as HTML
146
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
147
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
148
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
149
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = 2
150
+  (0.6ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+  (0.1ms) SAVEPOINT active_record_1
153
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
154
+ Binary data inserted for `string` type on column `encrypted_password`
155
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$o9WySR8mUSroL4okE.nTxu.1vAZYl2N9pt.5O/pBeuFUb.zMPTd56"], ["updated_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00]]
156
+  (0.0ms) RELEASE SAVEPOINT active_record_1
157
+ Processing by AnonymousController#index as HTML
158
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
159
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
160
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
161
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
162
+  (0.9ms) rollback transaction
163
+  (0.1ms) begin transaction
164
+  (0.1ms) SAVEPOINT active_record_1
165
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
166
+ Binary data inserted for `string` type on column `encrypted_password`
167
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$1ou3Gg12yXV9JuB6ikw.DeGsk5Ivn7hW4MgMtmybewSmkKRhrUxp6"], ["updated_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00]]
168
+  (0.0ms) RELEASE SAVEPOINT active_record_1
169
+ Processing by AnonymousController#index as HTML
170
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' ORDER BY "users"."id" ASC LIMIT 1
171
+  (0.0ms) SAVEPOINT active_record_1
172
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 18:31:54 UTC +00:00]]
173
+  (0.0ms) RELEASE SAVEPOINT active_record_1
174
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
175
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
176
+  (0.9ms) rollback transaction
177
+  (0.1ms) begin transaction
178
+ Processing by AnonymousController#index as HTML
179
+ Completed 401 Unauthorized in 1ms
180
+  (0.1ms) rollback transaction
181
+  (0.3ms) begin transaction
182
+  (0.1ms) SAVEPOINT active_record_1
183
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
184
+ Binary data inserted for `string` type on column `encrypted_password`
185
+ SQL (2.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$l8QYXILJFZXscRVtelzICeSf3gzRERBYgja5kl/j5IwVALx3LwMTe"], ["updated_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00]]
186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
187
+ Processing by AnonymousController#index as HTML
188
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' ORDER BY "users"."id" ASC LIMIT 1
189
+  (0.0ms) SAVEPOINT active_record_1
190
+ SQL (1.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00]]
191
+  (0.1ms) RELEASE SAVEPOINT active_record_1
192
+ Rendered text template (0.0ms)
193
+ Completed 200 OK in 12ms (Views: 3.7ms | ActiveRecord: 1.3ms)
194
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
195
+  (0.6ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+  (0.1ms) SAVEPOINT active_record_1
198
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
199
+ Binary data inserted for `string` type on column `encrypted_password`
200
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$UclsxNpbNOIRtStWvcKfuOI/x3i0JAwvnYaNU/UuB4UMKULIUsjdW"], ["updated_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00]]
201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
202
+  (0.0ms) SAVEPOINT active_record_1
203
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
204
+ Binary data inserted for `string` type on column `encrypted_password`
205
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$gZ6SOSSO1FfQJJGrz.P5V.cu5zugfvuJXowW6saJY4D3Z1IXVMgL6"], ["updated_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00]]
206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
207
+ Processing by AnonymousController#index as HTML
208
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
209
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
210
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
211
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
212
+  (0.6ms) rollback transaction
213
+  (0.1ms) begin transaction
214
+  (0.1ms) SAVEPOINT active_record_1
215
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
216
+ Binary data inserted for `string` type on column `encrypted_password`
217
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$oPUc95DZ5Dv81CK3JFSOB.EzIVUS0H8blS4dBz.ly1BJFtoo3Teue"], ["updated_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00]]
218
+  (0.0ms) RELEASE SAVEPOINT active_record_1
219
+ Processing by AnonymousController#index as HTML
220
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
221
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
222
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
223
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
224
+  (0.5ms) rollback transaction
225
+  (0.1ms) begin transaction
226
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
227
+ Processing by AnonymousController#index as HTML
228
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
229
+  (0.0ms) SAVEPOINT active_record_1
230
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
231
+ Binary data inserted for `string` type on column `encrypted_password`
232
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$aHETiu8D3qL0n3NdC42V8OvbMch7H4.zL/Y3TD9DJTF8f9zX00Yhy"], ["updated_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00]]
233
+  (0.0ms) RELEASE SAVEPOINT active_record_1
234
+  (0.0ms) SAVEPOINT active_record_1
235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
236
+  (0.0ms) SAVEPOINT active_record_1
237
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 18:32:24 UTC +00:00]]
238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
239
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 1.0ms)
240
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
241
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
242
+  (0.8ms) rollback transaction
243
+  (0.1ms) begin transaction
244
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
245
+ Processing by AnonymousController#index as HTML
246
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
247
+ Completed 401 Unauthorized in 8ms
248
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
249
+  (0.1ms) rollback transaction
250
+  (0.0ms) begin transaction
251
+ Processing by AnonymousController#index as HTML
252
+ Completed 401 Unauthorized in 1ms
253
+  (0.1ms) rollback transaction
254
+  (0.3ms) begin transaction
255
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
256
+ Processing by AnonymousController#index as HTML
257
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
258
+  (0.1ms) SAVEPOINT active_record_1
259
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
260
+ Binary data inserted for `string` type on column `encrypted_password`
261
+ SQL (12.7ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$bVice6arNoPQlFbFOuBmH.vbkafiOFc4Ujehb1uBiq6Obn4OvSg1e"], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
262
+  (0.1ms) RELEASE SAVEPOINT active_record_1
263
+  (0.0ms) SAVEPOINT active_record_1
264
+  (0.1ms) RELEASE SAVEPOINT active_record_1
265
+  (0.0ms) SAVEPOINT active_record_1
266
+ SQL (0.8ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
267
+  (0.1ms) RELEASE SAVEPOINT active_record_1
268
+ Rendered text template (0.0ms)
269
+ Completed 200 OK in 136ms (Views: 24.6ms | ActiveRecord: 14.2ms)
270
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
271
+ SQL (0.2ms) DELETE FROM "users" WHERE "users"."id" = 1
272
+  (0.7ms) rollback transaction
273
+  (0.1ms) begin transaction
274
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
275
+ Processing by AnonymousController#index as HTML
276
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
277
+ Completed 401 Unauthorized in 10ms
278
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
279
+  (0.1ms) rollback transaction
280
+  (0.1ms) begin transaction
281
+ Processing by AnonymousController#index as HTML
282
+ Completed 401 Unauthorized in 1ms
283
+  (0.1ms) rollback transaction
284
+  (0.1ms) begin transaction
285
+  (0.0ms) SAVEPOINT active_record_1
286
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
287
+ Binary data inserted for `string` type on column `encrypted_password`
288
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$PvIayXLe2rjjkV2jNs1k1OdzFT3o0En7IUpC30s.xyRCoE6bZXLc."], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
289
+  (0.0ms) RELEASE SAVEPOINT active_record_1
290
+  (0.0ms) SAVEPOINT active_record_1
291
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
292
+ Binary data inserted for `string` type on column `encrypted_password`
293
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$0yIR8hmnNGvwkm42OM5Ct.XZHyXekEeeFVwwY7YlzPeb67fztW7Um"], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
294
+  (0.0ms) RELEASE SAVEPOINT active_record_1
295
+ Processing by AnonymousController#index as HTML
296
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
297
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
298
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
299
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = 2
300
+  (0.8ms) rollback transaction
301
+  (0.1ms) begin transaction
302
+  (0.1ms) SAVEPOINT active_record_1
303
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
304
+ Binary data inserted for `string` type on column `encrypted_password`
305
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$RUSzVwlvz1gbgtoVMrPyWOQWs27ZXWxyIYRqSBxZY8HJFMNiC0qoK"], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
307
+ Processing by AnonymousController#index as HTML
308
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
309
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
310
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
311
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
312
+  (0.6ms) rollback transaction
313
+  (0.1ms) begin transaction
314
+ Processing by AnonymousController#index as HTML
315
+ Completed 401 Unauthorized in 1ms
316
+  (0.1ms) SAVEPOINT active_record_1
317
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
318
+ Binary data inserted for `string` type on column `encrypted_password`
319
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$9Q0RaiPxg3VT/sFT5CvkC.zrRDooEylleTlIkRdN8E7fhoD36BaJm"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
321
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
322
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
323
+  (0.7ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+  (0.1ms) SAVEPOINT active_record_1
326
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
327
+ Binary data inserted for `string` type on column `encrypted_password`
328
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$PB9y/sdDHvj95XS9gyEDPOAaMlhN/rrjkLqGBZjABb9DTECjXo9sq"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
330
+ Processing by AnonymousController#index as HTML
331
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
332
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
333
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
334
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
335
+  (0.6ms) rollback transaction
336
+  (0.0ms) begin transaction
337
+  (0.1ms) SAVEPOINT active_record_1
338
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
339
+ Binary data inserted for `string` type on column `encrypted_password`
340
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$z312eBK0fL21e6Oq7JseLeZ0.zIU5qSMazJRQLwZBtsKcSK3.ipEy"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
341
+  (0.1ms) RELEASE SAVEPOINT active_record_1
342
+ Processing by AnonymousController#index as HTML
343
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' ORDER BY "users"."id" ASC LIMIT 1
344
+  (0.0ms) SAVEPOINT active_record_1
345
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
346
+  (0.0ms) RELEASE SAVEPOINT active_record_1
347
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
348
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
349
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
350
+  (0.7ms) rollback transaction
351
+  (0.0ms) begin transaction
352
+  (0.1ms) SAVEPOINT active_record_1
353
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
354
+ Binary data inserted for `string` type on column `encrypted_password`
355
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$nv6nP8f0POdG35I3eVkCLuQC.8gfgc7yEHCnCSpNCa9d1aKud/fem"], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
357
+ Processing by AnonymousController#index as HTML
358
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
359
+  (0.0ms) SAVEPOINT active_record_1
360
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:45:00 UTC +00:00]]
361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
362
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
363
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
364
+  (0.6ms) rollback transaction
365
+  (0.3ms) begin transaction
366
+  (0.1ms) SAVEPOINT active_record_1
367
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
368
+ Binary data inserted for `string` type on column `encrypted_password`
369
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$1cFqfOdLRoWt2NS3/VazLe1o.nTnQA4OOBb5tZKVI/hZ9ezHK0UTy"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
370
+  (0.0ms) RELEASE SAVEPOINT active_record_1
371
+  (0.0ms) SAVEPOINT active_record_1
372
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
373
+ Binary data inserted for `string` type on column `encrypted_password`
374
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$VCG0YGO6XWPmCJ7tZszxUezMmtPnsAQdWs21GH4L7G7gf/q5rOmFu"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
376
+ Processing by AnonymousController#index as HTML
377
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
378
+ Rendered text template (0.0ms)
379
+ Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.1ms)
380
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
381
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
382
+  (35.8ms) rollback transaction
383
+  (0.1ms) begin transaction
384
+  (0.1ms) SAVEPOINT active_record_1
385
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
386
+ Binary data inserted for `string` type on column `encrypted_password`
387
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$FdhvESPLYfhBDWxTKVo1u.I0vFHRpRaZ7Ro85Hj/qHfCd5fH1YGdC"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
389
+ Processing by AnonymousController#index as HTML
390
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
391
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
392
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
393
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
394
+  (0.8ms) rollback transaction
395
+  (0.1ms) begin transaction
396
+ Processing by AnonymousController#index as HTML
397
+ Completed 401 Unauthorized in 8ms
398
+  (0.1ms) rollback transaction
399
+  (0.0ms) begin transaction
400
+ Processing by AnonymousController#index as HTML
401
+ Completed 401 Unauthorized in 1ms
402
+  (0.1ms) SAVEPOINT active_record_1
403
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
404
+ Binary data inserted for `string` type on column `encrypted_password`
405
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$aeRbfa2W0DS/d2AvUvNjSO4MeOBbr9FWLgg1wzQ7VLm0riHFXm5U6"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
406
+  (0.0ms) RELEASE SAVEPOINT active_record_1
407
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
408
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
409
+  (0.7ms) rollback transaction
410
+  (0.1ms) begin transaction
411
+  (0.1ms) SAVEPOINT active_record_1
412
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
413
+ Binary data inserted for `string` type on column `encrypted_password`
414
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$mk0zlF9fCjmHn2rkfqyTkeQ37/2IKDpjWZCCJLRHbwbFiGTUTlI2."], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
416
+ Processing by AnonymousController#index as HTML
417
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
418
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
419
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
420
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
421
+  (0.8ms) rollback transaction
422
+  (0.1ms) begin transaction
423
+  (0.1ms) SAVEPOINT active_record_1
424
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
425
+ Binary data inserted for `string` type on column `encrypted_password`
426
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$tZKNSeu7htA5YZAxYdXfhOM.8ihVigJeT1BCxwK6h3PxX08GxgsmW"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
427
+  (0.0ms) RELEASE SAVEPOINT active_record_1
428
+ Processing by AnonymousController#index as HTML
429
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' ORDER BY "users"."id" ASC LIMIT 1
430
+ Completed 500 Internal Server Error in 2ms
431
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
432
+  (0.7ms) rollback transaction
433
+  (0.1ms) begin transaction
434
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
435
+ Processing by AnonymousController#index as HTML
436
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
437
+  (0.0ms) SAVEPOINT active_record_1
438
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
439
+ Binary data inserted for `string` type on column `encrypted_password`
440
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$GVpWBpaeop3YkCccvhQe5.CfDEuN2tb3I0j0HmoUYw.dFDDwUFozG"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
442
+ Completed 500 Internal Server Error in 6ms
443
+  (0.8ms) rollback transaction
444
+  (0.1ms) begin transaction
445
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
446
+ Processing by AnonymousController#index as HTML
447
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
448
+ Completed 401 Unauthorized in 1ms
449
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
450
+  (0.1ms) rollback transaction
451
+  (0.0ms) begin transaction
452
+  (0.1ms) SAVEPOINT active_record_1
453
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
454
+ Binary data inserted for `string` type on column `encrypted_password`
455
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$.GGmMiYWrBcPGq9VyOfJYe1G0ba2Unb3Ulkyb.lGOPGEjcK4xI1c2"], ["updated_at", Fri, 01 Nov 2013 20:50:03 UTC +00:00]]
456
+  (0.0ms) RELEASE SAVEPOINT active_record_1
457
+ Processing by AnonymousController#index as HTML
458
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
459
+ Completed 500 Internal Server Error in 2ms
460
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
461
+  (0.6ms) rollback transaction
462
+  (0.3ms) begin transaction
463
+  (0.1ms) SAVEPOINT active_record_1
464
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
465
+ Binary data inserted for `string` type on column `encrypted_password`
466
+ SQL (2.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$yBYxhx5cgtHh34zRStgToe1X./XxB9UnHKSvaLnhc/6EUrmKXTqA."], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
468
+ Processing by AnonymousController#index as HTML
469
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' ORDER BY "users"."id" ASC LIMIT 1
470
+  (0.0ms) SAVEPOINT active_record_1
471
+ SQL (1.0ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
472
+  (0.1ms) RELEASE SAVEPOINT active_record_1
473
+ Rendered text template (0.0ms)
474
+ Completed 200 OK in 13ms (Views: 5.0ms | ActiveRecord: 1.3ms)
475
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
476
+  (0.7ms) rollback transaction
477
+  (0.1ms) begin transaction
478
+  (0.1ms) SAVEPOINT active_record_1
479
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
480
+ Binary data inserted for `string` type on column `encrypted_password`
481
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$seZHktPNufzRQRtvXw7MMOBD6.n9e3eYlajn9Ohn8n5RSaQxO8Cdm"], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
483
+  (0.0ms) SAVEPOINT active_record_1
484
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
485
+ Binary data inserted for `string` type on column `encrypted_password`
486
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$413PpzWyt6NCztyxG59mMuxpqJBSGKzRAXMm6zqLAvd1GtEaH/S8q"], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
488
+ Processing by AnonymousController#index as HTML
489
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
490
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
491
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
492
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
493
+  (0.8ms) rollback transaction
494
+  (0.1ms) begin transaction
495
+  (0.1ms) SAVEPOINT active_record_1
496
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
497
+ Binary data inserted for `string` type on column `encrypted_password`
498
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$Zvu4b7q9DHARQPRvLojxGePehxQCKMilWAdjBYJRyYasYp5OSIcku"], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
500
+ Processing by AnonymousController#index as HTML
501
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
502
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
503
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
504
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
505
+  (0.5ms) rollback transaction
506
+  (0.1ms) begin transaction
507
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
508
+ Processing by AnonymousController#index as HTML
509
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
510
+  (0.0ms) SAVEPOINT active_record_1
511
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
512
+ Binary data inserted for `string` type on column `encrypted_password`
513
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$DNHYUoky3/dEeoFMKtU16O.ekytU6CKTo6vgSmUIujDpZcoqGjKPy"], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
514
+  (0.0ms) RELEASE SAVEPOINT active_record_1
515
+  (0.0ms) SAVEPOINT active_record_1
516
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
518
+ Completed 200 OK in 6ms (Views: 0.2ms | ActiveRecord: 1.0ms)
519
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
520
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = 1
521
+  (0.6ms) rollback transaction
522
+  (0.0ms) begin transaction
523
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
524
+ Processing by AnonymousController#index as HTML
525
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
526
+ Completed 401 Unauthorized in 7ms
527
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
528
+  (0.1ms) rollback transaction
529
+  (0.0ms) begin transaction
530
+ Processing by AnonymousController#index as HTML
531
+ Completed 401 Unauthorized in 1ms
532
+  (0.1ms) rollback transaction
533
+  (0.0ms) begin transaction
534
+ Processing by AnonymousController#index as HTML
535
+ Completed 401 Unauthorized in 1ms
536
+  (0.1ms) SAVEPOINT active_record_1
537
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
538
+ Binary data inserted for `string` type on column `encrypted_password`
539
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$jcZeg8jfoal.FtbFfzrNu.i5Vrsc88WSm2a286WT9JbJZ1wYJHNiK"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
540
+  (0.0ms) RELEASE SAVEPOINT active_record_1
541
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
542
+ SQL (0.0ms) DELETE FROM "users" WHERE "users"."id" = 1
543
+  (0.6ms) rollback transaction
544
+  (0.1ms) begin transaction
545
+  (0.1ms) SAVEPOINT active_record_1
546
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
547
+ Binary data inserted for `string` type on column `encrypted_password`
548
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$C3bN.utFkghfDUlCc2BFG.AzHew.eyJU3stfWVVm/Y5LsX4eynFh6"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
550
+ Processing by AnonymousController#index as HTML
551
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
552
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
553
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
554
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
555
+  (0.8ms) rollback transaction
556
+  (0.1ms) begin transaction
557
+  (0.1ms) SAVEPOINT active_record_1
558
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
559
+ Binary data inserted for `string` type on column `encrypted_password`
560
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$NO9RIUC7FcrDhXciHVxwmuNT/oDiLa66Ur1Zri962xEuBhQc7UZoG"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
562
+ Processing by AnonymousController#index as HTML
563
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
564
+  (0.0ms) SAVEPOINT active_record_1
565
+  (0.1ms) RELEASE SAVEPOINT active_record_1
566
+  (0.0ms) SAVEPOINT active_record_1
567
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:50:49 UTC +00:00]]
568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
569
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.7ms)
570
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
571
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
572
+  (0.6ms) rollback transaction
573
+  (0.3ms) begin transaction
574
+  (0.1ms) SAVEPOINT active_record_1
575
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
576
+ Binary data inserted for `string` type on column `encrypted_password`
577
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:52:59 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$ZPk2yXWg3/wJpQealxws1ux/kuwT6/3JqEFlc1qPdK/q/OL2U2FMa"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:52:59 UTC +00:00]]
578
+  (0.1ms) RELEASE SAVEPOINT active_record_1
579
+ Processing by AnonymousController#index as HTML
580
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' ORDER BY "users"."id" ASC LIMIT 1
581
+  (0.0ms) SAVEPOINT active_record_1
582
+  (0.1ms) RELEASE SAVEPOINT active_record_1
583
+  (0.0ms) SAVEPOINT active_record_1
584
+ SQL (0.9ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:53:00 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:53:00 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:53:00 UTC +00:00]]
585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
586
+ Rendered text template (0.0ms)
587
+ Completed 200 OK in 13ms (Views: 3.8ms | ActiveRecord: 1.3ms)
588
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
589
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
590
+  (0.7ms) rollback transaction
591
+  (0.3ms) begin transaction
592
+  (0.1ms) SAVEPOINT active_record_1
593
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
594
+ Binary data inserted for `string` type on column `encrypted_password`
595
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$sL5HMvG8okMsQ99aC2mxmOJ/qAJUZL39/dHOiByb3Mqo1HhPaHfUq"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
596
+  (0.1ms) RELEASE SAVEPOINT active_record_1
597
+  (0.0ms) SAVEPOINT active_record_1
598
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
599
+ Binary data inserted for `string` type on column `encrypted_password`
600
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$3PTcKN1QkacT0F4I5Q.c1.IELw2uumxtJlG1./AGvL035xJ0X07Bm"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
601
+  (0.1ms) RELEASE SAVEPOINT active_record_1
602
+ Processing by AnonymousController#index as HTML
603
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
604
+ Rendered text template (0.0ms)
605
+ Completed 200 OK in 10ms (Views: 3.8ms | ActiveRecord: 0.1ms)
606
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
607
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
608
+  (0.7ms) rollback transaction
609
+  (0.1ms) begin transaction
610
+  (0.1ms) SAVEPOINT active_record_1
611
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
612
+ Binary data inserted for `string` type on column `encrypted_password`
613
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$qVwzh6vTvblBT0AoNDPSgez3djbAoxjSM3Sts5dmKNGKMm01FzZDK"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
615
+ Processing by AnonymousController#index as HTML
616
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
617
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms)
618
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
619
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
620
+  (0.8ms) rollback transaction
621
+  (0.1ms) begin transaction
622
+  (0.1ms) SAVEPOINT active_record_1
623
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
624
+ Binary data inserted for `string` type on column `encrypted_password`
625
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$uikXwRGBMPmAK/OnF1Oqi.EjgG5W0acDJ.T1aMkOSMvqAWIbW01A2"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
627
+ Processing by AnonymousController#index as HTML
628
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' ORDER BY "users"."id" ASC LIMIT 1
629
+  (0.1ms) SAVEPOINT active_record_1
630
+ SQL (0.5ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
631
+  (0.1ms) RELEASE SAVEPOINT active_record_1
632
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.7ms)
633
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
634
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
635
+  (0.6ms) rollback transaction
636
+  (0.1ms) begin transaction
637
+  (0.1ms) SAVEPOINT active_record_1
638
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
639
+ Binary data inserted for `string` type on column `encrypted_password`
640
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$hvHGFoD6YFLHQjLIYZWOSOjmi1VtMojDW/1Tsf4BMtPmFXX1DWzIa"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
642
+ Processing by AnonymousController#index as HTML
643
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
644
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
645
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
646
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
647
+  (0.6ms) rollback transaction
648
+  (0.1ms) begin transaction
649
+  (0.1ms) SAVEPOINT active_record_1
650
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
651
+ Binary data inserted for `string` type on column `encrypted_password`
652
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$M.hmNkQkpvF1MIcAqopzH.Ix4D/y0zW7KGFwAPVQIv89mLau/O/aW"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
653
+  (0.0ms) RELEASE SAVEPOINT active_record_1
654
+ Processing by AnonymousController#index as HTML
655
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' ORDER BY "users"."id" ASC LIMIT 1
656
+  (0.0ms) SAVEPOINT active_record_1
657
+  (0.0ms) RELEASE SAVEPOINT active_record_1
658
+  (0.0ms) SAVEPOINT active_record_1
659
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
661
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.7ms)
662
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
663
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
664
+  (0.6ms) rollback transaction
665
+  (0.1ms) begin transaction
666
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
667
+ Processing by AnonymousController#index as HTML
668
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
669
+  (0.0ms) SAVEPOINT active_record_1
670
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
671
+ Binary data inserted for `string` type on column `encrypted_password`
672
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$6GFUn5Iy1sv7YpMfVwk3N.8ykUKhzl4R0.FP.wQzNRzEaLDbMYe0G"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
674
+  (0.0ms) SAVEPOINT active_record_1
675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
676
+  (0.0ms) SAVEPOINT active_record_1
677
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
679
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 1.0ms)
680
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
681
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
682
+  (0.6ms) rollback transaction
683
+  (0.1ms) begin transaction
684
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
685
+ Processing by AnonymousController#index as HTML
686
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
687
+ Completed 401 Unauthorized in 8ms
688
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
689
+  (0.1ms) rollback transaction
690
+  (0.0ms) begin transaction
691
+ Processing by AnonymousController#index as HTML
692
+ Completed 401 Unauthorized in 1ms
693
+  (0.1ms) rollback transaction
694
+  (0.1ms) begin transaction
695
+  (0.1ms) SAVEPOINT active_record_1
696
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
697
+ Binary data inserted for `string` type on column `encrypted_password`
698
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$yhfVs/eWurSEwbOQ5FZKFe2yxK6bzKNh.Gr1sSugzXWfdkLt8AeI6"], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
700
+ Processing by AnonymousController#index as HTML
701
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
702
+  (0.0ms) SAVEPOINT active_record_1
703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
704
+  (0.0ms) SAVEPOINT active_record_1
705
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:55:14 UTC +00:00]]
706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
707
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
708
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
709
+  (0.6ms) rollback transaction
710
+  (0.3ms) begin transaction
711
+  (0.1ms) SAVEPOINT active_record_1
712
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
713
+ Binary data inserted for `string` type on column `encrypted_password`
714
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$xhFKfPgdbrk2VDz0AVsuSepmh8l4xTV.vQ5P2RF11Eu.bdbCmsNyu"], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
715
+  (0.1ms) RELEASE SAVEPOINT active_record_1
716
+  (0.0ms) SAVEPOINT active_record_1
717
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
718
+ Binary data inserted for `string` type on column `encrypted_password`
719
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$Fg7Q2NR9enmm71zQlZkpGOVQ61wla4B6jmVv4PqSO6vVSKXnOjdZm"], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
720
+  (0.0ms) RELEASE SAVEPOINT active_record_1
721
+ Processing by AnonymousController#index as HTML
722
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
723
+ Rendered text template (0.0ms)
724
+ Completed 200 OK in 8ms (Views: 3.6ms | ActiveRecord: 0.1ms)
725
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
726
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
727
+  (7.8ms) rollback transaction
728
+  (0.1ms) begin transaction
729
+  (0.1ms) SAVEPOINT active_record_1
730
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
731
+ Binary data inserted for `string` type on column `encrypted_password`
732
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$WZu8F93ixCp5C6pd72dyYe/J1l8HMfyC1RorJBzSPivS1ZoUFrrmK"], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
733
+  (0.1ms) RELEASE SAVEPOINT active_record_1
734
+ Processing by AnonymousController#index as HTML
735
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
736
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
737
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
738
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
739
+  (0.5ms) rollback transaction
740
+  (0.1ms) begin transaction
741
+ Processing by AnonymousController#index as HTML
742
+ Completed 401 Unauthorized in 9ms
743
+  (0.1ms) rollback transaction
744
+  (0.1ms) begin transaction
745
+  (0.1ms) SAVEPOINT active_record_1
746
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
747
+ Binary data inserted for `string` type on column `encrypted_password`
748
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$tI0.B50RE.TxifmnXXD3YuxJhkPwjl3Pt2EXp7YVpCQ.lWW3gdQMa"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
749
+  (0.0ms) RELEASE SAVEPOINT active_record_1
750
+ Processing by AnonymousController#index as HTML
751
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' ORDER BY "users"."id" ASC LIMIT 1
752
+  (0.1ms) SAVEPOINT active_record_1
753
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
754
+  (0.1ms) RELEASE SAVEPOINT active_record_1
755
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
756
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
757
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
758
+  (0.8ms) rollback transaction
759
+  (0.1ms) begin transaction
760
+  (0.1ms) SAVEPOINT active_record_1
761
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
762
+ Binary data inserted for `string` type on column `encrypted_password`
763
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$P4eiCCqPcxt43f1yJDyYau1vPEk0oklNu3sncvl8CQOVMoy0XxIT6"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
765
+ Processing by AnonymousController#index as HTML
766
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
767
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
768
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
769
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
770
+  (0.8ms) rollback transaction
771
+  (0.1ms) begin transaction
772
+  (0.1ms) SAVEPOINT active_record_1
773
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
774
+ Binary data inserted for `string` type on column `encrypted_password`
775
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$tpjfg7ibgJT26aZRJLUt2.eTLopGSl64FEmapdWQzT.3JhmWKWoES"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
777
+ Processing by AnonymousController#index as HTML
778
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' ORDER BY "users"."id" ASC LIMIT 1
779
+  (0.0ms) SAVEPOINT active_record_1
780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
781
+  (0.0ms) SAVEPOINT active_record_1
782
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
784
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
785
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
786
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
787
+  (0.8ms) rollback transaction
788
+  (0.1ms) begin transaction
789
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
790
+ Processing by AnonymousController#index as HTML
791
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
792
+  (0.1ms) SAVEPOINT active_record_1
793
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
794
+ Binary data inserted for `string` type on column `encrypted_password`
795
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$20r4LlqnG1ErR2O79PqVxO.nf3alEf9D2lGEIvvMuoiMYqEplZT.y"], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
796
+  (0.1ms) RELEASE SAVEPOINT active_record_1
797
+  (0.0ms) SAVEPOINT active_record_1
798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
799
+  (0.0ms) SAVEPOINT active_record_1
800
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
802
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 1.3ms)
803
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
804
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
805
+  (0.9ms) rollback transaction
806
+  (0.1ms) begin transaction
807
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
808
+ Processing by AnonymousController#index as HTML
809
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
810
+ Completed 401 Unauthorized in 1ms
811
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
812
+  (0.1ms) rollback transaction
813
+  (0.0ms) begin transaction
814
+  (0.0ms) SAVEPOINT active_record_1
815
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
816
+ Binary data inserted for `string` type on column `encrypted_password`
817
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$kbiZhcyUNWjBriAKEB9myueVGiqp590TzvrZj3ivXDWBbfR80R1N."], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
819
+ Processing by AnonymousController#index as HTML
820
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
821
+  (0.0ms) SAVEPOINT active_record_1
822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
823
+  (0.0ms) SAVEPOINT active_record_1
824
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 20:59:50 UTC +00:00]]
825
+  (0.0ms) RELEASE SAVEPOINT active_record_1
826
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.6ms)
827
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
828
+  (0.8ms) rollback transaction
829
+  (0.3ms) begin transaction
830
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
831
+ Processing by AnonymousController#index as HTML
832
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
833
+  (0.1ms) SAVEPOINT active_record_1
834
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
835
+ Binary data inserted for `string` type on column `encrypted_password`
836
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$C0r/yZTXBFle2QBGqu3N0eB3/8SLfWOaPAQ0/.pQBLQW0WtWGWN.m"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
837
+  (0.1ms) RELEASE SAVEPOINT active_record_1
838
+  (0.1ms) SAVEPOINT active_record_1
839
+ SQL (0.9ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
840
+  (0.1ms) RELEASE SAVEPOINT active_record_1
841
+ Rendered text template (0.0ms)
842
+ Completed 200 OK in 57ms (Views: 4.9ms | ActiveRecord: 3.8ms)
843
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
844
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
845
+  (0.7ms) rollback transaction
846
+  (0.1ms) begin transaction
847
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
848
+ Processing by AnonymousController#index as HTML
849
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
850
+ Completed 401 Unauthorized in 8ms
851
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
852
+  (0.1ms) rollback transaction
853
+  (0.1ms) begin transaction
854
+ Processing by AnonymousController#index as HTML
855
+ Completed 401 Unauthorized in 1ms
856
+  (0.1ms) rollback transaction
857
+  (0.1ms) begin transaction
858
+  (0.1ms) SAVEPOINT active_record_1
859
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
860
+ Binary data inserted for `string` type on column `encrypted_password`
861
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$X1OfeRXUM6jdnKv6sByUaegyZz6eOKX.Hfc2aTZNTyV0pzPnQB.aO"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
863
+  (0.0ms) SAVEPOINT active_record_1
864
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
865
+ Binary data inserted for `string` type on column `encrypted_password`
866
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$N9a2fLRYQ9/RXgGkJZI5JeDsPd.s3R89XVKt.UDHrpyDGFerU78Ye"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
868
+ Processing by AnonymousController#index as HTML
869
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
870
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
871
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
872
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
873
+  (0.6ms) rollback transaction
874
+  (0.1ms) begin transaction
875
+  (0.1ms) SAVEPOINT active_record_1
876
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
877
+ Binary data inserted for `string` type on column `encrypted_password`
878
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$XS6thklOiBISxSPXl.5Bs.Shx1JcMMyAhVw2SK9dmuaCb1Ab686Ja"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
880
+ Processing by AnonymousController#index as HTML
881
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
882
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms)
883
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
884
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
885
+  (0.6ms) rollback transaction
886
+  (0.1ms) begin transaction
887
+  (0.1ms) SAVEPOINT active_record_1
888
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
889
+ Binary data inserted for `string` type on column `encrypted_password`
890
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$J2yekOcXX.BH7KQKg.sF7O9Q31G42X3pYvp8czYvK/NpGnP00MTkS"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
892
+ Processing by AnonymousController#index as HTML
893
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' ORDER BY "users"."id" ASC LIMIT 1
894
+  (0.0ms) SAVEPOINT active_record_1
895
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
897
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.6ms)
898
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
899
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
900
+  (0.6ms) rollback transaction
901
+  (0.1ms) begin transaction
902
+  (0.1ms) SAVEPOINT active_record_1
903
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
904
+ Binary data inserted for `string` type on column `encrypted_password`
905
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$ICajgSwc.ZTFTJSgJ54fPuR7H4bnoKWz7vLdxXL54lmtVp0ytsJ.i"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
907
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
908
+  (0.5ms) rollback transaction
909
+  (0.1ms) begin transaction
910
+  (0.1ms) SAVEPOINT active_record_1
911
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
912
+ Binary data inserted for `string` type on column `encrypted_password`
913
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$Gt.M0njvh5HQKNjpQKN9O.ZSrZoNRTUTQpBNXKIO5uVg0RMdMx8aa"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
915
+ Processing by AnonymousController#index as HTML
916
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' ORDER BY "users"."id" ASC LIMIT 1
917
+  (0.0ms) SAVEPOINT active_record_1
918
+  (0.0ms) RELEASE SAVEPOINT active_record_1
919
+  (0.0ms) SAVEPOINT active_record_1
920
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
922
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.7ms)
923
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
924
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
925
+  (0.6ms) rollback transaction
926
+  (0.1ms) begin transaction
927
+  (0.1ms) SAVEPOINT active_record_1
928
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
929
+ Binary data inserted for `string` type on column `encrypted_password`
930
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$wcNZ.8jS6gxD8/l9lj52AefDSe09WbzuhLW2vZKKiLdEhCihYXI5O"], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
931
+  (0.0ms) RELEASE SAVEPOINT active_record_1
932
+ Processing by AnonymousController#index as HTML
933
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
934
+  (0.0ms) SAVEPOINT active_record_1
935
+  (0.0ms) RELEASE SAVEPOINT active_record_1
936
+  (0.0ms) SAVEPOINT active_record_1
937
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:01:30 UTC +00:00]]
938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
939
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
940
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
941
+  (0.7ms) rollback transaction
942
+  (0.3ms) begin transaction
943
+ Processing by AnonymousController#index as HTML
944
+ Completed 401 Unauthorized in 9ms
945
+ Rendered text template (0.0ms)
946
+  (0.1ms) rollback transaction
947
+  (0.1ms) begin transaction
948
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
949
+ Processing by AnonymousController#index as HTML
950
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
951
+  (0.1ms) SAVEPOINT active_record_1
952
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
953
+ Binary data inserted for `string` type on column `encrypted_password`
954
+ SQL (30.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:16 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$kcxjgQCU9q5bQoarCKMnD.MuopTz.3kxfGJR9dFmHCO8fc8Jc3DfC"], ["updated_at", Fri, 01 Nov 2013 21:02:16 UTC +00:00]]
955
+  (0.1ms) RELEASE SAVEPOINT active_record_1
956
+  (0.0ms) SAVEPOINT active_record_1
957
+ SQL (0.9ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:02:16 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:02:16 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:02:16 UTC +00:00]]
958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
959
+ Completed 200 OK in 82ms (Views: 0.3ms | ActiveRecord: 31.6ms)
960
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
961
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
962
+  (0.7ms) rollback transaction
963
+  (0.1ms) begin transaction
964
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
965
+ Processing by AnonymousController#index as HTML
966
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
967
+ Completed 401 Unauthorized in 1ms
968
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
969
+  (0.1ms) rollback transaction
970
+  (0.0ms) begin transaction
971
+  (0.1ms) SAVEPOINT active_record_1
972
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
973
+ Binary data inserted for `string` type on column `encrypted_password`
974
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$ANLwRumy4RA/QJUlIbLR6OHwdv9V7B8JZot6gs1yZ6Kk/oePNSzdy"], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
976
+  (0.0ms) SAVEPOINT active_record_1
977
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
978
+ Binary data inserted for `string` type on column `encrypted_password`
979
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$irIu1Mpq9BU8TI/ttBkwC.UFnQkAyhRfdQL9.EdoEb8YhmwSJlvrC"], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
980
+  (0.0ms) RELEASE SAVEPOINT active_record_1
981
+ Processing by AnonymousController#index as HTML
982
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
983
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
984
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
985
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
986
+  (0.6ms) rollback transaction
987
+  (0.1ms) begin transaction
988
+  (0.1ms) SAVEPOINT active_record_1
989
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
990
+ Binary data inserted for `string` type on column `encrypted_password`
991
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$4gEENqbWnrsj7O9OY3pEUe9uZ0UblwJXGOvlYETCZ.9jMUth1BWJq"], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
993
+ Processing by AnonymousController#index as HTML
994
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
995
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
996
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
997
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
998
+  (0.6ms) rollback transaction
999
+  (0.0ms) begin transaction
1000
+  (0.1ms) SAVEPOINT active_record_1
1001
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1002
+ Binary data inserted for `string` type on column `encrypted_password`
1003
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$Vga1.b3mRSVCUuo6moxg0.tnjhv9Katf/8Lst7oeQaDMWhqmOpsnK"], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
1004
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1005
+ Processing by AnonymousController#index as HTML
1006
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person5@example.com' ORDER BY "users"."id" ASC LIMIT 1
1007
+  (0.0ms) SAVEPOINT active_record_1
1008
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
1009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1010
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1011
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1012
+  (0.6ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+  (0.1ms) SAVEPOINT active_record_1
1015
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1016
+ Binary data inserted for `string` type on column `encrypted_password`
1017
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$DU5zA71rkP3Xat4ACqA.P.frh4lJ2JHfMM5THVonNRVcqJF.yNg7a"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
1018
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1019
+ Processing by AnonymousController#index as HTML
1020
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' ORDER BY "users"."id" ASC LIMIT 1
1021
+  (0.0ms) SAVEPOINT active_record_1
1022
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
1023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1024
+ Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.5ms)
1025
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1026
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1027
+  (0.6ms) rollback transaction
1028
+  (0.1ms) begin transaction
1029
+  (0.1ms) SAVEPOINT active_record_1
1030
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1031
+ Binary data inserted for `string` type on column `encrypted_password`
1032
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$MlkRBvnyljYMVbatvzkdbue2xK49q3q/FKqzAtU/Fy9l802z/bumi"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
1033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1034
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1035
+  (0.5ms) rollback transaction
1036
+  (0.1ms) begin transaction
1037
+  (0.1ms) SAVEPOINT active_record_1
1038
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1039
+ Binary data inserted for `string` type on column `encrypted_password`
1040
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$RNk0D/6nGuW7QXtIycLfi.jGw4ReMQ1KZLcPR.dyarXDuf4TNkyjC"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
1041
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1042
+ Processing by AnonymousController#index as HTML
1043
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
1044
+  (0.0ms) SAVEPOINT active_record_1
1045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1046
+  (0.0ms) SAVEPOINT active_record_1
1047
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:02:17 UTC +00:00]]
1048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1049
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
1050
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1051
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1052
+  (0.6ms) rollback transaction
1053
+  (0.3ms) begin transaction
1054
+  (0.1ms) SAVEPOINT active_record_1
1055
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1056
+ Binary data inserted for `string` type on column `encrypted_password`
1057
+ SQL (2.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$8xQirWpk80.4n6GMj9AudOe0aZ8lZvBDBykiwmihg3EK2agOPBD7G"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1058
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1059
+ Processing by AnonymousController#index as HTML
1060
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' ORDER BY "users"."id" ASC LIMIT 1
1061
+  (0.1ms) SAVEPOINT active_record_1
1062
+ SQL (0.9ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1063
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1064
+ Rendered text template (0.0ms)
1065
+ Completed 200 OK in 12ms (Views: 3.6ms | ActiveRecord: 1.2ms)
1066
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1067
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1068
+  (17.4ms) rollback transaction
1069
+  (0.1ms) begin transaction
1070
+  (0.1ms) SAVEPOINT active_record_1
1071
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1072
+ Binary data inserted for `string` type on column `encrypted_password`
1073
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$Ftur1VvX2yvkkynGPJf7fuVJOwEtTn5Q5MZOtjg3gejOvVaZm584m"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1074
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1075
+ Processing by AnonymousController#index as HTML
1076
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1077
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1078
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1079
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1080
+  (0.5ms) rollback transaction
1081
+  (0.1ms) begin transaction
1082
+  (0.1ms) SAVEPOINT active_record_1
1083
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1084
+ Binary data inserted for `string` type on column `encrypted_password`
1085
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$GibNlKp0Z1CWeLAs6UY7WeOUNyNdC3lxwN.myCt1epbTi6ClpyXYS"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1086
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1087
+ Processing by AnonymousController#index as HTML
1088
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' ORDER BY "users"."id" ASC LIMIT 1
1089
+  (0.1ms) SAVEPOINT active_record_1
1090
+ SQL (0.5ms) UPDATE "users" SET "first_name" = ?, "nickname" = ?, "last_name" = ?, "display_name" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["first_name", "Fleece"], ["nickname", "Iconoclast"], ["last_name", "Vest"], ["display_name", "Fleece Vest (Iconoclast)"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1092
+  (0.0ms) SAVEPOINT active_record_1
1093
+ SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1094
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1095
+ Completed 200 OK in 5ms (Views: 0.2ms | ActiveRecord: 0.9ms)
1096
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1097
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1098
+  (0.7ms) rollback transaction
1099
+  (0.1ms) begin transaction
1100
+ Processing by AnonymousController#index as HTML
1101
+ Completed 401 Unauthorized in 7ms
1102
+  (0.1ms) rollback transaction
1103
+  (0.0ms) begin transaction
1104
+  (0.1ms) SAVEPOINT active_record_1
1105
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1106
+ Binary data inserted for `string` type on column `encrypted_password`
1107
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$aYGoTZ40K7zFUsTvAkbQKuZbiGN5KJc0GeUC46jk00Q552Z/hgJKu"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1108
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1109
+  (0.0ms) SAVEPOINT active_record_1
1110
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1111
+ Binary data inserted for `string` type on column `encrypted_password`
1112
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$3FydICIpwR37fCrD2lc.V.9FwIycP2p012FCHbhHWqZDh2gHcfKKC"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1114
+ Processing by AnonymousController#index as HTML
1115
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
1116
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1117
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1118
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
1119
+  (0.6ms) rollback transaction
1120
+  (0.0ms) begin transaction
1121
+  (0.1ms) SAVEPOINT active_record_1
1122
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1123
+ Binary data inserted for `string` type on column `encrypted_password`
1124
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["email", "person7@example.com"], ["encrypted_password", "$2a$04$PvYay6wfRd1yzGbSjCuyUex5QwO2I9mkHUpDLRPG.XrROnfBFbxiy"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1125
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1126
+ Processing by AnonymousController#index as HTML
1127
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1128
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1129
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1130
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1131
+  (0.6ms) rollback transaction
1132
+  (0.1ms) begin transaction
1133
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1134
+ Processing by AnonymousController#index as HTML
1135
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
1136
+  (0.0ms) SAVEPOINT active_record_1
1137
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1138
+ Binary data inserted for `string` type on column `encrypted_password`
1139
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$aozNAQn8OGvjYFqNHMYQmuHsGEQxT5EDH7CLG53zqEVJmj3R4Hhmm"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1140
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1141
+  (0.0ms) SAVEPOINT active_record_1
1142
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1143
+  (0.0ms) SAVEPOINT active_record_1
1144
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1145
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1146
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 1.0ms)
1147
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1148
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1149
+  (0.6ms) rollback transaction
1150
+  (0.1ms) begin transaction
1151
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1152
+ Processing by AnonymousController#index as HTML
1153
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
1154
+ Completed 401 Unauthorized in 2ms
1155
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1156
+  (0.1ms) rollback transaction
1157
+  (0.0ms) begin transaction
1158
+  (0.1ms) SAVEPOINT active_record_1
1159
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1160
+ Binary data inserted for `string` type on column `encrypted_password`
1161
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$x6S663Kg7OGa23fYUUSokerFuEg9ChmTg6vMCCU82m1cKN5vfYQn6"], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1162
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1163
+ Processing by AnonymousController#index as HTML
1164
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person8@example.com' ORDER BY "users"."id" ASC LIMIT 1
1165
+  (0.0ms) SAVEPOINT active_record_1
1166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1167
+  (0.0ms) SAVEPOINT active_record_1
1168
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:04:50 UTC +00:00]]
1169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1170
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.7ms)
1171
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1172
+  (0.6ms) rollback transaction
1173
+  (0.3ms) begin transaction
1174
+  (0.1ms) SAVEPOINT active_record_1
1175
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person1@example.com' LIMIT 1
1176
+ Binary data inserted for `string` type on column `encrypted_password`
1177
+ SQL (2.3ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person1@example.com"], ["encrypted_password", "$2a$04$21hshE2ogni0jCTOGW60EeUHSz6g3uJVPv0i12ywDZqwlE6VwQh1u"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1178
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1179
+ Processing by AnonymousController#index as HTML
1180
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person1@example.com' ORDER BY "users"."id" ASC LIMIT 1
1181
+  (0.0ms) SAVEPOINT active_record_1
1182
+ SQL (1.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1183
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1184
+ Rendered text template (0.0ms)
1185
+ Completed 200 OK in 12ms (Views: 3.7ms | ActiveRecord: 1.3ms)
1186
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1187
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1188
+  (0.7ms) rollback transaction
1189
+  (0.1ms) begin transaction
1190
+  (0.1ms) SAVEPOINT active_record_1
1191
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person2@example.com' LIMIT 1
1192
+ Binary data inserted for `string` type on column `encrypted_password`
1193
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person2@example.com"], ["encrypted_password", "$2a$04$BrJQqEmZeO4MufTuBuhf.uTZ7bNKtK6dXCDZ80IGMMnnI0e.r2TDK"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1194
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1195
+ Processing by AnonymousController#index as HTML
1196
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1197
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1198
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1199
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1200
+  (0.6ms) rollback transaction
1201
+  (0.1ms) begin transaction
1202
+  (0.1ms) SAVEPOINT active_record_1
1203
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person3@example.com' LIMIT 1
1204
+ Binary data inserted for `string` type on column `encrypted_password`
1205
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "display_name", "email", "encrypted_password", "first_name", "last_name", "nickname", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["display_name", "Hardy HarHar"], ["email", "person3@example.com"], ["encrypted_password", "$2a$04$z3IazVVpI3jHlsdKl2QR5OF8k9a05UpjJ2b8emtANM83WbQw3oueC"], ["first_name", "Hardy"], ["last_name", "HarHar"], ["nickname", "Laurel's Buddy"], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1206
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1207
+ Processing by AnonymousController#index as HTML
1208
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person3@example.com' ORDER BY "users"."id" ASC LIMIT 1
1209
+  (0.0ms) SAVEPOINT active_record_1
1210
+ SQL (0.3ms) UPDATE "users" SET "first_name" = ?, "nickname" = ?, "last_name" = ?, "display_name" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["first_name", "Fleece"], ["nickname", "Iconoclast"], ["last_name", "Vest"], ["display_name", "Fleece Vest (Iconoclast)"], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1211
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1212
+  (0.0ms) SAVEPOINT active_record_1
1213
+ SQL (0.1ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1214
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1215
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.7ms)
1216
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1217
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1218
+  (0.6ms) rollback transaction
1219
+  (0.1ms) begin transaction
1220
+  (0.1ms) SAVEPOINT active_record_1
1221
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person4@example.com' LIMIT 1
1222
+ Binary data inserted for `string` type on column `encrypted_password`
1223
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["email", "person4@example.com"], ["encrypted_password", "$2a$04$lx8WGSyWMiDEBNCi68GwL.iDUwmRHdA4lJmlJfVdUDcOzS9zdEqru"], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1225
+ Processing by AnonymousController#index as HTML
1226
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person4@example.com' ORDER BY "users"."id" ASC LIMIT 1
1227
+  (0.0ms) SAVEPOINT active_record_1
1228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1229
+  (0.0ms) SAVEPOINT active_record_1
1230
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1231
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1232
+ Completed 200 OK in 4ms (Views: 0.2ms | ActiveRecord: 0.6ms)
1233
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1234
+  (0.6ms) rollback transaction
1235
+  (0.0ms) begin transaction
1236
+ Processing by AnonymousController#index as HTML
1237
+ Completed 401 Unauthorized in 7ms
1238
+  (0.1ms) rollback transaction
1239
+  (0.0ms) begin transaction
1240
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1241
+ Processing by AnonymousController#index as HTML
1242
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
1243
+  (0.1ms) SAVEPOINT active_record_1
1244
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1245
+ Binary data inserted for `string` type on column `encrypted_password`
1246
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["email", "foo@bar.com"], ["encrypted_password", "$2a$04$.gYqRrob0Wl.bm.r0ROhPuuavjaatuhOsEY/5X7QPoXt7Uy1taUx."], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1247
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1248
+  (0.0ms) SAVEPOINT active_record_1
1249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1250
+  (0.0ms) SAVEPOINT active_record_1
1251
+ SQL (0.4ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["last_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["current_sign_in_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1252
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1253
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 1.3ms)
1254
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1255
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1256
+  (0.6ms) rollback transaction
1257
+  (0.1ms) begin transaction
1258
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1259
+ Processing by AnonymousController#index as HTML
1260
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' ORDER BY "users"."id" ASC LIMIT 1
1261
+ Completed 401 Unauthorized in 1ms
1262
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'foo@bar.com' LIMIT 1
1263
+  (0.1ms) rollback transaction
1264
+  (0.0ms) begin transaction
1265
+  (0.1ms) SAVEPOINT active_record_1
1266
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person5@example.com' LIMIT 1
1267
+ Binary data inserted for `string` type on column `encrypted_password`
1268
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["email", "person5@example.com"], ["encrypted_password", "$2a$04$Eu66wcXvDRFiCI2dEw.Kw.dMR9bS9jRKYOIbBi.dDeDs6KCE2D66a"], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1270
+  (0.0ms) SAVEPOINT active_record_1
1271
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person6@example.com' LIMIT 1
1272
+ Binary data inserted for `string` type on column `encrypted_password`
1273
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["email", "person6@example.com"], ["encrypted_password", "$2a$04$P1MHvnkO1rACc8nNBBkkteXA7AG82OzE4UHcj./KV5yTst8NuI9A."], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1274
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1275
+ Processing by AnonymousController#index as HTML
1276
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
1277
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1278
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1279
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 2
1280
+  (0.6ms) rollback transaction
1281
+  (0.0ms) begin transaction
1282
+  (0.1ms) SAVEPOINT active_record_1
1283
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'person8@example.com' LIMIT 1
1284
+ Binary data inserted for `string` type on column `encrypted_password`
1285
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "updated_at") VALUES (?, ?, ?, ?) [["created_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00], ["email", "person8@example.com"], ["encrypted_password", "$2a$04$9e6.cS9ukJ0B1P4SDtF1Buyh6HM8KJDTt88In9EPXqJlKNNbp4o8e"], ["updated_at", Fri, 01 Nov 2013 21:09:41 UTC +00:00]]
1286
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1287
+ Processing by AnonymousController#index as HTML
1288
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
1289
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
1290
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'person7@example.com' LIMIT 1
1291
+ SQL (0.1ms) DELETE FROM "users" WHERE "users"."id" = 1
1292
+  (0.6ms) rollback transaction