dismissible_helpers 0.1.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 (91) hide show
  1. data/README.md +146 -0
  2. data/Rakefile +10 -0
  3. data/app/assets/javascripts/dismissible_helpers.coffee +26 -0
  4. data/app/controllers/dismissed_helpers_controller.rb +3 -0
  5. data/app/helpers/dismissible_helpers_helper.rb +3 -0
  6. data/lib/dismissible_helpers/controllers/dismissed_helpers.rb +18 -0
  7. data/lib/dismissible_helpers/controllers.rb +4 -0
  8. data/lib/dismissible_helpers/engine.rb +7 -0
  9. data/lib/dismissible_helpers/helpers/dismissible_helpers.rb +26 -0
  10. data/lib/dismissible_helpers/helpers.rb +4 -0
  11. data/lib/dismissible_helpers/routes.rb +5 -0
  12. data/lib/dismissible_helpers/version.rb +3 -0
  13. data/lib/dismissible_helpers.rb +11 -0
  14. data/lib/tasks/dismissible_helpers_tasks.rake +4 -0
  15. data/spec/config/active_record.rb +9 -0
  16. data/spec/config/capybara.rb +7 -0
  17. data/spec/config/cookie_jar.rb +9 -0
  18. data/spec/config/database_cleaner.rb +20 -0
  19. data/spec/config/poltergeist.rb +7 -0
  20. data/spec/config/rspec.rb +3 -0
  21. data/spec/dummy/README.rdoc +261 -0
  22. data/spec/dummy/Rakefile +7 -0
  23. data/spec/dummy/app/assets/javascripts/application.coffee +6 -0
  24. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  25. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  26. data/spec/dummy/app/controllers/landing_controller.rb +2 -0
  27. data/spec/dummy/app/controllers/sessions_controller.rb +9 -0
  28. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  29. data/spec/dummy/app/models/user.rb +7 -0
  30. data/spec/dummy/app/views/landing/show.html.erb +1 -0
  31. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  32. data/spec/dummy/config/application.rb +59 -0
  33. data/spec/dummy/config/boot.rb +10 -0
  34. data/spec/dummy/config/database.yml +11 -0
  35. data/spec/dummy/config/database.yml.example +11 -0
  36. data/spec/dummy/config/environment.rb +5 -0
  37. data/spec/dummy/config/environments/development.rb +37 -0
  38. data/spec/dummy/config/environments/production.rb +67 -0
  39. data/spec/dummy/config/environments/test.rb +37 -0
  40. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  41. data/spec/dummy/config/initializers/inflections.rb +15 -0
  42. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  43. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  44. data/spec/dummy/config/initializers/session_store.rb +8 -0
  45. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/spec/dummy/config/locales/en.yml +5 -0
  47. data/spec/dummy/config/routes.rb +6 -0
  48. data/spec/dummy/config.ru +4 -0
  49. data/spec/dummy/db/development.sqlite3 +0 -0
  50. data/spec/dummy/db/migrate/20121231010309_create_easy_auth_identities.easy_auth.rb +19 -0
  51. data/spec/dummy/db/migrate/20121231010454_create_users.rb +11 -0
  52. data/spec/dummy/db/schema.rb +40 -0
  53. data/spec/dummy/db/test.sqlite3 +0 -0
  54. data/spec/dummy/log/development.log +1489 -0
  55. data/spec/dummy/log/test.log +677 -0
  56. data/spec/dummy/public/404.html +26 -0
  57. data/spec/dummy/public/422.html +26 -0
  58. data/spec/dummy/public/500.html +25 -0
  59. data/spec/dummy/public/favicon.ico +0 -0
  60. data/spec/dummy/script/rails +6 -0
  61. data/spec/dummy/tmp/cache/assets/C4F/B20/sprockets%2F24f6108078517240a0f0797a7e5cf625 +0 -0
  62. data/spec/dummy/tmp/cache/assets/C50/D30/sprockets%2F1474665e253024aef8d1855624146e2e +0 -0
  63. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  64. data/spec/dummy/tmp/cache/assets/CE3/590/sprockets%2F60f1e97d7008b3ed41f72855a4228bb9 +0 -0
  65. data/spec/dummy/tmp/cache/assets/D0B/350/sprockets%2F0c6a94a65b00a6e80488b89705ee0c5a +0 -0
  66. data/spec/dummy/tmp/cache/assets/D0C/F20/sprockets%2F3869efaa2d2da3e0349f0106b855b782 +0 -0
  67. data/spec/dummy/tmp/cache/assets/D23/B10/sprockets%2Fc2a831ed79df487d6485a5c9c52766c2 +0 -0
  68. data/spec/dummy/tmp/cache/assets/D27/020/sprockets%2F8b458f3566dbf9370d659bd554ba8c94 +0 -0
  69. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  70. data/spec/dummy/tmp/cache/assets/D35/310/sprockets%2F4e9b874486a644b66eeef9e71945e48e +0 -0
  71. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  72. data/spec/dummy/tmp/cache/assets/D50/A10/sprockets%2F3a2c2a214dd3ba1a0e4b7f52a96522f3 +0 -0
  73. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  74. data/spec/dummy/tmp/cache/assets/D78/420/sprockets%2F854d9dd84c8d20bac9d9f741250e9b3a +0 -0
  75. data/spec/dummy/tmp/cache/assets/DAA/020/sprockets%2F7516ea1c5cf4d7b80fb9fd65153eff19 +0 -0
  76. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  77. data/spec/dummy/tmp/cache/assets/DDF/AE0/sprockets%2F1fe879e6aff943d89f3f0cca571d2bc4 +0 -0
  78. data/spec/dummy/tmp/cache/assets/DE9/260/sprockets%2Fadd025ab0eb13a6d4180af43d5df39df +0 -0
  79. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  80. data/spec/dummy/tmp/cache/assets/E72/C10/sprockets%2Fcee94ff2e026b6ecc66c7fcef96c1fc8 +0 -0
  81. data/spec/dummy/tmp/capybara/capybara-201212302021045993202744.html +29 -0
  82. data/spec/dummy/tmp/capybara/capybara-201212302021348367660995.html +29 -0
  83. data/spec/dummy/tmp/capybara/capybara-201212302023384130211415.html +29 -0
  84. data/spec/dummy/tmp/capybara/capybara-201212302103058314654716.html +29 -0
  85. data/spec/dummy/tmp/pids/server.pid +1 -0
  86. data/spec/requests/authenticated_spec.rb +15 -0
  87. data/spec/requests/step_helpers/authentication.rb +7 -0
  88. data/spec/requests/unauthenticated_spec.rb +13 -0
  89. data/spec/spec_helper.rb +31 -0
  90. data/spec/support/factories.rb +7 -0
  91. metadata +393 -0
@@ -0,0 +1,677 @@
1
+ Connecting to database specified by database.yml
2
+  (0.3ms) begin transaction
3
+  (0.0ms) rollback transaction
4
+ Connecting to database specified by database.yml
5
+  (0.3ms) begin transaction
6
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:50:57 -0500
7
+ Processing by LandingController#show as HTML
8
+ Rendered landing/show.html.erb within layouts/application (35.6ms)
9
+ Completed 200 OK in 48ms (Views: 47.5ms | ActiveRecord: 0.0ms)
10
+  (0.1ms) rollback transaction
11
+ Connecting to database specified by database.yml
12
+  (0.3ms) begin transaction
13
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:52:02 -0500
14
+ Processing by LandingController#show as HTML
15
+ Rendered landing/show.html.erb within layouts/application (32.6ms)
16
+ Completed 200 OK in 43ms (Views: 42.3ms | ActiveRecord: 0.0ms)
17
+  (0.1ms) rollback transaction
18
+ Connecting to database specified by database.yml
19
+  (0.3ms) begin transaction
20
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:52:27 -0500
21
+ Processing by LandingController#show as HTML
22
+ Rendered landing/show.html.erb within layouts/application (6.9ms)
23
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
24
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 17:52:27 -0500
25
+ Compiled application.css (0ms) (pid 86903)
26
+ Served asset /application.css - 200 OK (7ms)
27
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 17:52:27 -0500
28
+ Compiled jquery.js (1ms) (pid 86903)
29
+ Compiled jquery_ujs.js (0ms) (pid 86903)
30
+ Compiled dismissible_helpers.js (65ms) (pid 86903)
31
+ Compiled application.js (207ms) (pid 86903)
32
+ Served asset /application.js - 200 OK (221ms)
33
+  (0.1ms) rollback transaction
34
+ Connecting to database specified by database.yml
35
+  (0.3ms) begin transaction
36
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:53:52 -0500
37
+ Processing by LandingController#show as HTML
38
+ Rendered landing/show.html.erb within layouts/application (6.0ms)
39
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
40
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 17:53:52 -0500
41
+ Served asset /application.css - 200 OK (5ms)
42
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 17:53:52 -0500
43
+ Served asset /application.js - 200 OK (4ms)
44
+  (0.1ms) rollback transaction
45
+ Connecting to database specified by database.yml
46
+  (0.3ms) begin transaction
47
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:54:28 -0500
48
+ Processing by LandingController#show as HTML
49
+ Rendered landing/show.html.erb within layouts/application (34.6ms)
50
+ Completed 200 OK in 46ms (Views: 45.4ms | ActiveRecord: 0.0ms)
51
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 17:54:28 -0500
52
+ Served asset /application.css - 200 OK (2ms)
53
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 17:54:28 -0500
54
+ Served asset /application.js - 200 OK (5ms)
55
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-28 17:54:28 -0500
56
+ Processing by DismissedHelpersController#create as JSON
57
+ Parameters: {"helper"=>"helper"}
58
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
59
+  (0.1ms) rollback transaction
60
+ Connecting to database specified by database.yml
61
+  (0.3ms) begin transaction
62
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:54:58 -0500
63
+ Processing by LandingController#show as HTML
64
+ Rendered landing/show.html.erb within layouts/application (35.2ms)
65
+ Completed 200 OK in 47ms (Views: 46.1ms | ActiveRecord: 0.0ms)
66
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 17:54:58 -0500
67
+ Served asset /application.css - 200 OK (2ms)
68
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 17:54:58 -0500
69
+ Served asset /application.js - 200 OK (5ms)
70
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-28 17:54:58 -0500
71
+ Processing by DismissedHelpersController#create as JSON
72
+ Parameters: {"helper"=>"helper"}
73
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
74
+  (0.1ms) rollback transaction
75
+ Connecting to database specified by database.yml
76
+  (0.3ms) begin transaction
77
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:56:00 -0500
78
+ Processing by LandingController#show as HTML
79
+ Rendered landing/show.html.erb within layouts/application (34.9ms)
80
+ Completed 200 OK in 45ms (Views: 45.1ms | ActiveRecord: 0.0ms)
81
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 17:56:00 -0500
82
+ Served asset /application.css - 200 OK (3ms)
83
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 17:56:00 -0500
84
+ Compiled application.js (57ms) (pid 87287)
85
+ Served asset /application.js - 200 OK (100ms)
86
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-28 17:56:00 -0500
87
+ Processing by DismissedHelpersController#create as JSON
88
+ Parameters: {"helper"=>"helper"}
89
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
90
+  (0.1ms) rollback transaction
91
+ Connecting to database specified by database.yml
92
+  (0.3ms) begin transaction
93
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:56:51 -0500
94
+ Processing by LandingController#show as HTML
95
+ Rendered landing/show.html.erb within layouts/application (35.4ms)
96
+ Completed 200 OK in 46ms (Views: 45.7ms | ActiveRecord: 0.0ms)
97
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 17:56:51 -0500
98
+ Served asset /application.css - 200 OK (3ms)
99
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 17:56:51 -0500
100
+ Served asset /application.js - 200 OK (5ms)
101
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-28 17:56:51 -0500
102
+ Processing by DismissedHelpersController#create as JSON
103
+ Parameters: {"helper"=>"helper"}
104
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
105
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:56:53 -0500
106
+ Processing by LandingController#show as HTML
107
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
108
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
109
+  (0.1ms) rollback transaction
110
+ Connecting to database specified by database.yml
111
+  (0.3ms) begin transaction
112
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:57:13 -0500
113
+ Processing by LandingController#show as HTML
114
+ Rendered landing/show.html.erb within layouts/application (34.8ms)
115
+ Completed 200 OK in 45ms (Views: 45.1ms | ActiveRecord: 0.0ms)
116
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 17:57:13 -0500
117
+ Served asset /application.css - 200 OK (3ms)
118
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 17:57:13 -0500
119
+ Served asset /application.js - 200 OK (5ms)
120
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-28 17:57:13 -0500
121
+ Processing by DismissedHelpersController#create as JSON
122
+ Parameters: {"helper"=>"helper"}
123
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
124
+ Started GET "/" for 127.0.0.1 at 2012-12-28 17:57:14 -0500
125
+ Processing by LandingController#show as HTML
126
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
127
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
128
+  (0.1ms) rollback transaction
129
+ Started GET "/" for 127.0.0.1 at 2012-12-28 18:16:38 -0500
130
+ Processing by LandingController#show as HTML
131
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
132
+ Connecting to database specified by database.yml
133
+  (0.3ms) begin transaction
134
+ Started GET "/" for 127.0.0.1 at 2012-12-28 18:23:53 -0500
135
+ Processing by LandingController#show as HTML
136
+ Rendered landing/show.html.erb within layouts/application (36.6ms)
137
+ Completed 200 OK in 48ms (Views: 47.1ms | ActiveRecord: 0.0ms)
138
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 18:23:53 -0500
139
+ Served asset /application.css - 200 OK (2ms)
140
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 18:23:53 -0500
141
+ Served asset /application.js - 200 OK (4ms)
142
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-28 18:23:53 -0500
143
+ Processing by DismissedHelpersController#create as JSON
144
+ Parameters: {"helper"=>"helper"}
145
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
146
+ Started GET "/" for 127.0.0.1 at 2012-12-28 18:23:54 -0500
147
+ Processing by LandingController#show as HTML
148
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
149
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
150
+  (0.1ms) rollback transaction
151
+ Connecting to database specified by database.yml
152
+  (0.3ms) begin transaction
153
+ Started GET "/" for 127.0.0.1 at 2012-12-28 19:12:08 -0500
154
+ Processing by LandingController#show as HTML
155
+ Rendered landing/show.html.erb within layouts/application (37.1ms)
156
+ Completed 200 OK in 51ms (Views: 50.1ms | ActiveRecord: 0.0ms)
157
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-28 19:12:08 -0500
158
+ Served asset /application.css - 200 OK (2ms)
159
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-28 19:12:08 -0500
160
+ Served asset /application.js - 200 OK (4ms)
161
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-28 19:12:08 -0500
162
+ Processing by DismissedHelpersController#create as JSON
163
+ Parameters: {"helper"=>"helper"}
164
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
165
+ Started GET "/" for 127.0.0.1 at 2012-12-28 19:12:09 -0500
166
+ Processing by LandingController#show as HTML
167
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
168
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
169
+  (0.1ms) rollback transaction
170
+ Connecting to database specified by database.yml
171
+  (0.3ms) begin transaction
172
+ Started GET "/" for 127.0.0.1 at 2012-12-29 07:40:33 -0500
173
+ Processing by LandingController#show as HTML
174
+ Rendered landing/show.html.erb within layouts/application (9.3ms)
175
+ Completed 200 OK in 22ms (Views: 22.1ms | ActiveRecord: 0.0ms)
176
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-29 07:40:33 -0500
177
+ Served asset /application.css - 200 OK (5ms)
178
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-29 07:40:33 -0500
179
+ Served asset /application.js - 200 OK (17ms)
180
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-29 07:40:33 -0500
181
+ Processing by DismissedHelpersController#create as JSON
182
+ Parameters: {"helper"=>"helper"}
183
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
184
+ Started GET "/" for 127.0.0.1 at 2012-12-29 07:40:34 -0500
185
+ Processing by LandingController#show as HTML
186
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
187
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
188
+  (0.1ms) rollback transaction
189
+ Connecting to database specified by database.yml
190
+ Started GET "/" for 127.0.0.1 at 2012-12-29 08:33:11 -0500
191
+ Processing by LandingController#show as HTML
192
+ Rendered landing/show.html.erb within layouts/application (67.0ms)
193
+ Completed 200 OK in 114ms (Views: 111.0ms | ActiveRecord: 0.0ms)
194
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-29 08:33:11 -0500
195
+ Compiled jquery.js (35ms) (pid 95082)
196
+ Compiled jquery_ujs.js (3ms) (pid 95082)
197
+ Compiled application.js (335ms) (pid 95082)
198
+ Served asset /application.js - 200 OK (371ms)
199
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-29 08:33:12 -0500
200
+ Served asset /application.css - 200 OK (13ms)
201
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-29 08:33:12 -0500
202
+ Processing by DismissedHelpersController#create as JSON
203
+ Parameters: {"helper"=>"helper"}
204
+ Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.0ms)
205
+ Started GET "/" for 127.0.0.1 at 2012-12-29 08:33:13 -0500
206
+ Processing by LandingController#show as HTML
207
+ Rendered landing/show.html.erb within layouts/application (1.0ms)
208
+ Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.0ms)
209
+  (1.0ms)  SELECT name
210
+ FROM sqlite_master
211
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
212
+ 
213
+ Connecting to database specified by database.yml
214
+ Connecting to database specified by database.yml
215
+  (0.1ms) select sqlite_version(*)
216
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
217
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
218
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
219
+ Migrating to CreateEasyAuthIdentities (20121231010309)
220
+  (0.0ms) begin transaction
221
+  (0.4ms) CREATE TABLE "identities" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar(255), "token" varchar(255), "account_type" varchar(255), "account_id" integer, "reset_token" varchar(255), "remember_token" varchar(255), "type" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
222
+  (0.1ms) CREATE INDEX "index_identities_on_username" ON "identities" ("username")
223
+  (0.1ms) CREATE INDEX "index_identities_on_reset_token" ON "identities" ("reset_token")
224
+  (0.1ms) CREATE INDEX "index_identities_on_remember_token" ON "identities" ("remember_token")
225
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121231010309')
226
+  (0.6ms) commit transaction
227
+ Migrating to CreateUsers (20121231010454)
228
+  (0.0ms) begin transaction
229
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "session_token" varchar(255), "dismissed_helpers" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
230
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20121231010454')
231
+  (0.4ms) commit transaction
232
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
233
+ Connecting to database specified by database.yml
234
+  (0.1ms) begin transaction
235
+  (0.0ms) SAVEPOINT active_record_1
236
+ SQL (4.0ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:17:46 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:17:46 UTC +00:00]]
237
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
238
+ Binary data inserted for `string` type on column `token`
239
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:17:46 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$r1q1URJM1iAoT3GmqC8JsePirrWycEMgvcAPOb4RcDyohXEXIND6q"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:17:46 UTC +00:00], ["username", "test@example.com"]]
240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
241
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:17:49 -0500
242
+ Processing by SessionsController#new as HTML
243
+ Parameters: {"identity"=>:password}
244
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (40.5ms)
245
+ Completed 200 OK in 52ms (Views: 51.4ms | ActiveRecord: 0.0ms)
246
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:17:49 -0500
247
+ Compiled application.css (0ms) (pid 7288)
248
+ Served asset /application.css - 200 OK (6ms)
249
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:17:49 -0500
250
+ Compiled jquery.js (1ms) (pid 7288)
251
+ Compiled jquery_ujs.js (0ms) (pid 7288)
252
+ Compiled dismissible_helpers.js (63ms) (pid 7288)
253
+ Compiled application.js (169ms) (pid 7288)
254
+ Served asset /application.js - 200 OK (177ms)
255
+  (2.0ms) rollback transaction
256
+  (1.2ms) DELETE FROM "identities";
257
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
258
+  (0.8ms) DELETE FROM "users";
259
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
260
+  (0.1ms) begin transaction
261
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:17:51 -0500
262
+ Processing by LandingController#show as HTML
263
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
264
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:17:51 -0500
265
+ Processing by DismissedHelpersController#create as JSON
266
+ Parameters: {"helper"=>"helper"}
267
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
268
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:17:52 -0500
269
+ Processing by LandingController#show as HTML
270
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
271
+  (0.1ms) rollback transaction
272
+  (2.6ms) DELETE FROM "identities";
273
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
274
+  (0.8ms) DELETE FROM "users";
275
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
276
+  (4.4ms) DELETE FROM "identities";
277
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
278
+  (1.0ms) DELETE FROM "users";
279
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
280
+ Connecting to database specified by database.yml
281
+  (0.1ms) begin transaction
282
+  (0.0ms) SAVEPOINT active_record_1
283
+ SQL (4.1ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:18:25 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:18:25 UTC +00:00]]
284
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
285
+ Binary data inserted for `string` type on column `token`
286
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:18:25 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$TelCulLkGMdCevCT37xFu.9xK.H.QnKO9sIb7PqI.xXXZG98JGZ.S"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:18:25 UTC +00:00], ["username", "test@example.com"]]
287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
288
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:18:27 -0500
289
+ Processing by SessionsController#new as HTML
290
+ Parameters: {"identity"=>:password}
291
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (40.2ms)
292
+ Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
293
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:18:27 -0500
294
+ Served asset /application.css - 200 OK (2ms)
295
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:18:27 -0500
296
+ Served asset /application.js - 200 OK (4ms)
297
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:18:27 -0500
298
+ Processing by SessionsController#create as HTML
299
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
300
+ Identities::Password Load (0.1ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
301
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (1.7ms)
302
+ Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 0.4ms)
303
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:18:27 -0500
304
+ Processing by LandingController#show as HTML
305
+ Rendered landing/show.html.erb within layouts/application (0.6ms)
306
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
307
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:18:27 -0500
308
+ Processing by DismissedHelpersController#create as JSON
309
+ Parameters: {"helper"=>"helper"}
310
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
311
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:18:28 -0500
312
+ Processing by LandingController#show as HTML
313
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
314
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
315
+  (1.8ms) rollback transaction
316
+  (1.0ms) DELETE FROM "identities";
317
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
318
+  (0.7ms) DELETE FROM "users";
319
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
320
+  (0.1ms) begin transaction
321
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:18:28 -0500
322
+ Processing by LandingController#show as HTML
323
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
324
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:18:28 -0500
325
+ Processing by DismissedHelpersController#create as JSON
326
+ Parameters: {"helper"=>"helper"}
327
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
328
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:18:29 -0500
329
+ Processing by LandingController#show as HTML
330
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
331
+  (0.1ms) rollback transaction
332
+  (2.6ms) DELETE FROM "identities";
333
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
334
+  (0.8ms) DELETE FROM "users";
335
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
336
+  (2.7ms) DELETE FROM "identities";
337
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
338
+  (0.9ms) DELETE FROM "users";
339
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
340
+ Connecting to database specified by database.yml
341
+  (0.1ms) begin transaction
342
+  (0.0ms) SAVEPOINT active_record_1
343
+ SQL (3.9ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:19:46 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:19:46 UTC +00:00]]
344
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
345
+ Binary data inserted for `string` type on column `token`
346
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:19:46 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$DnF0FS7YaLiJM9pth6AQx.Ao2KL3VuHR70TaFaVwdEuPMu4R3ioTS"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:19:46 UTC +00:00], ["username", "test@example.com"]]
347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
348
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:19:49 -0500
349
+ Processing by SessionsController#new as HTML
350
+ Parameters: {"identity"=>:password}
351
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (11.4ms)
352
+ Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.0ms)
353
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:19:49 -0500
354
+ Served asset /application.css - 200 OK (3ms)
355
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:19:49 -0500
356
+ Served asset /application.js - 200 OK (4ms)
357
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:19:49 -0500
358
+ Processing by SessionsController#create as HTML
359
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
360
+ Identities::Password Load (0.1ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
361
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (1.6ms)
362
+ Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.5ms)
363
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:19:49 -0500
364
+ Processing by LandingController#show as HTML
365
+ Rendered landing/show.html.erb within layouts/application (0.6ms)
366
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
367
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:19:49 -0500
368
+ Processing by DismissedHelpersController#create as JSON
369
+ Parameters: {"helper"=>"helper"}
370
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
371
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:19:50 -0500
372
+ Processing by LandingController#show as HTML
373
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
374
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
375
+ Started GET "/sign_out" for 127.0.0.1 at 2012-12-30 20:19:50 -0500
376
+ Processing by SessionsController#destroy as HTML
377
+ Redirected to http://127.0.0.1:3999/
378
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
379
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:19:50 -0500
380
+ Processing by LandingController#show as HTML
381
+ Rendered landing/show.html.erb within layouts/application (0.2ms)
382
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
383
+  (1.9ms) rollback transaction
384
+  (1.0ms) DELETE FROM "identities";
385
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
386
+  (0.6ms) DELETE FROM "users";
387
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
388
+  (0.1ms) begin transaction
389
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:19:52 -0500
390
+ Processing by LandingController#show as HTML
391
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
392
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:19:52 -0500
393
+ Processing by DismissedHelpersController#create as JSON
394
+ Parameters: {"helper"=>"helper"}
395
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
396
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:19:53 -0500
397
+ Processing by LandingController#show as HTML
398
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
399
+  (0.1ms) rollback transaction
400
+  (2.5ms) DELETE FROM "identities";
401
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
402
+  (0.9ms) DELETE FROM "users";
403
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
404
+  (2.7ms) DELETE FROM "identities";
405
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
406
+  (0.7ms) DELETE FROM "users";
407
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
408
+ Connecting to database specified by database.yml
409
+  (0.1ms) begin transaction
410
+  (0.0ms) SAVEPOINT active_record_1
411
+ SQL (4.2ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:20:15 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:20:15 UTC +00:00]]
412
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
413
+ Binary data inserted for `string` type on column `token`
414
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:20:15 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$10GAa0DM9fNgqE5flgpyiuT3Udtidf1Nyt5Q.C05zvrYv8K0CKISW"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:20:15 UTC +00:00], ["username", "test@example.com"]]
415
+  (0.0ms) RELEASE SAVEPOINT active_record_1
416
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:20:17 -0500
417
+ Processing by SessionsController#new as HTML
418
+ Parameters: {"identity"=>:password}
419
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (12.2ms)
420
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
421
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:20:17 -0500
422
+ Served asset /application.css - 200 OK (2ms)
423
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:20:17 -0500
424
+ Served asset /application.js - 200 OK (4ms)
425
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:20:17 -0500
426
+ Processing by SessionsController#create as HTML
427
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
428
+ Identities::Password Load (0.1ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
429
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (1.8ms)
430
+ Completed 200 OK in 6ms (Views: 2.9ms | ActiveRecord: 0.5ms)
431
+  (1.9ms) rollback transaction
432
+  (1.1ms) DELETE FROM "identities";
433
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
434
+  (0.8ms) DELETE FROM "users";
435
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
436
+  (0.1ms) begin transaction
437
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:20:19 -0500
438
+ Processing by LandingController#show as HTML
439
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
440
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:20:19 -0500
441
+ Processing by DismissedHelpersController#create as JSON
442
+ Parameters: {"helper"=>"helper"}
443
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
444
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:20:20 -0500
445
+ Processing by LandingController#show as HTML
446
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
447
+  (0.1ms) rollback transaction
448
+  (2.6ms) DELETE FROM "identities";
449
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
450
+  (1.1ms) DELETE FROM "users";
451
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
452
+  (3.0ms) DELETE FROM "identities";
453
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
454
+  (1.0ms) DELETE FROM "users";
455
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
456
+ Connecting to database specified by database.yml
457
+  (0.1ms) begin transaction
458
+  (0.0ms) SAVEPOINT active_record_1
459
+ SQL (4.1ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:20:54 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:20:54 UTC +00:00]]
460
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
461
+ Binary data inserted for `string` type on column `token`
462
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:20:54 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$3aQjXu7P317aOGJgWZ8gxOxtiZSkkvM0W.5wFhULyNdXM94e5EH6u"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:20:54 UTC +00:00], ["username", "test@example.com"]]
463
+  (0.0ms) RELEASE SAVEPOINT active_record_1
464
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:20:56 -0500
465
+ Processing by SessionsController#new as HTML
466
+ Parameters: {"identity"=>:password}
467
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (46.2ms)
468
+ Completed 200 OK in 59ms (Views: 57.7ms | ActiveRecord: 0.0ms)
469
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:20:57 -0500
470
+ Served asset /application.css - 200 OK (3ms)
471
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:20:57 -0500
472
+ Served asset /application.js - 200 OK (4ms)
473
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:21:30 -0500
474
+ Processing by SessionsController#create as HTML
475
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
476
+ Identities::Password Load (0.2ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
477
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (4.7ms)
478
+ Completed 200 OK in 12ms (Views: 7.1ms | ActiveRecord: 0.7ms)
479
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:23:06 -0500
480
+ Processing by SessionsController#create as HTML
481
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
482
+ Identities::Password Load (0.3ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
483
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (4.9ms)
484
+ Completed 200 OK in 10ms (Views: 7.3ms | ActiveRecord: 0.3ms)
485
+  (0.3ms) rollback transaction
486
+  (2.7ms) DELETE FROM "identities";
487
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
488
+  (1.0ms) DELETE FROM "users";
489
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
490
+  (0.1ms) begin transaction
491
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:23:08 -0500
492
+ Processing by LandingController#show as HTML
493
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
494
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:23:08 -0500
495
+ Processing by DismissedHelpersController#create as JSON
496
+ Parameters: {"helper"=>"helper"}
497
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
498
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:23:09 -0500
499
+ Processing by LandingController#show as HTML
500
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
501
+  (0.1ms) rollback transaction
502
+  (2.4ms) DELETE FROM "identities";
503
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
504
+  (0.9ms) DELETE FROM "users";
505
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
506
+  (2.8ms) DELETE FROM "identities";
507
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
508
+  (1.1ms) DELETE FROM "users";
509
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
510
+ Connecting to database specified by database.yml
511
+  (0.1ms) begin transaction
512
+  (0.0ms) SAVEPOINT active_record_1
513
+ SQL (4.0ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:23:18 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:23:18 UTC +00:00]]
514
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
515
+ Binary data inserted for `string` type on column `token`
516
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:23:18 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$h0OyiiKsAI5POaI7pF4q2u0aPrvHXbFQWJ50WX.vrdjkTwb4MgpaK"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:23:18 UTC +00:00], ["username", "test@example.com"]]
517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
518
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:23:20 -0500
519
+ Processing by SessionsController#new as HTML
520
+ Parameters: {"identity"=>:password}
521
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (11.0ms)
522
+ Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms)
523
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:23:20 -0500
524
+ Served asset /application.css - 200 OK (2ms)
525
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:23:20 -0500
526
+ Served asset /application.js - 200 OK (4ms)
527
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:23:24 -0500
528
+ Processing by SessionsController#create as HTML
529
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
530
+ Identities::Password Load (0.1ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
531
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (3.8ms)
532
+ Completed 200 OK in 10ms (Views: 5.7ms | ActiveRecord: 0.6ms)
533
+  (0.3ms) rollback transaction
534
+  (1.0ms) DELETE FROM "identities";
535
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
536
+  (0.8ms) DELETE FROM "users";
537
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
538
+  (0.1ms) begin transaction
539
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:23:48 -0500
540
+ Processing by LandingController#show as HTML
541
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
542
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:23:48 -0500
543
+ Processing by DismissedHelpersController#create as JSON
544
+ Parameters: {"helper"=>"helper"}
545
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
546
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:23:49 -0500
547
+ Processing by LandingController#show as HTML
548
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
549
+  (0.1ms) rollback transaction
550
+  (2.3ms) DELETE FROM "identities";
551
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
552
+  (0.6ms) DELETE FROM "users";
553
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
554
+  (2.3ms) DELETE FROM "identities";
555
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
556
+  (0.6ms) DELETE FROM "users";
557
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
558
+ Connecting to database specified by database.yml
559
+ Connecting to database specified by database.yml
560
+  (0.1ms) begin transaction
561
+  (0.0ms) SAVEPOINT active_record_1
562
+ SQL (4.0ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:27:18 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:27:18 UTC +00:00]]
563
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
564
+ Binary data inserted for `string` type on column `token`
565
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:27:18 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$YoMwv1346Hy5hDzFT3NX4uClU8hzyITbvGdY4l/fqKVjyrOWFh40q"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:27:18 UTC +00:00], ["username", "test@example.com"]]
566
+  (0.0ms) RELEASE SAVEPOINT active_record_1
567
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:27:20 -0500
568
+ Processing by SessionsController#new as HTML
569
+ Parameters: {"identity"=>:password}
570
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (11.9ms)
571
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms)
572
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:27:20 -0500
573
+ Served asset /application.css - 200 OK (2ms)
574
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:27:20 -0500
575
+ Served asset /application.js - 200 OK (5ms)
576
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:27:31 -0500
577
+ Processing by SessionsController#create as HTML
578
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
579
+ Identities::Password Load (0.2ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
580
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (3.9ms)
581
+ Completed 200 OK in 10ms (Views: 5.9ms | ActiveRecord: 0.7ms)
582
+  (0.4ms) rollback transaction
583
+  (2.3ms) DELETE FROM "identities";
584
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
585
+  (0.8ms) DELETE FROM "users";
586
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'users';
587
+  (0.1ms) begin transaction
588
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:28:07 -0500
589
+ Processing by LandingController#show as HTML
590
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
591
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 20:28:07 -0500
592
+ Processing by DismissedHelpersController#create as JSON
593
+ Parameters: {"helper"=>"helper"}
594
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
595
+ Started GET "/" for 127.0.0.1 at 2012-12-30 20:28:08 -0500
596
+ Processing by LandingController#show as HTML
597
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
598
+  (0.1ms) rollback transaction
599
+  (2.2ms) DELETE FROM "identities";
600
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
601
+  (0.6ms) DELETE FROM "users";
602
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
603
+  (2.3ms) DELETE FROM "identities";
604
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'identities';
605
+  (0.7ms) DELETE FROM "users";
606
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
607
+ Connecting to database specified by database.yml
608
+  (0.1ms) begin transaction
609
+  (0.0ms) SAVEPOINT active_record_1
610
+ SQL (3.9ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 01:28:36 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 01:28:36 UTC +00:00]]
611
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
612
+ Binary data inserted for `string` type on column `token`
613
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 01:28:36 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$d9ZFS3bUnGxlXpBwwoNMAed.A18.ThMmC9sA25HnxlFqmby4jfjk."], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 01:28:36 UTC +00:00], ["username", "test@example.com"]]
614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
615
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 20:28:38 -0500
616
+ Processing by SessionsController#new as HTML
617
+ Parameters: {"identity"=>:password}
618
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (38.3ms)
619
+ Completed 200 OK in 50ms (Views: 49.1ms | ActiveRecord: 0.0ms)
620
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 20:28:38 -0500
621
+ Served asset /application.css - 200 OK (2ms)
622
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 20:28:38 -0500
623
+ Served asset /application.js - 200 OK (4ms)
624
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 20:28:40 -0500
625
+ Processing by SessionsController#create as HTML
626
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
627
+  (0.3ms) rollback transaction
628
+  (2.4ms) DELETE FROM "identities";
629
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
630
+ Connecting to database specified by database.yml
631
+  (0.1ms) begin transaction
632
+  (0.0ms) SAVEPOINT active_record_1
633
+ SQL (6.2ms) INSERT INTO "users" ("created_at", "dismissed_helpers", "email", "session_token", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Mon, 31 Dec 2012 02:03:03 UTC +00:00], ["dismissed_helpers", nil], ["email", "test@example.com"], ["session_token", nil], ["updated_at", Mon, 31 Dec 2012 02:03:03 UTC +00:00]]
634
+ Identities::Password Exists (0.1ms) SELECT 1 AS one FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND LOWER("identities"."username") = LOWER('test@example.com') LIMIT 1
635
+ Binary data inserted for `string` type on column `token`
636
+ SQL (0.4ms) INSERT INTO "identities" ("account_id", "account_type", "created_at", "remember_token", "reset_token", "token", "type", "updated_at", "username") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["account_id", 1], ["account_type", "User"], ["created_at", Mon, 31 Dec 2012 02:03:03 UTC +00:00], ["remember_token", nil], ["reset_token", nil], ["token", "$2a$10$UEV/6Gan2MRiO2ULm6K9de4IssPHD1OtOpz3vhtiVU/IVUtn1fy9O"], ["type", "Identities::Password"], ["updated_at", Mon, 31 Dec 2012 02:03:03 UTC +00:00], ["username", "test@example.com"]]
637
+  (0.0ms) RELEASE SAVEPOINT active_record_1
638
+ Started GET "/sign_in" for 127.0.0.1 at 2012-12-30 21:03:05 -0500
639
+ Processing by SessionsController#new as HTML
640
+ Parameters: {"identity"=>:password}
641
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (12.3ms)
642
+ Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 0.0ms)
643
+ Started GET "/assets/application.css" for 127.0.0.1 at 2012-12-30 21:03:05 -0500
644
+ Served asset /application.css - 200 OK (2ms)
645
+ Started GET "/assets/application.js" for 127.0.0.1 at 2012-12-30 21:03:05 -0500
646
+ Served asset /application.js - 200 OK (5ms)
647
+ Started POST "/sign_in" for 127.0.0.1 at 2012-12-30 21:03:05 -0500
648
+ Processing by SessionsController#create as HTML
649
+ Parameters: {"utf8"=>"✓", "identities_password"=>"[FILTERED]", "commit"=>"Submit", "identity"=>:password}
650
+ Identities::Password Load (0.1ms) SELECT "identities".* FROM "identities" WHERE "identities"."type" IN ('Identities::Password') AND ("identities"."username" LIKE 'test@example.com') LIMIT 1
651
+ Rendered /Users/dan/.rbenv/versions/1.9.3-p286/lib/ruby/gems/1.9.1/gems/easy_auth-password-0.0.6/app/views/sessions/new.html.erb within layouts/application (2.7ms)
652
+ Completed 200 OK in 9ms (Views: 4.4ms | ActiveRecord: 0.6ms)
653
+  (0.3ms) rollback transaction
654
+  (2.6ms) DELETE FROM "identities";
655
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
656
+  (1.1ms) DELETE FROM "users";
657
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
658
+  (0.1ms) begin transaction
659
+ Started GET "/" for 127.0.0.1 at 2012-12-30 21:03:08 -0500
660
+ Processing by LandingController#show as HTML
661
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
662
+ Started POST "/dismissed_helpers" for 127.0.0.1 at 2012-12-30 21:03:08 -0500
663
+ Processing by DismissedHelpersController#create as JSON
664
+ Parameters: {"helper"=>"helper"}
665
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
666
+ Started GET "/" for 127.0.0.1 at 2012-12-30 21:03:09 -0500
667
+ Processing by LandingController#show as HTML
668
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
669
+  (0.1ms) rollback transaction
670
+  (2.7ms) DELETE FROM "identities";
671
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
672
+  (0.9ms) DELETE FROM "users";
673
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';
674
+  (2.8ms) DELETE FROM "identities";
675
+  (0.2ms) DELETE FROM sqlite_sequence where name = 'identities';
676
+  (1.1ms) DELETE FROM "users";
677
+  (0.1ms) DELETE FROM sqlite_sequence where name = 'users';