devise_imprintable 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +22 -0
  3. data/LICENSE +22 -0
  4. data/README.md +54 -0
  5. data/Rakefile +16 -0
  6. data/devise_imprintable.gemspec +29 -0
  7. data/lib/devise_imprintable/hook.rb +5 -0
  8. data/lib/devise_imprintable/model.rb +12 -0
  9. data/lib/devise_imprintable/version.rb +3 -0
  10. data/lib/devise_imprintable.rb +14 -0
  11. data/lib/generators/active_record/devise_imprintable_generator.rb +13 -0
  12. data/lib/generators/active_record/templates/migration.rb +14 -0
  13. data/lib/generators/devise_imprintable/devise_imprintable_generator.rb +17 -0
  14. data/test/integration/inventable_test.rb +34 -0
  15. data/test/integration_tests_helper.rb +51 -0
  16. data/test/orm/active_record.rb +4 -0
  17. data/test/rails_app/Rakefile +7 -0
  18. data/test/rails_app/app/controllers/application_controller.rb +3 -0
  19. data/test/rails_app/app/controllers/home_controller.rb +4 -0
  20. data/test/rails_app/app/controllers/users_controller.rb +12 -0
  21. data/test/rails_app/app/helpers/application_helper.rb +2 -0
  22. data/test/rails_app/app/models/user.rb +32 -0
  23. data/test/rails_app/app/views/home/index.html.erb +0 -0
  24. data/test/rails_app/app/views/layouts/application.html.erb +16 -0
  25. data/test/rails_app/app/views/users/invitations/new.html.erb +15 -0
  26. data/test/rails_app/config/application.rb +23 -0
  27. data/test/rails_app/config/boot.rb +11 -0
  28. data/test/rails_app/config/database.yml +22 -0
  29. data/test/rails_app/config/environment.rb +5 -0
  30. data/test/rails_app/config/environments/development.rb +25 -0
  31. data/test/rails_app/config/environments/production.rb +49 -0
  32. data/test/rails_app/config/environments/test.rb +35 -0
  33. data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  34. data/test/rails_app/config/initializers/devise.rb +207 -0
  35. data/test/rails_app/config/initializers/inflections.rb +10 -0
  36. data/test/rails_app/config/initializers/mime_types.rb +5 -0
  37. data/test/rails_app/config/initializers/secret_token.rb +7 -0
  38. data/test/rails_app/config/initializers/session_store.rb +8 -0
  39. data/test/rails_app/config/initializers/wrap_parameters.rb +14 -0
  40. data/test/rails_app/config/locales/devise.en.yml +57 -0
  41. data/test/rails_app/config/locales/en.yml +14 -0
  42. data/test/rails_app/config/mongoid.yml +10 -0
  43. data/test/rails_app/config/routes.rb +4 -0
  44. data/test/rails_app/config.ru +4 -0
  45. data/test/rails_app/db/migrate/20100401102949_create_tables.rb +28 -0
  46. data/test/rails_app/log/test.log +1641 -0
  47. data/test/rails_app/script/rails +6 -0
  48. data/test/test_helper.rb +23 -0
  49. metadata +176 -0
@@ -0,0 +1,1641 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ Connecting to database specified by database.yml
4
+ Connecting to database specified by database.yml
5
+ Connecting to database specified by database.yml
6
+ SQLite3::SQLException: table users has no column named invitation_token: CREATE UNIQUE INDEX "index_users_on_invitation_token" ON "users" ("invitation_token")
7
+ Connecting to database specified by database.yml
8
+ Connecting to database specified by database.yml
9
+ Connecting to database specified by database.yml
10
+ Connecting to database specified by database.yml
11
+ Binary data inserted for `string` type on column `encrypted_password`
12
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (22.0ms)
13
+
14
+ Sent mail to fulluser@test.com (35ms)
15
+ Date: Fri, 28 Sep 2012 13:26:02 +0400
16
+ From: please-change-me-at-config-initializers-devise@example.com
17
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
18
+ To: fulluser@test.com
19
+ Message-ID: <50656d2a62575_95d63fc0d045a738605bc@redbox.mail>
20
+ Subject: Confirmation instructions
21
+ Mime-Version: 1.0
22
+ Content-Type: text/html;
23
+ charset=UTF-8
24
+ Content-Transfer-Encoding: 7bit
25
+
26
+ <p>Welcome fulluser@test.com!</p>
27
+
28
+ <p>You can confirm your account email through the link below:</p>
29
+
30
+ <p><a href="http://test.com/users/confirmation?confirmation_token=caT8UptQX8iavxE8ibFK">Confirm my account</a></p>
31
+
32
+ Connecting to database specified by database.yml
33
+ Connecting to database specified by database.yml
34
+ Connecting to database specified by database.yml
35
+ Binary data inserted for `string` type on column `encrypted_password`
36
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.4ms)
37
+
38
+ Sent mail to fulluser@test.com (62ms)
39
+ Date: Fri, 28 Sep 2012 13:32:51 +0400
40
+ From: please-change-me-at-config-initializers-devise@example.com
41
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
42
+ To: fulluser@test.com
43
+ Message-ID: <50656ec339fb2_96683fd911c5a72c2532e@redbox.mail>
44
+ Subject: Confirmation instructions
45
+ Mime-Version: 1.0
46
+ Content-Type: text/html;
47
+ charset=UTF-8
48
+ Content-Transfer-Encoding: 7bit
49
+
50
+ <p>Welcome fulluser@test.com!</p>
51
+
52
+ <p>You can confirm your account email through the link below:</p>
53
+
54
+ <p><a href="http://test.com/users/confirmation?confirmation_token=s3uYrrhYszPEG3Eho7SV">Confirm my account</a></p>
55
+
56
+ Binary data inserted for `string` type on column `encrypted_password`
57
+
58
+ Sent mail to fulluser@test.com (6ms)
59
+ Date: Fri, 28 Sep 2012 13:32:51 +0400
60
+ From: please-change-me-at-config-initializers-devise@example.com
61
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
62
+ To: fulluser@test.com
63
+ Message-ID: <50656ec36041d_96683fd911c5a72c254f1@redbox.mail>
64
+ Subject: Confirmation instructions
65
+ Mime-Version: 1.0
66
+ Content-Type: text/html;
67
+ charset=UTF-8
68
+ Content-Transfer-Encoding: 7bit
69
+
70
+ <p>Welcome fulluser@test.com!</p>
71
+
72
+ <p>You can confirm your account email through the link below:</p>
73
+
74
+ <p><a href="http://test.com/users/confirmation?confirmation_token=SAQ8R4fec27smYhaqNDD">Confirm my account</a></p>
75
+
76
+ Connecting to database specified by database.yml
77
+ Binary data inserted for `string` type on column `encrypted_password`
78
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.4ms)
79
+
80
+ Sent mail to fulluser@test.com (50ms)
81
+ Date: Fri, 28 Sep 2012 13:36:22 +0400
82
+ From: please-change-me-at-config-initializers-devise@example.com
83
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
84
+ To: fulluser@test.com
85
+ Message-ID: <50656f9628191_96ab3fdbbd45a7304981e@redbox.mail>
86
+ Subject: Confirmation instructions
87
+ Mime-Version: 1.0
88
+ Content-Type: text/html;
89
+ charset=UTF-8
90
+ Content-Transfer-Encoding: 7bit
91
+
92
+ <p>Welcome fulluser@test.com!</p>
93
+
94
+ <p>You can confirm your account email through the link below:</p>
95
+
96
+ <p><a href="http://test.com/users/confirmation?confirmation_token=BrgBkVKsxho8WohPGSyv">Confirm my account</a></p>
97
+
98
+ Connecting to database specified by database.yml
99
+ Binary data inserted for `string` type on column `encrypted_password`
100
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.0ms)
101
+
102
+ Sent mail to fulluser@test.com (11ms)
103
+ Date: Fri, 28 Sep 2012 13:36:56 +0400
104
+ From: please-change-me-at-config-initializers-devise@example.com
105
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
106
+ To: fulluser@test.com
107
+ Message-ID: <50656fb89e971_96be3fecb545a72c1773b@redbox.mail>
108
+ Subject: Confirmation instructions
109
+ Mime-Version: 1.0
110
+ Content-Type: text/html;
111
+ charset=UTF-8
112
+ Content-Transfer-Encoding: 7bit
113
+
114
+ <p>Welcome fulluser@test.com!</p>
115
+
116
+ <p>You can confirm your account email through the link below:</p>
117
+
118
+ <p><a href="http://test.com/users/confirmation?confirmation_token=jK3RzFmY4f2mWys1mi7R">Confirm my account</a></p>
119
+
120
+ Binary data inserted for `string` type on column `encrypted_password`
121
+
122
+ Sent mail to fulluser@test.com (8ms)
123
+ Date: Fri, 28 Sep 2012 13:36:56 +0400
124
+ From: please-change-me-at-config-initializers-devise@example.com
125
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
126
+ To: fulluser@test.com
127
+ Message-ID: <50656fb8a4fad_96be3fecb545a72c1788a@redbox.mail>
128
+ Subject: Confirmation instructions
129
+ Mime-Version: 1.0
130
+ Content-Type: text/html;
131
+ charset=UTF-8
132
+ Content-Transfer-Encoding: 7bit
133
+
134
+ <p>Welcome fulluser@test.com!</p>
135
+
136
+ <p>You can confirm your account email through the link below:</p>
137
+
138
+ <p><a href="http://test.com/users/confirmation?confirmation_token=ZjgQZEFcyYyzyPVy9JAp">Confirm my account</a></p>
139
+
140
+ Connecting to database specified by database.yml
141
+ Binary data inserted for `string` type on column `encrypted_password`
142
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.0ms)
143
+
144
+ Sent mail to fulluser@test.com (12ms)
145
+ Date: Fri, 28 Sep 2012 13:38:53 +0400
146
+ From: please-change-me-at-config-initializers-devise@example.com
147
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
148
+ To: fulluser@test.com
149
+ Message-ID: <5065702d886c2_96de3fd2dcc5a730793f9@redbox.mail>
150
+ Subject: Confirmation instructions
151
+ Mime-Version: 1.0
152
+ Content-Type: text/html;
153
+ charset=UTF-8
154
+ Content-Transfer-Encoding: 7bit
155
+
156
+ <p>Welcome fulluser@test.com!</p>
157
+
158
+ <p>You can confirm your account email through the link below:</p>
159
+
160
+ <p><a href="http://test.com/users/confirmation?confirmation_token=apd5TBTXEG5urBTydgLT">Confirm my account</a></p>
161
+
162
+
163
+
164
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:38:53 +0400
165
+ Processing by Devise::SessionsController#new as HTML
166
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.4ms)
167
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (37.3ms)
168
+ Completed 200 OK in 285ms (Views: 283.5ms | ActiveRecord: 0.0ms)
169
+
170
+
171
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:38:54 +0400
172
+ Processing by Devise::SessionsController#create as HTML
173
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
174
+ Redirected to http://www.example.com/
175
+ Completed 302 Found in 41ms (ActiveRecord: 0.0ms)
176
+
177
+
178
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:38:54 +0400
179
+ Processing by HomeController#index as HTML
180
+ Rendered home/index.html.erb within layouts/application (0.3ms)
181
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
182
+ Binary data inserted for `string` type on column `encrypted_password`
183
+
184
+ Sent mail to fulluser@test.com (5ms)
185
+ Date: Fri, 28 Sep 2012 13:38:54 +0400
186
+ From: please-change-me-at-config-initializers-devise@example.com
187
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
188
+ To: fulluser@test.com
189
+ Message-ID: <5065702e628b5_96de3fd2dcc5a730794af@redbox.mail>
190
+ Subject: Confirmation instructions
191
+ Mime-Version: 1.0
192
+ Content-Type: text/html;
193
+ charset=UTF-8
194
+ Content-Transfer-Encoding: 7bit
195
+
196
+ <p>Welcome fulluser@test.com!</p>
197
+
198
+ <p>You can confirm your account email through the link below:</p>
199
+
200
+ <p><a href="http://test.com/users/confirmation?confirmation_token=BHsMcy5vJWxhnR7xNHec">Confirm my account</a></p>
201
+
202
+ Binary data inserted for `string` type on column `encrypted_password`
203
+
204
+ Sent mail to fulluser@test.com (5ms)
205
+ Date: Fri, 28 Sep 2012 13:38:54 +0400
206
+ From: please-change-me-at-config-initializers-devise@example.com
207
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
208
+ To: fulluser@test.com
209
+ Message-ID: <5065702e6858d_96de3fd2dcc5a730795c1@redbox.mail>
210
+ Subject: Confirmation instructions
211
+ Mime-Version: 1.0
212
+ Content-Type: text/html;
213
+ charset=UTF-8
214
+ Content-Transfer-Encoding: 7bit
215
+
216
+ <p>Welcome fulluser@test.com!</p>
217
+
218
+ <p>You can confirm your account email through the link below:</p>
219
+
220
+ <p><a href="http://test.com/users/confirmation?confirmation_token=PjgGBp3cYCaJXSbbGj5s">Confirm my account</a></p>
221
+
222
+ Connecting to database specified by database.yml
223
+ Binary data inserted for `string` type on column `encrypted_password`
224
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.1ms)
225
+
226
+ Sent mail to fulluser@test.com (14ms)
227
+ Date: Fri, 28 Sep 2012 13:39:02 +0400
228
+ From: please-change-me-at-config-initializers-devise@example.com
229
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
230
+ To: fulluser@test.com
231
+ Message-ID: <506570362c923_96ea3fd79605a728954b2@redbox.mail>
232
+ Subject: Confirmation instructions
233
+ Mime-Version: 1.0
234
+ Content-Type: text/html;
235
+ charset=UTF-8
236
+ Content-Transfer-Encoding: 7bit
237
+
238
+ <p>Welcome fulluser@test.com!</p>
239
+
240
+ <p>You can confirm your account email through the link below:</p>
241
+
242
+ <p><a href="http://test.com/users/confirmation?confirmation_token=Xexy5iC2WpBnEqihEbQF">Confirm my account</a></p>
243
+
244
+
245
+
246
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:39:02 +0400
247
+ Processing by Devise::SessionsController#new as HTML
248
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (3.0ms)
249
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (10.3ms)
250
+ Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.0ms)
251
+
252
+
253
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:39:02 +0400
254
+ Processing by Devise::SessionsController#create as HTML
255
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
256
+ Redirected to http://www.example.com/
257
+ Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
258
+
259
+
260
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:39:02 +0400
261
+ Processing by HomeController#index as HTML
262
+ Rendered home/index.html.erb within layouts/application (0.3ms)
263
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
264
+ Binary data inserted for `string` type on column `encrypted_password`
265
+
266
+ Sent mail to fulluser@test.com (5ms)
267
+ Date: Fri, 28 Sep 2012 13:39:02 +0400
268
+ From: please-change-me-at-config-initializers-devise@example.com
269
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
270
+ To: fulluser@test.com
271
+ Message-ID: <506570365b258_96ea3fd79605a728955c1@redbox.mail>
272
+ Subject: Confirmation instructions
273
+ Mime-Version: 1.0
274
+ Content-Type: text/html;
275
+ charset=UTF-8
276
+ Content-Transfer-Encoding: 7bit
277
+
278
+ <p>Welcome fulluser@test.com!</p>
279
+
280
+ <p>You can confirm your account email through the link below:</p>
281
+
282
+ <p><a href="http://test.com/users/confirmation?confirmation_token=x2zyq5tXzmrDWZ6p8oF3">Confirm my account</a></p>
283
+
284
+ Binary data inserted for `string` type on column `encrypted_password`
285
+
286
+ Sent mail to fulluser@test.com (6ms)
287
+ Date: Fri, 28 Sep 2012 13:39:02 +0400
288
+ From: please-change-me-at-config-initializers-devise@example.com
289
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
290
+ To: fulluser@test.com
291
+ Message-ID: <5065703661a0d_96ea3fd79605a728956f3@redbox.mail>
292
+ Subject: Confirmation instructions
293
+ Mime-Version: 1.0
294
+ Content-Type: text/html;
295
+ charset=UTF-8
296
+ Content-Transfer-Encoding: 7bit
297
+
298
+ <p>Welcome fulluser@test.com!</p>
299
+
300
+ <p>You can confirm your account email through the link below:</p>
301
+
302
+ <p><a href="http://test.com/users/confirmation?confirmation_token=yJU1erSAUrKpxyQ7ioR5">Confirm my account</a></p>
303
+
304
+ Connecting to database specified by database.yml
305
+ Binary data inserted for `string` type on column `encrypted_password`
306
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.8ms)
307
+
308
+ Sent mail to fulluser@test.com (12ms)
309
+ Date: Fri, 28 Sep 2012 13:39:54 +0400
310
+ From: please-change-me-at-config-initializers-devise@example.com
311
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
312
+ To: fulluser@test.com
313
+ Message-ID: <5065706aad4b0_96fe3fc5cd85a7284891e@redbox.mail>
314
+ Subject: Confirmation instructions
315
+ Mime-Version: 1.0
316
+ Content-Type: text/html;
317
+ charset=UTF-8
318
+ Content-Transfer-Encoding: 7bit
319
+
320
+ <p>Welcome fulluser@test.com!</p>
321
+
322
+ <p>You can confirm your account email through the link below:</p>
323
+
324
+ <p><a href="http://test.com/users/confirmation?confirmation_token=xGpfRhV2nzVqbqcYY3Jh">Confirm my account</a></p>
325
+
326
+
327
+
328
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:39:54 +0400
329
+ Processing by Devise::SessionsController#new as HTML
330
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.2ms)
331
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (8.5ms)
332
+ Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms)
333
+
334
+
335
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:39:54 +0400
336
+ Processing by Devise::SessionsController#create as HTML
337
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
338
+ Redirected to http://www.example.com/
339
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
340
+
341
+
342
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:39:54 +0400
343
+ Processing by HomeController#index as HTML
344
+ Rendered home/index.html.erb within layouts/application (0.3ms)
345
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
346
+ Binary data inserted for `string` type on column `encrypted_password`
347
+
348
+ Sent mail to fulluser@test.com (6ms)
349
+ Date: Fri, 28 Sep 2012 13:39:54 +0400
350
+ From: please-change-me-at-config-initializers-devise@example.com
351
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
352
+ To: fulluser@test.com
353
+ Message-ID: <5065706ace80d_96fe3fc5cd85a72849037@redbox.mail>
354
+ Subject: Confirmation instructions
355
+ Mime-Version: 1.0
356
+ Content-Type: text/html;
357
+ charset=UTF-8
358
+ Content-Transfer-Encoding: 7bit
359
+
360
+ <p>Welcome fulluser@test.com!</p>
361
+
362
+ <p>You can confirm your account email through the link below:</p>
363
+
364
+ <p><a href="http://test.com/users/confirmation?confirmation_token=xfNsPpjnDux86G742mjy">Confirm my account</a></p>
365
+
366
+ Binary data inserted for `string` type on column `encrypted_password`
367
+
368
+ Sent mail to fulluser@test.com (5ms)
369
+ Date: Fri, 28 Sep 2012 13:39:54 +0400
370
+ From: please-change-me-at-config-initializers-devise@example.com
371
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
372
+ To: fulluser@test.com
373
+ Message-ID: <5065706ad572f_96fe3fc5cd85a728491c5@redbox.mail>
374
+ Subject: Confirmation instructions
375
+ Mime-Version: 1.0
376
+ Content-Type: text/html;
377
+ charset=UTF-8
378
+ Content-Transfer-Encoding: 7bit
379
+
380
+ <p>Welcome fulluser@test.com!</p>
381
+
382
+ <p>You can confirm your account email through the link below:</p>
383
+
384
+ <p><a href="http://test.com/users/confirmation?confirmation_token=YGw9GZHsxyz1xxxjntyA">Confirm my account</a></p>
385
+
386
+ Connecting to database specified by database.yml
387
+ Binary data inserted for `string` type on column `encrypted_password`
388
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.9ms)
389
+
390
+ Sent mail to fulluser@test.com (11ms)
391
+ Date: Fri, 28 Sep 2012 13:42:51 +0400
392
+ From: please-change-me-at-config-initializers-devise@example.com
393
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
394
+ To: fulluser@test.com
395
+ Message-ID: <5065711b8106c_97243fe98c85a72c9864f@redbox.mail>
396
+ Subject: Confirmation instructions
397
+ Mime-Version: 1.0
398
+ Content-Type: text/html;
399
+ charset=UTF-8
400
+ Content-Transfer-Encoding: 7bit
401
+
402
+ <p>Welcome fulluser@test.com!</p>
403
+
404
+ <p>You can confirm your account email through the link below:</p>
405
+
406
+ <p><a href="http://test.com/users/confirmation?confirmation_token=j2p7KtsL4Deyj5h1s6v9">Confirm my account</a></p>
407
+
408
+
409
+
410
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:42:51 +0400
411
+ Processing by Devise::SessionsController#new as HTML
412
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (3.5ms)
413
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (10.8ms)
414
+ Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.0ms)
415
+
416
+
417
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:42:51 +0400
418
+ Processing by Devise::SessionsController#create as HTML
419
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
420
+ Redirected to http://www.example.com/
421
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
422
+
423
+
424
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:42:51 +0400
425
+ Processing by HomeController#index as HTML
426
+ Rendered home/index.html.erb within layouts/application (0.4ms)
427
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
428
+ Binary data inserted for `string` type on column `encrypted_password`
429
+
430
+ Sent mail to fulluser@test.com (5ms)
431
+ Date: Fri, 28 Sep 2012 13:42:51 +0400
432
+ From: please-change-me-at-config-initializers-devise@example.com
433
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
434
+ To: fulluser@test.com
435
+ Message-ID: <5065711ba3549_97243fe98c85a72c98738@redbox.mail>
436
+ Subject: Confirmation instructions
437
+ Mime-Version: 1.0
438
+ Content-Type: text/html;
439
+ charset=UTF-8
440
+ Content-Transfer-Encoding: 7bit
441
+
442
+ <p>Welcome fulluser@test.com!</p>
443
+
444
+ <p>You can confirm your account email through the link below:</p>
445
+
446
+ <p><a href="http://test.com/users/confirmation?confirmation_token=Hikc4yYvyf4UYxQzXdPz">Confirm my account</a></p>
447
+
448
+ Binary data inserted for `string` type on column `encrypted_password`
449
+
450
+ Sent mail to fulluser@test.com (5ms)
451
+ Date: Fri, 28 Sep 2012 13:42:51 +0400
452
+ From: please-change-me-at-config-initializers-devise@example.com
453
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
454
+ To: fulluser@test.com
455
+ Message-ID: <5065711ba8dbb_97243fe98c85a72c988bb@redbox.mail>
456
+ Subject: Confirmation instructions
457
+ Mime-Version: 1.0
458
+ Content-Type: text/html;
459
+ charset=UTF-8
460
+ Content-Transfer-Encoding: 7bit
461
+
462
+ <p>Welcome fulluser@test.com!</p>
463
+
464
+ <p>You can confirm your account email through the link below:</p>
465
+
466
+ <p><a href="http://test.com/users/confirmation?confirmation_token=7gxxh1o1SCCyUxozusra">Confirm my account</a></p>
467
+
468
+ Connecting to database specified by database.yml
469
+ Binary data inserted for `string` type on column `encrypted_password`
470
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.9ms)
471
+
472
+ Sent mail to fulluser@test.com (11ms)
473
+ Date: Fri, 28 Sep 2012 13:43:28 +0400
474
+ From: please-change-me-at-config-initializers-devise@example.com
475
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
476
+ To: fulluser@test.com
477
+ Message-ID: <50657140d7fc2_97373fcea145a72c82228@redbox.mail>
478
+ Subject: Confirmation instructions
479
+ Mime-Version: 1.0
480
+ Content-Type: text/html;
481
+ charset=UTF-8
482
+ Content-Transfer-Encoding: 7bit
483
+
484
+ <p>Welcome fulluser@test.com!</p>
485
+
486
+ <p>You can confirm your account email through the link below:</p>
487
+
488
+ <p><a href="http://test.com/users/confirmation?confirmation_token=VYGUSQykQyNwWyxytuyF">Confirm my account</a></p>
489
+
490
+
491
+
492
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:28 +0400
493
+ Processing by Devise::SessionsController#new as HTML
494
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.6ms)
495
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (8.9ms)
496
+ Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
497
+
498
+
499
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:28 +0400
500
+ Processing by Devise::SessionsController#create as HTML
501
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
502
+ Redirected to http://www.example.com/
503
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
504
+
505
+
506
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:43:29 +0400
507
+ Processing by HomeController#index as HTML
508
+ Rendered home/index.html.erb within layouts/application (0.3ms)
509
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
510
+ Binary data inserted for `string` type on column `encrypted_password`
511
+
512
+ Sent mail to fulluser@test.com (6ms)
513
+ Date: Fri, 28 Sep 2012 13:43:29 +0400
514
+ From: please-change-me-at-config-initializers-devise@example.com
515
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
516
+ To: fulluser@test.com
517
+ Message-ID: <5065714160aa_97373fcea145a72c823bc@redbox.mail>
518
+ Subject: Confirmation instructions
519
+ Mime-Version: 1.0
520
+ Content-Type: text/html;
521
+ charset=UTF-8
522
+ Content-Transfer-Encoding: 7bit
523
+
524
+ <p>Welcome fulluser@test.com!</p>
525
+
526
+ <p>You can confirm your account email through the link below:</p>
527
+
528
+ <p><a href="http://test.com/users/confirmation?confirmation_token=28eMpAAhRDJB55srSuTD">Confirm my account</a></p>
529
+
530
+ Binary data inserted for `string` type on column `encrypted_password`
531
+
532
+ Sent mail to fulluser@test.com (6ms)
533
+ Date: Fri, 28 Sep 2012 13:43:29 +0400
534
+ From: please-change-me-at-config-initializers-devise@example.com
535
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
536
+ To: fulluser@test.com
537
+ Message-ID: <50657141c030_97373fcea145a72c8246f@redbox.mail>
538
+ Subject: Confirmation instructions
539
+ Mime-Version: 1.0
540
+ Content-Type: text/html;
541
+ charset=UTF-8
542
+ Content-Transfer-Encoding: 7bit
543
+
544
+ <p>Welcome fulluser@test.com!</p>
545
+
546
+ <p>You can confirm your account email through the link below:</p>
547
+
548
+ <p><a href="http://test.com/users/confirmation?confirmation_token=pssD7zE4oFiM7XAwRsaa">Confirm my account</a></p>
549
+
550
+
551
+
552
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:29 +0400
553
+ Processing by Devise::SessionsController#new as HTML
554
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.6ms)
555
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
556
+
557
+
558
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:29 +0400
559
+ Processing by Devise::SessionsController#create as HTML
560
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
561
+ Redirected to http://www.example.com/
562
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
563
+
564
+
565
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:43:29 +0400
566
+ Processing by HomeController#index as HTML
567
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
568
+ Connecting to database specified by database.yml
569
+ Binary data inserted for `string` type on column `encrypted_password`
570
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.9ms)
571
+
572
+ Sent mail to fulluser@test.com (11ms)
573
+ Date: Fri, 28 Sep 2012 13:43:52 +0400
574
+ From: please-change-me-at-config-initializers-devise@example.com
575
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
576
+ To: fulluser@test.com
577
+ Message-ID: <5065715830d22_97463fde6205a728787d8@redbox.mail>
578
+ Subject: Confirmation instructions
579
+ Mime-Version: 1.0
580
+ Content-Type: text/html;
581
+ charset=UTF-8
582
+ Content-Transfer-Encoding: 7bit
583
+
584
+ <p>Welcome fulluser@test.com!</p>
585
+
586
+ <p>You can confirm your account email through the link below:</p>
587
+
588
+ <p><a href="http://test.com/users/confirmation?confirmation_token=9nVFzfxF4wu5Dq7ETfsy">Confirm my account</a></p>
589
+
590
+
591
+
592
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:52 +0400
593
+ Processing by Devise::SessionsController#new as HTML
594
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (4.8ms)
595
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (13.4ms)
596
+ Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.0ms)
597
+
598
+
599
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:52 +0400
600
+ Processing by Devise::SessionsController#create as HTML
601
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
602
+ Redirected to http://www.example.com/
603
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
604
+
605
+
606
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:43:52 +0400
607
+ Processing by HomeController#index as HTML
608
+ Rendered home/index.html.erb within layouts/application (0.3ms)
609
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
610
+ Binary data inserted for `string` type on column `encrypted_password`
611
+
612
+ Sent mail to fulluser@test.com (5ms)
613
+ Date: Fri, 28 Sep 2012 13:43:52 +0400
614
+ From: please-change-me-at-config-initializers-devise@example.com
615
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
616
+ To: fulluser@test.com
617
+ Message-ID: <5065715857c4f_97463fde6205a728788c0@redbox.mail>
618
+ Subject: Confirmation instructions
619
+ Mime-Version: 1.0
620
+ Content-Type: text/html;
621
+ charset=UTF-8
622
+ Content-Transfer-Encoding: 7bit
623
+
624
+ <p>Welcome fulluser@test.com!</p>
625
+
626
+ <p>You can confirm your account email through the link below:</p>
627
+
628
+ <p><a href="http://test.com/users/confirmation?confirmation_token=vzA5puUVPjCnXtmMXfh1">Confirm my account</a></p>
629
+
630
+ Binary data inserted for `string` type on column `encrypted_password`
631
+
632
+ Sent mail to fulluser@test.com (5ms)
633
+ Date: Fri, 28 Sep 2012 13:43:52 +0400
634
+ From: please-change-me-at-config-initializers-devise@example.com
635
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
636
+ To: fulluser@test.com
637
+ Message-ID: <506571585e457_97463fde6205a72878994@redbox.mail>
638
+ Subject: Confirmation instructions
639
+ Mime-Version: 1.0
640
+ Content-Type: text/html;
641
+ charset=UTF-8
642
+ Content-Transfer-Encoding: 7bit
643
+
644
+ <p>Welcome fulluser@test.com!</p>
645
+
646
+ <p>You can confirm your account email through the link below:</p>
647
+
648
+ <p><a href="http://test.com/users/confirmation?confirmation_token=V1maEFitxDASHwcysSxb">Confirm my account</a></p>
649
+
650
+
651
+
652
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:52 +0400
653
+ Processing by Devise::SessionsController#new as HTML
654
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.8ms)
655
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
656
+
657
+
658
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:43:52 +0400
659
+ Processing by Devise::SessionsController#create as HTML
660
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
661
+ Redirected to http://www.example.com/
662
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
663
+
664
+
665
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:43:52 +0400
666
+ Processing by HomeController#index as HTML
667
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
668
+ Connecting to database specified by database.yml
669
+ Binary data inserted for `string` type on column `encrypted_password`
670
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (3.8ms)
671
+
672
+ Sent mail to fulluser@test.com (16ms)
673
+ Date: Fri, 28 Sep 2012 13:44:35 +0400
674
+ From: please-change-me-at-config-initializers-devise@example.com
675
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
676
+ To: fulluser@test.com
677
+ Message-ID: <50657183da41d_97583fc69205a7382994a@redbox.mail>
678
+ Subject: Confirmation instructions
679
+ Mime-Version: 1.0
680
+ Content-Type: text/html;
681
+ charset=UTF-8
682
+ Content-Transfer-Encoding: 7bit
683
+
684
+ <p>Welcome fulluser@test.com!</p>
685
+
686
+ <p>You can confirm your account email through the link below:</p>
687
+
688
+ <p><a href="http://test.com/users/confirmation?confirmation_token=qY5woN2ArqaDF1k6FYPV">Confirm my account</a></p>
689
+
690
+
691
+
692
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:35 +0400
693
+ Processing by Devise::SessionsController#new as HTML
694
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.6ms)
695
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (10.1ms)
696
+ Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.0ms)
697
+
698
+
699
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:36 +0400
700
+ Processing by Devise::SessionsController#create as HTML
701
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
702
+ Redirected to http://www.example.com/
703
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
704
+
705
+
706
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:44:36 +0400
707
+ Processing by HomeController#index as HTML
708
+ Rendered home/index.html.erb within layouts/application (0.3ms)
709
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
710
+ Binary data inserted for `string` type on column `encrypted_password`
711
+
712
+ Sent mail to fulluser@test.com (5ms)
713
+ Date: Fri, 28 Sep 2012 13:44:36 +0400
714
+ From: please-change-me-at-config-initializers-devise@example.com
715
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
716
+ To: fulluser@test.com
717
+ Message-ID: <50657184bfbc_97583fc69205a73830075@redbox.mail>
718
+ Subject: Confirmation instructions
719
+ Mime-Version: 1.0
720
+ Content-Type: text/html;
721
+ charset=UTF-8
722
+ Content-Transfer-Encoding: 7bit
723
+
724
+ <p>Welcome fulluser@test.com!</p>
725
+
726
+ <p>You can confirm your account email through the link below:</p>
727
+
728
+ <p><a href="http://test.com/users/confirmation?confirmation_token=SZKiTuQ5mvvLc1sYQsU8">Confirm my account</a></p>
729
+
730
+ Binary data inserted for `string` type on column `encrypted_password`
731
+
732
+ Sent mail to fulluser@test.com (12ms)
733
+ Date: Fri, 28 Sep 2012 13:44:36 +0400
734
+ From: please-change-me-at-config-initializers-devise@example.com
735
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
736
+ To: fulluser@test.com
737
+ Message-ID: <5065718413b70_97583fc69205a738301a0@redbox.mail>
738
+ Subject: Confirmation instructions
739
+ Mime-Version: 1.0
740
+ Content-Type: text/html;
741
+ charset=UTF-8
742
+ Content-Transfer-Encoding: 7bit
743
+
744
+ <p>Welcome fulluser@test.com!</p>
745
+
746
+ <p>You can confirm your account email through the link below:</p>
747
+
748
+ <p><a href="http://test.com/users/confirmation?confirmation_token=WpZA7rBKXpS3RWed5NsX">Confirm my account</a></p>
749
+
750
+
751
+
752
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:36 +0400
753
+ Processing by Devise::SessionsController#new as HTML
754
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (1.8ms)
755
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
756
+
757
+
758
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:36 +0400
759
+ Processing by Devise::SessionsController#create as HTML
760
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
761
+ Redirected to http://www.example.com/
762
+ Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
763
+
764
+
765
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:44:36 +0400
766
+ Processing by HomeController#index as HTML
767
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
768
+ Connecting to database specified by database.yml
769
+ Binary data inserted for `string` type on column `encrypted_password`
770
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.2ms)
771
+
772
+ Sent mail to fulluser@test.com (13ms)
773
+ Date: Fri, 28 Sep 2012 13:44:49 +0400
774
+ From: please-change-me-at-config-initializers-devise@example.com
775
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
776
+ To: fulluser@test.com
777
+ Message-ID: <506571918e6c6_97643fcda585a7345993d@redbox.mail>
778
+ Subject: Confirmation instructions
779
+ Mime-Version: 1.0
780
+ Content-Type: text/html;
781
+ charset=UTF-8
782
+ Content-Transfer-Encoding: 7bit
783
+
784
+ <p>Welcome fulluser@test.com!</p>
785
+
786
+ <p>You can confirm your account email through the link below:</p>
787
+
788
+ <p><a href="http://test.com/users/confirmation?confirmation_token=HAih2xFfEj4puaFsj279">Confirm my account</a></p>
789
+
790
+
791
+
792
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:49 +0400
793
+ Processing by Devise::SessionsController#new as HTML
794
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.9ms)
795
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (9.3ms)
796
+ Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.0ms)
797
+
798
+
799
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:49 +0400
800
+ Processing by Devise::SessionsController#create as HTML
801
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
802
+ Redirected to http://www.example.com/
803
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
804
+
805
+
806
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:44:49 +0400
807
+ Processing by HomeController#index as HTML
808
+ Rendered home/index.html.erb within layouts/application (0.3ms)
809
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
810
+ Binary data inserted for `string` type on column `encrypted_password`
811
+
812
+ Sent mail to fulluser@test.com (7ms)
813
+ Date: Fri, 28 Sep 2012 13:44:49 +0400
814
+ From: please-change-me-at-config-initializers-devise@example.com
815
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
816
+ To: fulluser@test.com
817
+ Message-ID: <50657191b15fb_97643fcda585a7346007e@redbox.mail>
818
+ Subject: Confirmation instructions
819
+ Mime-Version: 1.0
820
+ Content-Type: text/html;
821
+ charset=UTF-8
822
+ Content-Transfer-Encoding: 7bit
823
+
824
+ <p>Welcome fulluser@test.com!</p>
825
+
826
+ <p>You can confirm your account email through the link below:</p>
827
+
828
+ <p><a href="http://test.com/users/confirmation?confirmation_token=XBEsaM1qiDvSQSCJxpoW">Confirm my account</a></p>
829
+
830
+ Binary data inserted for `string` type on column `encrypted_password`
831
+
832
+ Sent mail to fulluser@test.com (7ms)
833
+ Date: Fri, 28 Sep 2012 13:44:49 +0400
834
+ From: please-change-me-at-config-initializers-devise@example.com
835
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
836
+ To: fulluser@test.com
837
+ Message-ID: <50657191b8af6_97643fcda585a73460186@redbox.mail>
838
+ Subject: Confirmation instructions
839
+ Mime-Version: 1.0
840
+ Content-Type: text/html;
841
+ charset=UTF-8
842
+ Content-Transfer-Encoding: 7bit
843
+
844
+ <p>Welcome fulluser@test.com!</p>
845
+
846
+ <p>You can confirm your account email through the link below:</p>
847
+
848
+ <p><a href="http://test.com/users/confirmation?confirmation_token=MusVfNpzczWKeLsXvQGG">Confirm my account</a></p>
849
+
850
+
851
+
852
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:49 +0400
853
+ Processing by Devise::SessionsController#new as HTML
854
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.6ms)
855
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
856
+
857
+
858
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:44:49 +0400
859
+ Processing by Devise::SessionsController#create as HTML
860
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
861
+ Redirected to http://www.example.com/
862
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
863
+
864
+
865
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:44:49 +0400
866
+ Processing by HomeController#index as HTML
867
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
868
+ Connecting to database specified by database.yml
869
+ Binary data inserted for `string` type on column `encrypted_password`
870
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.8ms)
871
+
872
+ Sent mail to fulluser@test.com (11ms)
873
+ Date: Fri, 28 Sep 2012 13:45:24 +0400
874
+ From: please-change-me-at-config-initializers-devise@example.com
875
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
876
+ To: fulluser@test.com
877
+ Message-ID: <506571b4111ad_97773fd25cc5a738929cc@redbox.mail>
878
+ Subject: Confirmation instructions
879
+ Mime-Version: 1.0
880
+ Content-Type: text/html;
881
+ charset=UTF-8
882
+ Content-Transfer-Encoding: 7bit
883
+
884
+ <p>Welcome fulluser@test.com!</p>
885
+
886
+ <p>You can confirm your account email through the link below:</p>
887
+
888
+ <p><a href="http://test.com/users/confirmation?confirmation_token=Ry7uH6VmnbrFEuENYTa2">Confirm my account</a></p>
889
+
890
+
891
+
892
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:24 +0400
893
+ Processing by Devise::SessionsController#new as HTML
894
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.3ms)
895
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (8.8ms)
896
+ Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.0ms)
897
+
898
+
899
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:24 +0400
900
+ Processing by Devise::SessionsController#create as HTML
901
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
902
+ Redirected to http://www.example.com/
903
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
904
+
905
+
906
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:45:24 +0400
907
+ Processing by HomeController#index as HTML
908
+ Rendered home/index.html.erb within layouts/application (0.3ms)
909
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
910
+ Binary data inserted for `string` type on column `encrypted_password`
911
+
912
+ Sent mail to fulluser@test.com (6ms)
913
+ Date: Fri, 28 Sep 2012 13:45:24 +0400
914
+ From: please-change-me-at-config-initializers-devise@example.com
915
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
916
+ To: fulluser@test.com
917
+ Message-ID: <506571b433973_97773fd25cc5a7389306e@redbox.mail>
918
+ Subject: Confirmation instructions
919
+ Mime-Version: 1.0
920
+ Content-Type: text/html;
921
+ charset=UTF-8
922
+ Content-Transfer-Encoding: 7bit
923
+
924
+ <p>Welcome fulluser@test.com!</p>
925
+
926
+ <p>You can confirm your account email through the link below:</p>
927
+
928
+ <p><a href="http://test.com/users/confirmation?confirmation_token=AZ6578H5CzCzHvAThwYZ">Confirm my account</a></p>
929
+
930
+ Binary data inserted for `string` type on column `encrypted_password`
931
+
932
+ Sent mail to fulluser@test.com (6ms)
933
+ Date: Fri, 28 Sep 2012 13:45:24 +0400
934
+ From: please-change-me-at-config-initializers-devise@example.com
935
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
936
+ To: fulluser@test.com
937
+ Message-ID: <506571b43ad25_97773fd25cc5a738931e7@redbox.mail>
938
+ Subject: Confirmation instructions
939
+ Mime-Version: 1.0
940
+ Content-Type: text/html;
941
+ charset=UTF-8
942
+ Content-Transfer-Encoding: 7bit
943
+
944
+ <p>Welcome fulluser@test.com!</p>
945
+
946
+ <p>You can confirm your account email through the link below:</p>
947
+
948
+ <p><a href="http://test.com/users/confirmation?confirmation_token=oC91oPXEqW4tRG7p7hLd">Confirm my account</a></p>
949
+
950
+
951
+
952
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:24 +0400
953
+ Processing by Devise::SessionsController#new as HTML
954
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.4ms)
955
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
956
+
957
+
958
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:24 +0400
959
+ Processing by Devise::SessionsController#create as HTML
960
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
961
+ Redirected to http://www.example.com/
962
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
963
+
964
+
965
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:45:24 +0400
966
+ Processing by HomeController#index as HTML
967
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms)
968
+ Connecting to database specified by database.yml
969
+ Binary data inserted for `string` type on column `encrypted_password`
970
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.1ms)
971
+
972
+ Sent mail to fulluser@test.com (12ms)
973
+ Date: Fri, 28 Sep 2012 13:45:53 +0400
974
+ From: please-change-me-at-config-initializers-devise@example.com
975
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
976
+ To: fulluser@test.com
977
+ Message-ID: <506571d1371ee_97863fefa085a730258c@redbox.mail>
978
+ Subject: Confirmation instructions
979
+ Mime-Version: 1.0
980
+ Content-Type: text/html;
981
+ charset=UTF-8
982
+ Content-Transfer-Encoding: 7bit
983
+
984
+ <p>Welcome fulluser@test.com!</p>
985
+
986
+ <p>You can confirm your account email through the link below:</p>
987
+
988
+ <p><a href="http://test.com/users/confirmation?confirmation_token=ockhxExtNjeCmShTyTqr">Confirm my account</a></p>
989
+
990
+
991
+
992
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:53 +0400
993
+ Processing by Devise::SessionsController#new as HTML
994
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.6ms)
995
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (9.3ms)
996
+ Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms)
997
+
998
+
999
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:53 +0400
1000
+ Processing by Devise::SessionsController#create as HTML
1001
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1002
+ Redirected to http://www.example.com/
1003
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
1004
+
1005
+
1006
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:45:53 +0400
1007
+ Processing by HomeController#index as HTML
1008
+ Rendered home/index.html.erb within layouts/application (0.3ms)
1009
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
1010
+ Binary data inserted for `string` type on column `encrypted_password`
1011
+
1012
+ Sent mail to fulluser@test.com (7ms)
1013
+ Date: Fri, 28 Sep 2012 13:45:53 +0400
1014
+ From: please-change-me-at-config-initializers-devise@example.com
1015
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1016
+ To: fulluser@test.com
1017
+ Message-ID: <506571d15e690_97863fefa085a730259ae@redbox.mail>
1018
+ Subject: Confirmation instructions
1019
+ Mime-Version: 1.0
1020
+ Content-Type: text/html;
1021
+ charset=UTF-8
1022
+ Content-Transfer-Encoding: 7bit
1023
+
1024
+ <p>Welcome fulluser@test.com!</p>
1025
+
1026
+ <p>You can confirm your account email through the link below:</p>
1027
+
1028
+ <p><a href="http://test.com/users/confirmation?confirmation_token=hW8AYLMxXPRbxXj2taWx">Confirm my account</a></p>
1029
+
1030
+ Binary data inserted for `string` type on column `encrypted_password`
1031
+
1032
+ Sent mail to fulluser@test.com (5ms)
1033
+ Date: Fri, 28 Sep 2012 13:45:53 +0400
1034
+ From: please-change-me-at-config-initializers-devise@example.com
1035
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1036
+ To: fulluser@test.com
1037
+ Message-ID: <506571d1655d3_97863fefa085a73026060@redbox.mail>
1038
+ Subject: Confirmation instructions
1039
+ Mime-Version: 1.0
1040
+ Content-Type: text/html;
1041
+ charset=UTF-8
1042
+ Content-Transfer-Encoding: 7bit
1043
+
1044
+ <p>Welcome fulluser@test.com!</p>
1045
+
1046
+ <p>You can confirm your account email through the link below:</p>
1047
+
1048
+ <p><a href="http://test.com/users/confirmation?confirmation_token=sGp9hNbmg1NHxDaqMsZx">Confirm my account</a></p>
1049
+
1050
+
1051
+
1052
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:53 +0400
1053
+ Processing by Devise::SessionsController#new as HTML
1054
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.6ms)
1055
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
1056
+
1057
+
1058
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:45:53 +0400
1059
+ Processing by Devise::SessionsController#create as HTML
1060
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1061
+ Redirected to http://www.example.com/
1062
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
1063
+
1064
+
1065
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:45:53 +0400
1066
+ Processing by HomeController#index as HTML
1067
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
1068
+ Connecting to database specified by database.yml
1069
+ Binary data inserted for `string` type on column `encrypted_password`
1070
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.9ms)
1071
+
1072
+ Sent mail to fulluser@test.com (12ms)
1073
+ Date: Fri, 28 Sep 2012 13:46:06 +0400
1074
+ From: please-change-me-at-config-initializers-devise@example.com
1075
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1076
+ To: fulluser@test.com
1077
+ Message-ID: <506571deba7e8_97933ff5c5c5a738566eb@redbox.mail>
1078
+ Subject: Confirmation instructions
1079
+ Mime-Version: 1.0
1080
+ Content-Type: text/html;
1081
+ charset=UTF-8
1082
+ Content-Transfer-Encoding: 7bit
1083
+
1084
+ <p>Welcome fulluser@test.com!</p>
1085
+
1086
+ <p>You can confirm your account email through the link below:</p>
1087
+
1088
+ <p><a href="http://test.com/users/confirmation?confirmation_token=sFg2NBUYxTjhoYz31xVq">Confirm my account</a></p>
1089
+
1090
+
1091
+
1092
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:06 +0400
1093
+ Processing by Devise::SessionsController#new as HTML
1094
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.2ms)
1095
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (9.2ms)
1096
+ Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.0ms)
1097
+
1098
+
1099
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:06 +0400
1100
+ Processing by Devise::SessionsController#create as HTML
1101
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1102
+ Redirected to http://www.example.com/
1103
+ Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
1104
+
1105
+
1106
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:46:06 +0400
1107
+ Processing by HomeController#index as HTML
1108
+ Rendered home/index.html.erb within layouts/application (0.4ms)
1109
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
1110
+ Binary data inserted for `string` type on column `encrypted_password`
1111
+
1112
+ Sent mail to fulluser@test.com (11ms)
1113
+ Date: Fri, 28 Sep 2012 13:46:06 +0400
1114
+ From: please-change-me-at-config-initializers-devise@example.com
1115
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1116
+ To: fulluser@test.com
1117
+ Message-ID: <506571dedfed9_97933ff5c5c5a738567f9@redbox.mail>
1118
+ Subject: Confirmation instructions
1119
+ Mime-Version: 1.0
1120
+ Content-Type: text/html;
1121
+ charset=UTF-8
1122
+ Content-Transfer-Encoding: 7bit
1123
+
1124
+ <p>Welcome fulluser@test.com!</p>
1125
+
1126
+ <p>You can confirm your account email through the link below:</p>
1127
+
1128
+ <p><a href="http://test.com/users/confirmation?confirmation_token=x8NzqmcPrEpcjMc1r96s">Confirm my account</a></p>
1129
+
1130
+ Binary data inserted for `string` type on column `encrypted_password`
1131
+
1132
+ Sent mail to fulluser@test.com (5ms)
1133
+ Date: Fri, 28 Sep 2012 13:46:06 +0400
1134
+ From: please-change-me-at-config-initializers-devise@example.com
1135
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1136
+ To: fulluser@test.com
1137
+ Message-ID: <506571dee87f6_97933ff5c5c5a738568fd@redbox.mail>
1138
+ Subject: Confirmation instructions
1139
+ Mime-Version: 1.0
1140
+ Content-Type: text/html;
1141
+ charset=UTF-8
1142
+ Content-Transfer-Encoding: 7bit
1143
+
1144
+ <p>Welcome fulluser@test.com!</p>
1145
+
1146
+ <p>You can confirm your account email through the link below:</p>
1147
+
1148
+ <p><a href="http://test.com/users/confirmation?confirmation_token=5fN8Dz6ih6xPdKumWCi1">Confirm my account</a></p>
1149
+
1150
+
1151
+
1152
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:06 +0400
1153
+ Processing by Devise::SessionsController#new as HTML
1154
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.7ms)
1155
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1156
+
1157
+
1158
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:06 +0400
1159
+ Processing by Devise::SessionsController#create as HTML
1160
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1161
+ Redirected to http://www.example.com/
1162
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
1163
+
1164
+
1165
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:46:06 +0400
1166
+ Processing by HomeController#index as HTML
1167
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1168
+ Connecting to database specified by database.yml
1169
+ Binary data inserted for `string` type on column `encrypted_password`
1170
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.8ms)
1171
+
1172
+ Sent mail to fulluser@test.com (15ms)
1173
+ Date: Fri, 28 Sep 2012 13:46:20 +0400
1174
+ From: please-change-me-at-config-initializers-devise@example.com
1175
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1176
+ To: fulluser@test.com
1177
+ Message-ID: <506571ec8fe8e_979f3fcf1205a728647ae@redbox.mail>
1178
+ Subject: Confirmation instructions
1179
+ Mime-Version: 1.0
1180
+ Content-Type: text/html;
1181
+ charset=UTF-8
1182
+ Content-Transfer-Encoding: 7bit
1183
+
1184
+ <p>Welcome fulluser@test.com!</p>
1185
+
1186
+ <p>You can confirm your account email through the link below:</p>
1187
+
1188
+ <p><a href="http://test.com/users/confirmation?confirmation_token=zr1yfQ1bSDiJ92cqiSha">Confirm my account</a></p>
1189
+
1190
+
1191
+
1192
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:20 +0400
1193
+ Processing by Devise::SessionsController#new as HTML
1194
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.5ms)
1195
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (9.2ms)
1196
+ Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms)
1197
+
1198
+
1199
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:20 +0400
1200
+ Processing by Devise::SessionsController#create as HTML
1201
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1202
+ Redirected to http://www.example.com/
1203
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
1204
+
1205
+
1206
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:46:20 +0400
1207
+ Processing by HomeController#index as HTML
1208
+ Rendered home/index.html.erb within layouts/application (0.3ms)
1209
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
1210
+ Binary data inserted for `string` type on column `encrypted_password`
1211
+
1212
+ Sent mail to fulluser@test.com (5ms)
1213
+ Date: Fri, 28 Sep 2012 13:46:20 +0400
1214
+ From: please-change-me-at-config-initializers-devise@example.com
1215
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1216
+ To: fulluser@test.com
1217
+ Message-ID: <506571ecb6709_979f3fcf1205a7286481f@redbox.mail>
1218
+ Subject: Confirmation instructions
1219
+ Mime-Version: 1.0
1220
+ Content-Type: text/html;
1221
+ charset=UTF-8
1222
+ Content-Transfer-Encoding: 7bit
1223
+
1224
+ <p>Welcome fulluser@test.com!</p>
1225
+
1226
+ <p>You can confirm your account email through the link below:</p>
1227
+
1228
+ <p><a href="http://test.com/users/confirmation?confirmation_token=kKsfiij9T2JyvRtU4jf3">Confirm my account</a></p>
1229
+
1230
+ Binary data inserted for `string` type on column `encrypted_password`
1231
+
1232
+ Sent mail to fulluser@test.com (5ms)
1233
+ Date: Fri, 28 Sep 2012 13:46:20 +0400
1234
+ From: please-change-me-at-config-initializers-devise@example.com
1235
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1236
+ To: fulluser@test.com
1237
+ Message-ID: <506571ecbc5bd_979f3fcf1205a7286493e@redbox.mail>
1238
+ Subject: Confirmation instructions
1239
+ Mime-Version: 1.0
1240
+ Content-Type: text/html;
1241
+ charset=UTF-8
1242
+ Content-Transfer-Encoding: 7bit
1243
+
1244
+ <p>Welcome fulluser@test.com!</p>
1245
+
1246
+ <p>You can confirm your account email through the link below:</p>
1247
+
1248
+ <p><a href="http://test.com/users/confirmation?confirmation_token=fwLGE74MhEAYcwkiDfBQ">Confirm my account</a></p>
1249
+
1250
+
1251
+
1252
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:20 +0400
1253
+ Processing by Devise::SessionsController#new as HTML
1254
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.7ms)
1255
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
1256
+
1257
+
1258
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:46:20 +0400
1259
+ Processing by Devise::SessionsController#create as HTML
1260
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1261
+ Redirected to http://www.example.com/
1262
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
1263
+
1264
+
1265
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:46:20 +0400
1266
+ Processing by HomeController#index as HTML
1267
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1268
+ Connecting to database specified by database.yml
1269
+ Binary data inserted for `string` type on column `encrypted_password`
1270
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.3ms)
1271
+
1272
+ Sent mail to fulluser@test.com (11ms)
1273
+ Date: Fri, 28 Sep 2012 13:47:08 +0400
1274
+ From: please-change-me-at-config-initializers-devise@example.com
1275
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1276
+ To: fulluser@test.com
1277
+ Message-ID: <5065721c2eb14_97b13ff4e545a7304561@redbox.mail>
1278
+ Subject: Confirmation instructions
1279
+ Mime-Version: 1.0
1280
+ Content-Type: text/html;
1281
+ charset=UTF-8
1282
+ Content-Transfer-Encoding: 7bit
1283
+
1284
+ <p>Welcome fulluser@test.com!</p>
1285
+
1286
+ <p>You can confirm your account email through the link below:</p>
1287
+
1288
+ <p><a href="http://test.com/users/confirmation?confirmation_token=qGZCp4xpsmHCpqXntXsz">Confirm my account</a></p>
1289
+
1290
+ Binary data inserted for `string` type on column `encrypted_password`
1291
+
1292
+ Sent mail to fulluser@test.com (5ms)
1293
+ Date: Fri, 28 Sep 2012 13:47:08 +0400
1294
+ From: please-change-me-at-config-initializers-devise@example.com
1295
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1296
+ To: fulluser@test.com
1297
+ Message-ID: <5065721c3628c_97b13ff4e545a73045711@redbox.mail>
1298
+ Subject: Confirmation instructions
1299
+ Mime-Version: 1.0
1300
+ Content-Type: text/html;
1301
+ charset=UTF-8
1302
+ Content-Transfer-Encoding: 7bit
1303
+
1304
+ <p>Welcome fulluser@test.com!</p>
1305
+
1306
+ <p>You can confirm your account email through the link below:</p>
1307
+
1308
+ <p><a href="http://test.com/users/confirmation?confirmation_token=i967gTYaCkZRj7RToMsz">Confirm my account</a></p>
1309
+
1310
+
1311
+
1312
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:47:08 +0400
1313
+ Processing by Devise::SessionsController#new as HTML
1314
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.7ms)
1315
+ Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.0ms)
1316
+
1317
+
1318
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:47:08 +0400
1319
+ Processing by Devise::SessionsController#create as HTML
1320
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1321
+ Redirected to http://www.example.com/
1322
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
1323
+
1324
+
1325
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:47:08 +0400
1326
+ Processing by HomeController#index as HTML
1327
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
1328
+ Connecting to database specified by database.yml
1329
+ Binary data inserted for `string` type on column `encrypted_password`
1330
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (1.9ms)
1331
+
1332
+ Sent mail to fulluser@test.com (11ms)
1333
+ Date: Fri, 28 Sep 2012 13:47:45 +0400
1334
+ From: please-change-me-at-config-initializers-devise@example.com
1335
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1336
+ To: fulluser@test.com
1337
+ Message-ID: <5065724191293_97cd3fc61545a734582ed@redbox.mail>
1338
+ Subject: Confirmation instructions
1339
+ Mime-Version: 1.0
1340
+ Content-Type: text/html;
1341
+ charset=UTF-8
1342
+ Content-Transfer-Encoding: 7bit
1343
+
1344
+ <p>Welcome fulluser@test.com!</p>
1345
+
1346
+ <p>You can confirm your account email through the link below:</p>
1347
+
1348
+ <p><a href="http://test.com/users/confirmation?confirmation_token=swLs9eSfYzKnNUPhiRB8">Confirm my account</a></p>
1349
+
1350
+ Binary data inserted for `string` type on column `encrypted_password`
1351
+
1352
+ Sent mail to fulluser@test.com (6ms)
1353
+ Date: Fri, 28 Sep 2012 13:47:45 +0400
1354
+ From: please-change-me-at-config-initializers-devise@example.com
1355
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1356
+ To: fulluser@test.com
1357
+ Message-ID: <50657241982b2_97cd3fc61545a734583a6@redbox.mail>
1358
+ Subject: Confirmation instructions
1359
+ Mime-Version: 1.0
1360
+ Content-Type: text/html;
1361
+ charset=UTF-8
1362
+ Content-Transfer-Encoding: 7bit
1363
+
1364
+ <p>Welcome fulluser@test.com!</p>
1365
+
1366
+ <p>You can confirm your account email through the link below:</p>
1367
+
1368
+ <p><a href="http://test.com/users/confirmation?confirmation_token=4yRqMfn8Wsfwn9tEtZ9p">Confirm my account</a></p>
1369
+
1370
+
1371
+
1372
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:47:45 +0400
1373
+ Processing by Devise::SessionsController#new as HTML
1374
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (5.0ms)
1375
+ Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.0ms)
1376
+
1377
+
1378
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:47:45 +0400
1379
+ Processing by Devise::SessionsController#create as HTML
1380
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1381
+ Completed 500 Internal Server Error in 6ms
1382
+ Connecting to database specified by database.yml
1383
+ Binary data inserted for `string` type on column `encrypted_password`
1384
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (3.6ms)
1385
+
1386
+ Sent mail to fulluser@test.com (13ms)
1387
+ Date: Fri, 28 Sep 2012 13:48:00 +0400
1388
+ From: please-change-me-at-config-initializers-devise@example.com
1389
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1390
+ To: fulluser@test.com
1391
+ Message-ID: <506572503be2a_97da3fec45c5a7301b0@redbox.mail>
1392
+ Subject: Confirmation instructions
1393
+ Mime-Version: 1.0
1394
+ Content-Type: text/html;
1395
+ charset=UTF-8
1396
+ Content-Transfer-Encoding: 7bit
1397
+
1398
+ <p>Welcome fulluser@test.com!</p>
1399
+
1400
+ <p>You can confirm your account email through the link below:</p>
1401
+
1402
+ <p><a href="http://test.com/users/confirmation?confirmation_token=PiKwpnJwWJdPEGiaHRhe">Confirm my account</a></p>
1403
+
1404
+ Binary data inserted for `string` type on column `encrypted_password`
1405
+
1406
+ Sent mail to fulluser@test.com (5ms)
1407
+ Date: Fri, 28 Sep 2012 13:48:00 +0400
1408
+ From: please-change-me-at-config-initializers-devise@example.com
1409
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1410
+ To: fulluser@test.com
1411
+ Message-ID: <50657250458e6_97da3fec45c5a730279@redbox.mail>
1412
+ Subject: Confirmation instructions
1413
+ Mime-Version: 1.0
1414
+ Content-Type: text/html;
1415
+ charset=UTF-8
1416
+ Content-Transfer-Encoding: 7bit
1417
+
1418
+ <p>Welcome fulluser@test.com!</p>
1419
+
1420
+ <p>You can confirm your account email through the link below:</p>
1421
+
1422
+ <p><a href="http://test.com/users/confirmation?confirmation_token=4u7feqnzYybqs8KPztJi">Confirm my account</a></p>
1423
+
1424
+
1425
+
1426
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:48:00 +0400
1427
+ Processing by Devise::SessionsController#new as HTML
1428
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.3ms)
1429
+ Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.0ms)
1430
+
1431
+
1432
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:48:00 +0400
1433
+ Processing by Devise::SessionsController#create as HTML
1434
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1435
+ Redirected to http://www.example.com/
1436
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
1437
+
1438
+
1439
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:48:00 +0400
1440
+ Processing by HomeController#index as HTML
1441
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.0ms)
1442
+ Connecting to database specified by database.yml
1443
+ Binary data inserted for `string` type on column `encrypted_password`
1444
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (2.1ms)
1445
+
1446
+ Sent mail to fulluser@test.com (13ms)
1447
+ Date: Fri, 28 Sep 2012 13:48:25 +0400
1448
+ From: please-change-me-at-config-initializers-devise@example.com
1449
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1450
+ To: fulluser@test.com
1451
+ Message-ID: <50657269cc1ea_97ea3fc17145a72843717@redbox.mail>
1452
+ Subject: Confirmation instructions
1453
+ Mime-Version: 1.0
1454
+ Content-Type: text/html;
1455
+ charset=UTF-8
1456
+ Content-Transfer-Encoding: 7bit
1457
+
1458
+ <p>Welcome fulluser@test.com!</p>
1459
+
1460
+ <p>You can confirm your account email through the link below:</p>
1461
+
1462
+ <p><a href="http://test.com/users/confirmation?confirmation_token=VqcAZtYy7yZmyDzrrzkj">Confirm my account</a></p>
1463
+
1464
+
1465
+
1466
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:48:25 +0400
1467
+ Processing by Devise::SessionsController#new as HTML
1468
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (2.4ms)
1469
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (10.2ms)
1470
+ Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.0ms)
1471
+
1472
+
1473
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:48:25 +0400
1474
+ Processing by Devise::SessionsController#create as HTML
1475
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1476
+ Redirected to http://www.example.com/
1477
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
1478
+
1479
+
1480
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:48:25 +0400
1481
+ Processing by HomeController#index as HTML
1482
+ Rendered home/index.html.erb within layouts/application (0.4ms)
1483
+ Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1484
+ Binary data inserted for `string` type on column `encrypted_password`
1485
+
1486
+ Sent mail to fulluser@test.com (5ms)
1487
+ Date: Fri, 28 Sep 2012 13:48:25 +0400
1488
+ From: please-change-me-at-config-initializers-devise@example.com
1489
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1490
+ To: fulluser@test.com
1491
+ Message-ID: <50657269f0bb0_97ea3fc17145a728438fb@redbox.mail>
1492
+ Subject: Confirmation instructions
1493
+ Mime-Version: 1.0
1494
+ Content-Type: text/html;
1495
+ charset=UTF-8
1496
+ Content-Transfer-Encoding: 7bit
1497
+
1498
+ <p>Welcome fulluser@test.com!</p>
1499
+
1500
+ <p>You can confirm your account email through the link below:</p>
1501
+
1502
+ <p><a href="http://test.com/users/confirmation?confirmation_token=PtTTKgiTT5gjRscL14RW">Confirm my account</a></p>
1503
+
1504
+ Binary data inserted for `string` type on column `encrypted_password`
1505
+
1506
+ Sent mail to fulluser@test.com (7ms)
1507
+ Date: Fri, 28 Sep 2012 13:48:26 +0400
1508
+ From: please-change-me-at-config-initializers-devise@example.com
1509
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1510
+ To: fulluser@test.com
1511
+ Message-ID: <5065726a2cc3_97ea3fc17145a72843973@redbox.mail>
1512
+ Subject: Confirmation instructions
1513
+ Mime-Version: 1.0
1514
+ Content-Type: text/html;
1515
+ charset=UTF-8
1516
+ Content-Transfer-Encoding: 7bit
1517
+
1518
+ <p>Welcome fulluser@test.com!</p>
1519
+
1520
+ <p>You can confirm your account email through the link below:</p>
1521
+
1522
+ <p><a href="http://test.com/users/confirmation?confirmation_token=dvuTVvzR21x93ybh6cpZ">Confirm my account</a></p>
1523
+
1524
+
1525
+
1526
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:48:26 +0400
1527
+ Processing by Devise::SessionsController#new as HTML
1528
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.6ms)
1529
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms)
1530
+
1531
+
1532
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:48:26 +0400
1533
+ Processing by Devise::SessionsController#create as HTML
1534
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1535
+ Redirected to http://www.example.com/
1536
+ Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
1537
+
1538
+
1539
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:48:26 +0400
1540
+ Processing by HomeController#index as HTML
1541
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
1542
+ Connecting to database specified by database.yml
1543
+ Binary data inserted for `string` type on column `encrypted_password`
1544
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/mailer/confirmation_instructions.html.erb (0.0ms)
1545
+
1546
+ Sent mail to fulluser@test.com (0ms)
1547
+ Date: Fri, 28 Sep 2012 13:49:47 +0400
1548
+ From: please-change-me-at-config-initializers-devise@example.com
1549
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1550
+ To: fulluser@test.com
1551
+ Message-ID: <506572bda8797_98003ff6d905a734727a@redbox.mail>
1552
+ Subject: Confirmation instructions
1553
+ Mime-Version: 1.0
1554
+ Content-Type: text/html;
1555
+ charset=UTF-8
1556
+ Content-Transfer-Encoding: 7bit
1557
+
1558
+ <p>Welcome fulluser@test.com!</p>
1559
+
1560
+ <p>You can confirm your account email through the link below:</p>
1561
+
1562
+ <p><a href="http://test.com/users/confirmation?confirmation_token=DpdXusN3JtDCNGNtEmT3">Confirm my account</a></p>
1563
+
1564
+
1565
+
1566
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 09:49:49 UTC
1567
+ Processing by Devise::SessionsController#new as HTML
1568
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.0ms)
1569
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/sessions/new.html.erb within layouts/application (0.0ms)
1570
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
1571
+
1572
+
1573
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 09:49:49 UTC
1574
+ Processing by Devise::SessionsController#create as HTML
1575
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1576
+ Redirected to http://www.example.com/
1577
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
1578
+
1579
+
1580
+ Started GET "/" for 127.0.0.1 at 2012-09-28 09:49:49 UTC
1581
+ Processing by HomeController#index as HTML
1582
+ Rendered home/index.html.erb within layouts/application (0.0ms)
1583
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
1584
+ Binary data inserted for `string` type on column `encrypted_password`
1585
+
1586
+ Sent mail to fulluser@test.com (5ms)
1587
+ Date: Fri, 28 Sep 2012 13:49:47 +0400
1588
+ From: please-change-me-at-config-initializers-devise@example.com
1589
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1590
+ To: fulluser@test.com
1591
+ Message-ID: <506572bbf0526_98003ff6d905a73472860@redbox.mail>
1592
+ Subject: Confirmation instructions
1593
+ Mime-Version: 1.0
1594
+ Content-Type: text/html;
1595
+ charset=UTF-8
1596
+ Content-Transfer-Encoding: 7bit
1597
+
1598
+ <p>Welcome fulluser@test.com!</p>
1599
+
1600
+ <p>You can confirm your account email through the link below:</p>
1601
+
1602
+ <p><a href="http://test.com/users/confirmation?confirmation_token=oVnnqzG6Wak2pJDwPYWw">Confirm my account</a></p>
1603
+
1604
+ Binary data inserted for `string` type on column `encrypted_password`
1605
+
1606
+ Sent mail to fulluser@test.com (7ms)
1607
+ Date: Fri, 28 Sep 2012 13:49:48 +0400
1608
+ From: please-change-me-at-config-initializers-devise@example.com
1609
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
1610
+ To: fulluser@test.com
1611
+ Message-ID: <506572bc293c_98003ff6d905a7347291f@redbox.mail>
1612
+ Subject: Confirmation instructions
1613
+ Mime-Version: 1.0
1614
+ Content-Type: text/html;
1615
+ charset=UTF-8
1616
+ Content-Transfer-Encoding: 7bit
1617
+
1618
+ <p>Welcome fulluser@test.com!</p>
1619
+
1620
+ <p>You can confirm your account email through the link below:</p>
1621
+
1622
+ <p><a href="http://test.com/users/confirmation?confirmation_token=WmRpXYKnez6YYpinxyfs">Confirm my account</a></p>
1623
+
1624
+
1625
+
1626
+ Started GET "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:49:48 +0400
1627
+ Processing by Devise::SessionsController#new as HTML
1628
+ Rendered /Users/sergey/.rvm/gems/ruby-1.9.3-p194@resumup/gems/devise-2.1.2/app/views/devise/shared/_links.erb (0.6ms)
1629
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1630
+
1631
+
1632
+ Started POST "/users/sign_in" for 127.0.0.1 at 2012-09-28 13:49:48 +0400
1633
+ Processing by Devise::SessionsController#create as HTML
1634
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"fulluser@test.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1635
+ Redirected to http://www.example.com/
1636
+ Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
1637
+
1638
+
1639
+ Started GET "/" for 127.0.0.1 at 2012-09-28 13:49:48 +0400
1640
+ Processing by HomeController#index as HTML
1641
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)