pinfirmable 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f55d06fcbd986c88e69b9c9df912939affadb399
4
- data.tar.gz: bc519c3cd1082adc7c732937a0cd1f4b474a7589
3
+ metadata.gz: 033d83584c3d572471700f39abd714b51e442d0a
4
+ data.tar.gz: 6cdfe419091102254baaba651a7e31cc7bfb088c
5
5
  SHA512:
6
- metadata.gz: 8825940ef2a09fe180a816085e036ef2676b86eab19c34ec75e0f9b019c53e04886d71b158b14e3dda6f6938582a77f1fe565a71e3aeab52d7b4d81401c7d6af
7
- data.tar.gz: 05da6db8b180edab5297581588aec469826bf04c1b9afdc311ede93a42b4beb625b8d65d788719ffdb901f11409272de5a4efe731c996799a986d5f12e9bb015
6
+ metadata.gz: e3c48adb5babbb233bb9a5e326794c6c4da5c6821c2e1b39ceff12eade6c14b16172062a293dfaf352ab41d9413c4b865ba0a9492dd0862f1bf4a5579735f2d5
7
+ data.tar.gz: 0954fbfb3e36e80fceffc879982313a4e5e0aace70d4c0b18bd3fe643a04fd8dbae330b97494123bdc8fd1a2e35ddc25846d1d194176ddddeb98751aa1fadd61
@@ -11,7 +11,7 @@ module Devise
11
11
  end
12
12
 
13
13
  if Pinfirmable::Pin.new(params[:digits]).matches_user_pin(pinfirmable_user)
14
- pinfirmable_user.update_attribute(:pinfirmable_pin, nil)
14
+ pinfirmable_user.confirm
15
15
  redirect_to after_confirmation_path_for(resource_name, pinfirmable_user)
16
16
  else
17
17
  tries = pinfirmable_user.pinfirmable_tries += 1
@@ -7,6 +7,10 @@ module Devise
7
7
  after_commit :send_confirmation_instructions, on: :create
8
8
  end
9
9
 
10
+ def confirm
11
+ update_attribute(:pinfirmable_pin, nil)
12
+ end
13
+
10
14
  protected
11
15
 
12
16
  def generate_confirmation_token
@@ -1,3 +1,3 @@
1
1
  module Pinfirmable
2
- VERSION = "0.1.0".freeze
2
+ VERSION = "0.1.1".freeze
3
3
  end
Binary file
@@ -72063,6 +72063,3239 @@ Thanks
72063
72063
  </body>
72064
72064
  </html>
72065
72065
 
72066
+ Redirected to http://test.host/users/confirmemail
72067
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72068
+  (0.0ms) rollback transaction
72069
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
72070
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
72071
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
72072
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
72073
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
72074
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
72075
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "pinfirmable_pin" varchar, "pinfirmable_tries" integer DEFAULT 0, "pinfirmable_lockout" datetime)
72076
+  (0.1ms) select sqlite_version(*)
72077
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
72078
+  (0.1ms)  SELECT sql
72079
+ FROM sqlite_master
72080
+ WHERE name='index_users_on_email' AND type='index'
72081
+ UNION ALL
72082
+ SELECT sql
72083
+ FROM sqlite_temp_master
72084
+ WHERE name='index_users_on_email' AND type='index'
72085
+ 
72086
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
72087
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
72088
+  (0.1ms) SELECT version FROM "schema_migrations"
72089
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20160901131628')
72090
+  (0.7ms) INSERT INTO schema_migrations (version) VALUES ('20160901092452');
72091
+
72092
+ 
72093
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
72094
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
72095
+  (0.0ms) begin transaction
72096
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-09-06 15:04:53 UTC], ["updated_at", 2016-09-06 15:04:53 UTC]]
72097
+  (0.7ms) commit transaction
72098
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
72099
+  (0.0ms) begin transaction
72100
+  (0.0ms) commit transaction
72101
+  (0.2ms) begin transaction
72102
+ Processing by Devise::PinfirmableController#new as HTML
72103
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72104
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.5ms)
72105
+ Completed 200 OK in 27ms (Views: 16.6ms | ActiveRecord: 0.0ms)
72106
+  (0.1ms) rollback transaction
72107
+  (0.0ms) begin transaction
72108
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:04:55 +0100
72109
+ Processing by Devise::RegistrationsController#new as HTML
72110
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
72111
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (1.6ms)
72112
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (31.1ms)
72113
+ Completed 200 OK in 210ms (Views: 183.2ms | ActiveRecord: 2.3ms)
72114
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:04:55 +0100
72115
+ Processing by Devise::RegistrationsController#create as HTML
72116
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
72117
+  (0.1ms) SAVEPOINT active_record_1
72118
+ User Exists (0.2ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72119
+ SQL (0.5ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$XOJ55DwxPFbpdHni..TUKuVo8tQLR0vD14SA2kGPWoEdVropUJD5C"], ["created_at", 2016-09-06 15:04:55 UTC], ["updated_at", 2016-09-06 15:04:55 UTC], ["pinfirmable_pin", "318310"]]
72120
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72121
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72122
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
72123
+ PinfirmableMailer#pin_email: processed outbound mail in 197.0ms
72124
+ Sent mail to test@example.com (4.1ms)
72125
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72126
+ From: from@example.com
72127
+ To: test@example.com
72128
+ Message-ID: <57cedb181422e_a5803fceecc3fa1495321@Gregs-MacBook-Pro.local.mail>
72129
+ Subject: Confirmation code: 318-310
72130
+ Mime-Version: 1.0
72131
+ Content-Type: text/html;
72132
+ charset=UTF-8
72133
+ Content-Transfer-Encoding: 7bit
72134
+
72135
+ <!DOCTYPE html>
72136
+ <html>
72137
+ <head>
72138
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72139
+ <style>
72140
+ /* Email styles need to be inline */
72141
+ </style>
72142
+ </head>
72143
+
72144
+ <body>
72145
+ <h1>Confirm your email with the following code</h1>
72146
+
72147
+ <h2>318-310</h2>
72148
+
72149
+ Thanks
72150
+
72151
+ </body>
72152
+ </html>
72153
+
72154
+ Completed 401 Unauthorized in 286ms (ActiveRecord: 0.7ms)
72155
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72156
+ Processing by Devise::PinfirmableController#new as HTML
72157
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72158
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72159
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (2.5ms)
72160
+ Completed 200 OK in 14ms (Views: 9.4ms | ActiveRecord: 0.1ms)
72161
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72162
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72163
+ Processing by Devise::PinfirmableController#create as HTML
72164
+ Parameters: {"utf8"=>"✓", "digits"=>["3", "1", "8", "3", "1", "0"], "commit"=>"GO!"}
72165
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72166
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
72167
+  (0.5ms) rollback transaction
72168
+  (0.0ms) begin transaction
72169
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72170
+ Processing by Devise::RegistrationsController#new as HTML
72171
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
72172
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.8ms)
72173
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (4.5ms)
72174
+ Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.0ms)
72175
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72176
+ Processing by Devise::RegistrationsController#create as HTML
72177
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
72178
+  (0.2ms) SAVEPOINT active_record_1
72179
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72180
+ SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$vndJ3sWtU6YLS4.X4Wvnku/GlivHKz8VOz2JWSP3OlD6Xjrt.dK6e"], ["created_at", 2016-09-06 15:04:56 UTC], ["updated_at", 2016-09-06 15:04:56 UTC], ["pinfirmable_pin", "203547"]]
72181
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72182
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72183
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
72184
+ PinfirmableMailer#pin_email: processed outbound mail in 25.2ms
72185
+ Sent mail to test@example.com (1.3ms)
72186
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72187
+ From: from@example.com
72188
+ To: test@example.com
72189
+ Message-ID: <57cedb1827ea1_a5803fceecc3fa149547b@Gregs-MacBook-Pro.local.mail>
72190
+ Subject: Confirmation code: 203-547
72191
+ Mime-Version: 1.0
72192
+ Content-Type: text/html;
72193
+ charset=UTF-8
72194
+ Content-Transfer-Encoding: 7bit
72195
+
72196
+ <!DOCTYPE html>
72197
+ <html>
72198
+ <head>
72199
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72200
+ <style>
72201
+ /* Email styles need to be inline */
72202
+ </style>
72203
+ </head>
72204
+
72205
+ <body>
72206
+ <h1>Confirm your email with the following code</h1>
72207
+
72208
+ <h2>203-547</h2>
72209
+
72210
+ Thanks
72211
+
72212
+ </body>
72213
+ </html>
72214
+
72215
+ Completed 401 Unauthorized in 33ms (ActiveRecord: 0.7ms)
72216
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72217
+ Processing by Devise::PinfirmableController#new as HTML
72218
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72219
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72220
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.5ms)
72221
+ Completed 200 OK in 10ms (Views: 7.1ms | ActiveRecord: 0.1ms)
72222
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72223
+ Processing by Devise::PinfirmableController#create as HTML
72224
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
72225
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72226
+  (0.0ms) SAVEPOINT active_record_1
72227
+ SQL (0.4ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72229
+ Redirected to http://www.example.com/users/confirmemail
72230
+ Completed 302 Found in 5ms (ActiveRecord: 0.6ms)
72231
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72232
+ Processing by Devise::PinfirmableController#new as HTML
72233
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72234
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72235
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.7ms)
72236
+ Completed 200 OK in 11ms (Views: 7.9ms | ActiveRecord: 0.1ms)
72237
+  (0.7ms) rollback transaction
72238
+  (0.1ms) begin transaction
72239
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72240
+ Processing by Devise::RegistrationsController#new as HTML
72241
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
72242
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.7ms)
72243
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (4.3ms)
72244
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
72245
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72246
+ Processing by Devise::RegistrationsController#create as HTML
72247
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
72248
+  (0.0ms) SAVEPOINT active_record_1
72249
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72250
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$X8jQR/OKSYoSJx1G9HVIlex5C3yGq9EMM4/spPgrxX5cWkpNDiAny"], ["created_at", 2016-09-06 15:04:56 UTC], ["updated_at", 2016-09-06 15:04:56 UTC], ["pinfirmable_pin", "102221"]]
72251
+  (0.1ms) RELEASE SAVEPOINT active_record_1
72252
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72253
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
72254
+ PinfirmableMailer#pin_email: processed outbound mail in 25.3ms
72255
+ Sent mail to test@example.com (1.5ms)
72256
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72257
+ From: from@example.com
72258
+ To: test@example.com
72259
+ Message-ID: <57cedb183d471_a5803fceecc3fa1495520@Gregs-MacBook-Pro.local.mail>
72260
+ Subject: Confirmation code: 102-221
72261
+ Mime-Version: 1.0
72262
+ Content-Type: text/html;
72263
+ charset=UTF-8
72264
+ Content-Transfer-Encoding: 7bit
72265
+
72266
+ <!DOCTYPE html>
72267
+ <html>
72268
+ <head>
72269
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72270
+ <style>
72271
+ /* Email styles need to be inline */
72272
+ </style>
72273
+ </head>
72274
+
72275
+ <body>
72276
+ <h1>Confirm your email with the following code</h1>
72277
+
72278
+ <h2>102-221</h2>
72279
+
72280
+ Thanks
72281
+
72282
+ </body>
72283
+ </html>
72284
+
72285
+ Completed 401 Unauthorized in 31ms (ActiveRecord: 0.5ms)
72286
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72287
+ Processing by Devise::PinfirmableController#new as HTML
72288
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72289
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72290
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.5ms)
72291
+ Completed 200 OK in 11ms (Views: 7.5ms | ActiveRecord: 0.1ms)
72292
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72293
+  (0.5ms) rollback transaction
72294
+  (0.1ms) begin transaction
72295
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72296
+ Processing by Devise::RegistrationsController#new as HTML
72297
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
72298
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.7ms)
72299
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (4.3ms)
72300
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
72301
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72302
+ Processing by Devise::RegistrationsController#create as HTML
72303
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
72304
+  (0.1ms) SAVEPOINT active_record_1
72305
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72306
+ SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$Gz.C0lTcK9o5C7uG.DPQ1.UJ.GA8ahORA78Fnos9tAYPmyfZYeRce"], ["created_at", 2016-09-06 15:04:56 UTC], ["updated_at", 2016-09-06 15:04:56 UTC], ["pinfirmable_pin", "168801"]]
72307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72308
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72309
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
72310
+ PinfirmableMailer#pin_email: processed outbound mail in 28.8ms
72311
+ Sent mail to test@example.com (1.3ms)
72312
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72313
+ From: from@example.com
72314
+ To: test@example.com
72315
+ Message-ID: <57cedb184e1f1_a5803fceecc3fa1495622@Gregs-MacBook-Pro.local.mail>
72316
+ Subject: Confirmation code: 168-801
72317
+ Mime-Version: 1.0
72318
+ Content-Type: text/html;
72319
+ charset=UTF-8
72320
+ Content-Transfer-Encoding: 7bit
72321
+
72322
+ <!DOCTYPE html>
72323
+ <html>
72324
+ <head>
72325
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72326
+ <style>
72327
+ /* Email styles need to be inline */
72328
+ </style>
72329
+ </head>
72330
+
72331
+ <body>
72332
+ <h1>Confirm your email with the following code</h1>
72333
+
72334
+ <h2>168-801</h2>
72335
+
72336
+ Thanks
72337
+
72338
+ </body>
72339
+ </html>
72340
+
72341
+ Completed 401 Unauthorized in 35ms (ActiveRecord: 0.5ms)
72342
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72343
+ Processing by Devise::PinfirmableController#new as HTML
72344
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72345
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72346
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.5ms)
72347
+ Completed 200 OK in 10ms (Views: 7.0ms | ActiveRecord: 0.1ms)
72348
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72349
+ Processing by Devise::PinfirmableController#create as HTML
72350
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
72351
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72352
+  (0.0ms) SAVEPOINT active_record_1
72353
+ SQL (0.3ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72354
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72355
+ Redirected to http://www.example.com/users/confirmemail
72356
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
72357
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72358
+ Processing by Devise::PinfirmableController#new as HTML
72359
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72360
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72361
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.8ms)
72362
+ Completed 200 OK in 11ms (Views: 7.4ms | ActiveRecord: 0.1ms)
72363
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72364
+ Processing by Devise::PinfirmableController#create as HTML
72365
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
72366
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72367
+  (0.0ms) SAVEPOINT active_record_1
72368
+ SQL (0.1ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72369
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72370
+ Redirected to http://www.example.com/users/confirmemail
72371
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
72372
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72373
+ Processing by Devise::PinfirmableController#new as HTML
72374
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72375
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72376
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.4ms)
72377
+ Completed 200 OK in 10ms (Views: 7.0ms | ActiveRecord: 0.1ms)
72378
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72379
+ Processing by Devise::PinfirmableController#create as HTML
72380
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
72381
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72382
+  (0.0ms) SAVEPOINT active_record_1
72383
+ SQL (0.1ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:05:56 UTC], ["pinfirmable_tries", 3], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72384
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72385
+ Redirected to http://www.example.com/users/confirmemail
72386
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
72387
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72388
+ Processing by Devise::PinfirmableController#new as HTML
72389
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72390
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72391
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.5ms)
72392
+ Completed 200 OK in 10ms (Views: 7.0ms | ActiveRecord: 0.1ms)
72393
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72394
+ Processing by Devise::PinfirmableController#create as HTML
72395
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
72396
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72397
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72398
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.5ms)
72399
+ Completed 429 Too Many Requests in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms)
72400
+  (1.4ms) rollback transaction
72401
+  (0.1ms) begin transaction
72402
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72403
+ Processing by Devise::RegistrationsController#new as HTML
72404
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
72405
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.8ms)
72406
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (6.1ms)
72407
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
72408
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72409
+ Processing by Devise::RegistrationsController#create as HTML
72410
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
72411
+  (0.1ms) SAVEPOINT active_record_1
72412
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72413
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$LQdFqpVLPCbVudG571FjV.LaAOCyxDsef1mi7Meu7fpnnL/h18YlW"], ["created_at", 2016-09-06 15:04:56 UTC], ["updated_at", 2016-09-06 15:04:56 UTC], ["pinfirmable_pin", "385778"]]
72414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72415
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72416
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
72417
+ PinfirmableMailer#pin_email: processed outbound mail in 29.7ms
72418
+ Sent mail to test@example.com (1.3ms)
72419
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72420
+ From: from@example.com
72421
+ To: test@example.com
72422
+ Message-ID: <57cedb1873448_a5803fceecc3fa149579f@Gregs-MacBook-Pro.local.mail>
72423
+ Subject: Confirmation code: 385-778
72424
+ Mime-Version: 1.0
72425
+ Content-Type: text/html;
72426
+ charset=UTF-8
72427
+ Content-Transfer-Encoding: 7bit
72428
+
72429
+ <!DOCTYPE html>
72430
+ <html>
72431
+ <head>
72432
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72433
+ <style>
72434
+ /* Email styles need to be inline */
72435
+ </style>
72436
+ </head>
72437
+
72438
+ <body>
72439
+ <h1>Confirm your email with the following code</h1>
72440
+
72441
+ <h2>385-778</h2>
72442
+
72443
+ Thanks
72444
+
72445
+ </body>
72446
+ </html>
72447
+
72448
+ Completed 401 Unauthorized in 36ms (ActiveRecord: 0.4ms)
72449
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72450
+ Processing by Devise::PinfirmableController#new as HTML
72451
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72452
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72453
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (2.2ms)
72454
+ Completed 200 OK in 13ms (Views: 9.6ms | ActiveRecord: 0.1ms)
72455
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72456
+  (0.6ms) rollback transaction
72457
+  (0.1ms) begin transaction
72458
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72459
+ Processing by Devise::RegistrationsController#new as HTML
72460
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
72461
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (1.5ms)
72462
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (5.3ms)
72463
+ Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 0.0ms)
72464
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72465
+ Processing by Devise::RegistrationsController#create as HTML
72466
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
72467
+  (0.1ms) SAVEPOINT active_record_1
72468
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72469
+ SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$iLexWaJwBoGLBYT5NjgDkuM0mJubOQxkbWYZamwtZvD/I4oNktirG"], ["created_at", 2016-09-06 15:04:56 UTC], ["updated_at", 2016-09-06 15:04:56 UTC], ["pinfirmable_pin", "341436"]]
72470
+  (0.1ms) RELEASE SAVEPOINT active_record_1
72471
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72472
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.9ms)
72473
+ PinfirmableMailer#pin_email: processed outbound mail in 25.6ms
72474
+ Sent mail to test@example.com (1.3ms)
72475
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72476
+ From: from@example.com
72477
+ To: test@example.com
72478
+ Message-ID: <57cedb1888ea0_a5803fceecc3fa149584f@Gregs-MacBook-Pro.local.mail>
72479
+ Subject: Confirmation code: 341-436
72480
+ Mime-Version: 1.0
72481
+ Content-Type: text/html;
72482
+ charset=UTF-8
72483
+ Content-Transfer-Encoding: 7bit
72484
+
72485
+ <!DOCTYPE html>
72486
+ <html>
72487
+ <head>
72488
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72489
+ <style>
72490
+ /* Email styles need to be inline */
72491
+ </style>
72492
+ </head>
72493
+
72494
+ <body>
72495
+ <h1>Confirm your email with the following code</h1>
72496
+
72497
+ <h2>341-436</h2>
72498
+
72499
+ Thanks
72500
+
72501
+ </body>
72502
+ </html>
72503
+
72504
+ Completed 401 Unauthorized in 32ms (ActiveRecord: 0.6ms)
72505
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72506
+ Processing by Devise::PinfirmableController#new as HTML
72507
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72508
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72509
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.6ms)
72510
+ Completed 200 OK in 11ms (Views: 7.5ms | ActiveRecord: 0.1ms)
72511
+ Started POST "/users/pinfirmable/resend_email" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72512
+ Processing by Devise::PinfirmableController#resend_email as HTML
72513
+ Parameters: {"utf8"=>"✓", "commit"=>"Not received an email?"}
72514
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72515
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72516
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
72517
+ PinfirmableMailer#pin_email: processed outbound mail in 25.3ms
72518
+ Sent mail to test@example.com (1.3ms)
72519
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72520
+ From: from@example.com
72521
+ To: test@example.com
72522
+ Message-ID: <57cedb18939d9_a5803fceecc3fa14959e@Gregs-MacBook-Pro.local.mail>
72523
+ Subject: Confirmation code: 341-436
72524
+ Mime-Version: 1.0
72525
+ Content-Type: text/html;
72526
+ charset=UTF-8
72527
+ Content-Transfer-Encoding: 7bit
72528
+
72529
+ <!DOCTYPE html>
72530
+ <html>
72531
+ <head>
72532
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72533
+ <style>
72534
+ /* Email styles need to be inline */
72535
+ </style>
72536
+ </head>
72537
+
72538
+ <body>
72539
+ <h1>Confirm your email with the following code</h1>
72540
+
72541
+ <h2>341-436</h2>
72542
+
72543
+ Thanks
72544
+
72545
+ </body>
72546
+ </html>
72547
+
72548
+ Redirected to http://www.example.com/users/confirmemail
72549
+ Completed 302 Found in 28ms (ActiveRecord: 0.1ms)
72550
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:04:56 +0100
72551
+ Processing by Devise::PinfirmableController#new as HTML
72552
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72553
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72554
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (2.0ms)
72555
+ Completed 200 OK in 11ms (Views: 8.1ms | ActiveRecord: 0.3ms)
72556
+  (0.9ms) rollback transaction
72557
+  (0.1ms) begin transaction
72558
+  (0.0ms) SAVEPOINT active_record_1
72559
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72560
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$v3JPm4T/tgx/Jr/3b80Ri.S1l8Q9.a7hqiuGLzTtHPIoY5f.WZAqS"], ["created_at", 2016-09-06 15:04:56 UTC], ["updated_at", 2016-09-06 15:04:56 UTC], ["pinfirmable_pin", "408563"]]
72561
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72562
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72563
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.5ms)
72564
+ PinfirmableMailer#pin_email: processed outbound mail in 28.2ms
72565
+ Sent mail to test@example.com (1.3ms)
72566
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72567
+ From: from@example.com
72568
+ To: test@example.com
72569
+ Message-ID: <57cedb189fb5a_a5803fceecc3fa14960c0@Gregs-MacBook-Pro.local.mail>
72570
+ Subject: Confirmation code: 408-563
72571
+ Mime-Version: 1.0
72572
+ Content-Type: text/html;
72573
+ charset=UTF-8
72574
+ Content-Transfer-Encoding: 7bit
72575
+
72576
+ <!DOCTYPE html>
72577
+ <html>
72578
+ <head>
72579
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72580
+ <style>
72581
+ /* Email styles need to be inline */
72582
+ </style>
72583
+ </head>
72584
+
72585
+ <body>
72586
+ <h1>Confirm your email with the following code</h1>
72587
+
72588
+ <h2>408-563</h2>
72589
+
72590
+ Thanks
72591
+
72592
+ </body>
72593
+ </html>
72594
+
72595
+ Processing by Devise::PinfirmableController#create as HTML
72596
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72597
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72598
+  (0.0ms) SAVEPOINT active_record_1
72599
+ SQL (0.3ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72601
+ Redirected to http://test.host/users/confirmemail
72602
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
72603
+  (0.6ms) rollback transaction
72604
+  (0.1ms) begin transaction
72605
+  (0.1ms) SAVEPOINT active_record_1
72606
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72607
+ SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$of2AgCJi32F7POKyLpbiBOjLjNweX9EzwISNOaKuX1LofxEIVcY1m"], ["created_at", 2016-09-06 15:04:56 UTC], ["updated_at", 2016-09-06 15:04:56 UTC], ["pinfirmable_pin", "347578"]]
72608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72609
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72610
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.1ms)
72611
+ PinfirmableMailer#pin_email: processed outbound mail in 1.4ms
72612
+ Sent mail to test@example.com (1.8ms)
72613
+ Date: Tue, 06 Sep 2016 16:04:56 +0100
72614
+ From: from@example.com
72615
+ To: test@example.com
72616
+ Message-ID: <57cedb18a36bc_a5803fceecc3fa14961ec@Gregs-MacBook-Pro.local.mail>
72617
+ Subject: Confirmation code: 347-578
72618
+ Mime-Version: 1.0
72619
+ Content-Type: text/html;
72620
+ charset=UTF-8
72621
+ Content-Transfer-Encoding: 7bit
72622
+
72623
+ <!DOCTYPE html>
72624
+ <html>
72625
+ <head>
72626
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72627
+ <style>
72628
+ /* Email styles need to be inline */
72629
+ </style>
72630
+ </head>
72631
+
72632
+ <body>
72633
+ <h1>Confirm your email with the following code</h1>
72634
+
72635
+ <h2>347-578</h2>
72636
+
72637
+ Thanks
72638
+
72639
+ </body>
72640
+ </html>
72641
+
72642
+ Processing by Devise::PinfirmableController#create as HTML
72643
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72644
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72645
+  (0.0ms) SAVEPOINT active_record_1
72646
+ SQL (0.3ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72647
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72648
+ Redirected to http://test.host/users/confirmemail
72649
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
72650
+ Processing by Devise::PinfirmableController#create as HTML
72651
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72652
+  (0.0ms) SAVEPOINT active_record_1
72653
+ SQL (0.1ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72655
+ Redirected to http://test.host/users/confirmemail
72656
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
72657
+ Processing by Devise::PinfirmableController#create as HTML
72658
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72659
+  (0.1ms) SAVEPOINT active_record_1
72660
+ SQL (0.1ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:05:56 UTC], ["pinfirmable_tries", 3], ["updated_at", 2016-09-06 15:04:56 UTC], ["id", 1]]
72661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72662
+ Redirected to http://test.host/users/confirmemail
72663
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
72664
+ Processing by Devise::PinfirmableController#create as HTML
72665
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72666
+  (0.0ms) SAVEPOINT active_record_1
72667
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", nil], ["pinfirmable_tries", 4], ["updated_at", 2016-09-06 15:06:56 UTC], ["id", 1]]
72668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72669
+ Redirected to http://test.host/users/confirmemail
72670
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72671
+ Processing by Devise::PinfirmableController#create as HTML
72672
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72673
+  (0.0ms) SAVEPOINT active_record_1
72674
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 5], ["id", 1]]
72675
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72676
+ Redirected to http://test.host/users/confirmemail
72677
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72678
+ Processing by Devise::PinfirmableController#create as HTML
72679
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72680
+  (0.0ms) SAVEPOINT active_record_1
72681
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:08:56 UTC], ["pinfirmable_tries", 6], ["id", 1]]
72682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72683
+ Redirected to http://test.host/users/confirmemail
72684
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72685
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
72686
+  (0.0ms) rollback transaction
72687
+  (0.0ms) begin transaction
72688
+  (0.0ms) SAVEPOINT active_record_1
72689
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72690
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$SzAFxupqDkWztGLTz5mY.OTH8WxNFsZDBHXXUwKUswllYN2zqSpU."], ["created_at", 2016-09-06 15:06:56 UTC], ["updated_at", 2016-09-06 15:06:56 UTC], ["pinfirmable_pin", "265511"]]
72691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72692
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72693
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
72694
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
72695
+ Sent mail to test@example.com (0.0ms)
72696
+ Date: Tue, 06 Sep 2016 16:06:56 +0100
72697
+ From: from@example.com
72698
+ To: test@example.com
72699
+ Message-ID: <57cedb90a6258_a5803fceecc3fa14962f7@Gregs-MacBook-Pro.local.mail>
72700
+ Subject: Confirmation code: 265-511
72701
+ Mime-Version: 1.0
72702
+ Content-Type: text/html;
72703
+ charset=UTF-8
72704
+ Content-Transfer-Encoding: 7bit
72705
+
72706
+ <!DOCTYPE html>
72707
+ <html>
72708
+ <head>
72709
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72710
+ <style>
72711
+ /* Email styles need to be inline */
72712
+ </style>
72713
+ </head>
72714
+
72715
+ <body>
72716
+ <h1>Confirm your email with the following code</h1>
72717
+
72718
+ <h2>265-511</h2>
72719
+
72720
+ Thanks
72721
+
72722
+ </body>
72723
+ </html>
72724
+
72725
+ Processing by Devise::PinfirmableController#create as HTML
72726
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72727
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72728
+  (0.0ms) SAVEPOINT active_record_1
72729
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
72730
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72731
+ Redirected to http://test.host/users/confirmemail
72732
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72733
+ Processing by Devise::PinfirmableController#create as HTML
72734
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72735
+  (0.0ms) SAVEPOINT active_record_1
72736
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
72737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72738
+ Redirected to http://test.host/users/confirmemail
72739
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72740
+ Processing by Devise::PinfirmableController#create as HTML
72741
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72742
+  (0.0ms) SAVEPOINT active_record_1
72743
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:07:56 UTC], ["pinfirmable_tries", 3], ["id", 1]]
72744
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72745
+ Redirected to http://test.host/users/confirmemail
72746
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72747
+ Processing by Devise::PinfirmableController#create as HTML
72748
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72749
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72750
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
72751
+ Completed 429 Too Many Requests in 0ms (Views: 15.0ms | ActiveRecord: 0.0ms)
72752
+  (0.0ms) rollback transaction
72753
+  (0.0ms) begin transaction
72754
+  (0.0ms) SAVEPOINT active_record_1
72755
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72756
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$oxmRWI5jJad3f9cbLsXUj.qqJh0/DjCrwSfBrfdLzo5.HA.eiWO7q"], ["created_at", 2016-09-06 15:06:56 UTC], ["updated_at", 2016-09-06 15:06:56 UTC], ["pinfirmable_pin", "283834"]]
72757
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72758
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72759
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
72760
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
72761
+ Sent mail to test@example.com (0.0ms)
72762
+ Date: Tue, 06 Sep 2016 16:06:56 +0100
72763
+ From: from@example.com
72764
+ To: test@example.com
72765
+ Message-ID: <57cedb90a6258_a5803fceecc3fa149636f@Gregs-MacBook-Pro.local.mail>
72766
+ Subject: Confirmation code: 283-834
72767
+ Mime-Version: 1.0
72768
+ Content-Type: text/html;
72769
+ charset=UTF-8
72770
+ Content-Transfer-Encoding: 7bit
72771
+
72772
+ <!DOCTYPE html>
72773
+ <html>
72774
+ <head>
72775
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72776
+ <style>
72777
+ /* Email styles need to be inline */
72778
+ </style>
72779
+ </head>
72780
+
72781
+ <body>
72782
+ <h1>Confirm your email with the following code</h1>
72783
+
72784
+ <h2>283-834</h2>
72785
+
72786
+ Thanks
72787
+
72788
+ </body>
72789
+ </html>
72790
+
72791
+ Processing by Devise::PinfirmableController#create as HTML
72792
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72793
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72794
+  (0.0ms) SAVEPOINT active_record_1
72795
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
72796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72797
+ Redirected to http://test.host/users/confirmemail
72798
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72799
+ Processing by Devise::PinfirmableController#create as HTML
72800
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72801
+  (0.0ms) SAVEPOINT active_record_1
72802
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
72803
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72804
+ Redirected to http://test.host/users/confirmemail
72805
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72806
+ Processing by Devise::PinfirmableController#create as HTML
72807
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72808
+  (0.0ms) SAVEPOINT active_record_1
72809
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:07:56 UTC], ["pinfirmable_tries", 3], ["id", 1]]
72810
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72811
+ Redirected to http://test.host/users/confirmemail
72812
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72813
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
72814
+  (0.0ms) rollback transaction
72815
+  (0.0ms) begin transaction
72816
+  (0.0ms) SAVEPOINT active_record_1
72817
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72818
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$AJLStFklGxEVOjA8g8u22eaD3.K1qATotxqKdPhiIFB50Uy1Tc7Ie"], ["created_at", 2016-09-06 15:06:56 UTC], ["updated_at", 2016-09-06 15:06:56 UTC], ["pinfirmable_pin", "150381"]]
72819
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72820
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72821
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
72822
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
72823
+ Sent mail to test@example.com (0.0ms)
72824
+ Date: Tue, 06 Sep 2016 16:06:56 +0100
72825
+ From: from@example.com
72826
+ To: test@example.com
72827
+ Message-ID: <57cedb90a6258_a5803fceecc3fa14964bf@Gregs-MacBook-Pro.local.mail>
72828
+ Subject: Confirmation code: 150-381
72829
+ Mime-Version: 1.0
72830
+ Content-Type: text/html;
72831
+ charset=UTF-8
72832
+ Content-Transfer-Encoding: 7bit
72833
+
72834
+ <!DOCTYPE html>
72835
+ <html>
72836
+ <head>
72837
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72838
+ <style>
72839
+ /* Email styles need to be inline */
72840
+ </style>
72841
+ </head>
72842
+
72843
+ <body>
72844
+ <h1>Confirm your email with the following code</h1>
72845
+
72846
+ <h2>150-381</h2>
72847
+
72848
+ Thanks
72849
+
72850
+ </body>
72851
+ </html>
72852
+
72853
+ Processing by Devise::PinfirmableController#create as HTML
72854
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72855
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72856
+  (0.0ms) SAVEPOINT active_record_1
72857
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
72858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72859
+ Redirected to http://test.host/users/confirmemail
72860
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72861
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
72862
+  (0.0ms) rollback transaction
72863
+  (0.0ms) begin transaction
72864
+  (0.0ms) SAVEPOINT active_record_1
72865
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72866
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$0utZOGPnhBklm1NPRWAOZ.6pBzUKHyL5Rc35wley3Hc2V1jcvzTra"], ["created_at", 2016-09-06 15:06:56 UTC], ["updated_at", 2016-09-06 15:06:56 UTC], ["pinfirmable_pin", "118814"]]
72867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72868
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72869
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
72870
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
72871
+ Sent mail to test@example.com (0.0ms)
72872
+ Date: Tue, 06 Sep 2016 16:06:56 +0100
72873
+ From: from@example.com
72874
+ To: test@example.com
72875
+ Message-ID: <57cedb90a6258_a5803fceecc3fa1496595@Gregs-MacBook-Pro.local.mail>
72876
+ Subject: Confirmation code: 118-814
72877
+ Mime-Version: 1.0
72878
+ Content-Type: text/html;
72879
+ charset=UTF-8
72880
+ Content-Transfer-Encoding: 7bit
72881
+
72882
+ <!DOCTYPE html>
72883
+ <html>
72884
+ <head>
72885
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72886
+ <style>
72887
+ /* Email styles need to be inline */
72888
+ </style>
72889
+ </head>
72890
+
72891
+ <body>
72892
+ <h1>Confirm your email with the following code</h1>
72893
+
72894
+ <h2>118-814</h2>
72895
+
72896
+ Thanks
72897
+
72898
+ </body>
72899
+ </html>
72900
+
72901
+ Processing by Devise::PinfirmableController#create as HTML
72902
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72903
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72904
+  (0.0ms) SAVEPOINT active_record_1
72905
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
72906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72907
+ Redirected to http://test.host/users/confirmemail
72908
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72909
+ Processing by Devise::PinfirmableController#create as HTML
72910
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72911
+  (0.0ms) SAVEPOINT active_record_1
72912
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
72913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72914
+ Redirected to http://test.host/users/confirmemail
72915
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72916
+ Processing by Devise::PinfirmableController#create as HTML
72917
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72918
+  (0.0ms) SAVEPOINT active_record_1
72919
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:07:56 UTC], ["pinfirmable_tries", 3], ["id", 1]]
72920
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72921
+ Redirected to http://test.host/users/confirmemail
72922
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72923
+ Processing by Devise::PinfirmableController#create as HTML
72924
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72925
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
72926
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
72927
+ Completed 429 Too Many Requests in 0ms (Views: 0.6ms | ActiveRecord: 0.0ms)
72928
+ Processing by Devise::PinfirmableController#create as HTML
72929
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
72930
+  (0.0ms) SAVEPOINT active_record_1
72931
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", nil], ["pinfirmable_tries", 4], ["updated_at", 2016-09-06 15:08:56 UTC], ["id", 1]]
72932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72933
+ Redirected to http://test.host/users/confirmemail
72934
+ Completed 302 Found in 0ms (Views: 0.6ms | ActiveRecord: 0.0ms)
72935
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
72936
+  (0.0ms) rollback transaction
72937
+  (0.0ms) begin transaction
72938
+  (0.0ms) SAVEPOINT active_record_1
72939
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72940
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$5YL/xQ4a.8fjw.FBA91Ks.7L2KhWU6h57I4JdQHmauH8j/wE2B67."], ["created_at", 2016-09-06 15:08:56 UTC], ["updated_at", 2016-09-06 15:08:56 UTC], ["pinfirmable_pin", "616747"]]
72941
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72942
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72943
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
72944
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
72945
+ Sent mail to test@example.com (0.0ms)
72946
+ Date: Tue, 06 Sep 2016 16:08:56 +0100
72947
+ From: from@example.com
72948
+ To: test@example.com
72949
+ Message-ID: <57cedc08a6258_a5803fceecc3fa14966c4@Gregs-MacBook-Pro.local.mail>
72950
+ Subject: Confirmation code: 616-747
72951
+ Mime-Version: 1.0
72952
+ Content-Type: text/html;
72953
+ charset=UTF-8
72954
+ Content-Transfer-Encoding: 7bit
72955
+
72956
+ <!DOCTYPE html>
72957
+ <html>
72958
+ <head>
72959
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
72960
+ <style>
72961
+ /* Email styles need to be inline */
72962
+ </style>
72963
+ </head>
72964
+
72965
+ <body>
72966
+ <h1>Confirm your email with the following code</h1>
72967
+
72968
+ <h2>616-747</h2>
72969
+
72970
+ Thanks
72971
+
72972
+ </body>
72973
+ </html>
72974
+
72975
+ Processing by Devise::PinfirmableController#create as HTML
72976
+ Parameters: {"digits"=>["6", "1", "6", "7", "4", "7"]}
72977
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
72978
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
72979
+  (0.0ms) rollback transaction
72980
+  (0.0ms) begin transaction
72981
+  (0.0ms) SAVEPOINT active_record_1
72982
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
72983
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$iSaMO9C0900S8t.7C7uJ1eWisSQ7PgDswh97/9SpI4rbdXX4UNDM."], ["created_at", 2016-09-06 15:08:56 UTC], ["updated_at", 2016-09-06 15:08:56 UTC], ["pinfirmable_pin", "373685"]]
72984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
72985
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
72986
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
72987
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
72988
+ Sent mail to test@example.com (0.0ms)
72989
+ Date: Tue, 06 Sep 2016 16:08:56 +0100
72990
+ From: from@example.com
72991
+ To: test@example.com
72992
+ Message-ID: <57cedc08a6258_a5803fceecc3fa149671b@Gregs-MacBook-Pro.local.mail>
72993
+ Subject: Confirmation code: 373-685
72994
+ Mime-Version: 1.0
72995
+ Content-Type: text/html;
72996
+ charset=UTF-8
72997
+ Content-Transfer-Encoding: 7bit
72998
+
72999
+ <!DOCTYPE html>
73000
+ <html>
73001
+ <head>
73002
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73003
+ <style>
73004
+ /* Email styles need to be inline */
73005
+ </style>
73006
+ </head>
73007
+
73008
+ <body>
73009
+ <h1>Confirm your email with the following code</h1>
73010
+
73011
+ <h2>373-685</h2>
73012
+
73013
+ Thanks
73014
+
73015
+ </body>
73016
+ </html>
73017
+
73018
+ Processing by Devise::PinfirmableController#resend_email as HTML
73019
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73020
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73021
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73022
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73023
+ Sent mail to test@example.com (0.0ms)
73024
+ Date: Tue, 06 Sep 2016 16:08:56 +0100
73025
+ From: from@example.com
73026
+ To: test@example.com
73027
+ Message-ID: <57cedc08a6258_a5803fceecc3fa1496830@Gregs-MacBook-Pro.local.mail>
73028
+ Subject: Confirmation code: 373-685
73029
+ Mime-Version: 1.0
73030
+ Content-Type: text/html;
73031
+ charset=UTF-8
73032
+ Content-Transfer-Encoding: 7bit
73033
+
73034
+ <!DOCTYPE html>
73035
+ <html>
73036
+ <head>
73037
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73038
+ <style>
73039
+ /* Email styles need to be inline */
73040
+ </style>
73041
+ </head>
73042
+
73043
+ <body>
73044
+ <h1>Confirm your email with the following code</h1>
73045
+
73046
+ <h2>373-685</h2>
73047
+
73048
+ Thanks
73049
+
73050
+ </body>
73051
+ </html>
73052
+
73053
+ Redirected to http://test.host/users/confirmemail
73054
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73055
+  (0.0ms) rollback transaction
73056
+  (0.0ms) begin transaction
73057
+  (0.0ms) SAVEPOINT active_record_1
73058
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73059
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$NWT5nEQYKfLtzA57wRPGw.as0cbdsV7nb/dKeoQJMRIPmEfEIXtM."], ["created_at", 2016-09-06 15:08:56 UTC], ["updated_at", 2016-09-06 15:08:56 UTC], ["pinfirmable_pin", "727775"]]
73060
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73061
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73062
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73063
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73064
+ Sent mail to test@example.com (0.0ms)
73065
+ Date: Tue, 06 Sep 2016 16:08:56 +0100
73066
+ From: from@example.com
73067
+ To: test@example.com
73068
+ Message-ID: <57cedc08a6258_a5803fceecc3fa149696d@Gregs-MacBook-Pro.local.mail>
73069
+ Subject: Confirmation code: 727-775
73070
+ Mime-Version: 1.0
73071
+ Content-Type: text/html;
73072
+ charset=UTF-8
73073
+ Content-Transfer-Encoding: 7bit
73074
+
73075
+ <!DOCTYPE html>
73076
+ <html>
73077
+ <head>
73078
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73079
+ <style>
73080
+ /* Email styles need to be inline */
73081
+ </style>
73082
+ </head>
73083
+
73084
+ <body>
73085
+ <h1>Confirm your email with the following code</h1>
73086
+
73087
+ <h2>727-775</h2>
73088
+
73089
+ Thanks
73090
+
73091
+ </body>
73092
+ </html>
73093
+
73094
+ Processing by Devise::PinfirmableController#resend_email as HTML
73095
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73096
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73097
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73098
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73099
+ Sent mail to test@example.com (0.0ms)
73100
+ Date: Tue, 06 Sep 2016 16:08:56 +0100
73101
+ From: from@example.com
73102
+ To: test@example.com
73103
+ Message-ID: <57cedc08a6258_a5803fceecc3fa149703e@Gregs-MacBook-Pro.local.mail>
73104
+ Subject: Confirmation code: 727-775
73105
+ Mime-Version: 1.0
73106
+ Content-Type: text/html;
73107
+ charset=UTF-8
73108
+ Content-Transfer-Encoding: 7bit
73109
+
73110
+ <!DOCTYPE html>
73111
+ <html>
73112
+ <head>
73113
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73114
+ <style>
73115
+ /* Email styles need to be inline */
73116
+ </style>
73117
+ </head>
73118
+
73119
+ <body>
73120
+ <h1>Confirm your email with the following code</h1>
73121
+
73122
+ <h2>727-775</h2>
73123
+
73124
+ Thanks
73125
+
73126
+ </body>
73127
+ </html>
73128
+
73129
+ Redirected to http://test.host/users/confirmemail
73130
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73131
+  (0.0ms) rollback transaction
73132
+  (0.0ms) begin transaction
73133
+  (0.0ms) rollback transaction
73134
+  (0.0ms) begin transaction
73135
+  (0.0ms) rollback transaction
73136
+  (0.0ms) begin transaction
73137
+  (0.0ms) rollback transaction
73138
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
73139
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
73140
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
73141
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
73142
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
73143
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
73144
+  (2.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "pinfirmable_pin" varchar, "pinfirmable_tries" integer DEFAULT 0, "pinfirmable_lockout" datetime)
73145
+  (0.1ms) select sqlite_version(*)
73146
+  (1.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
73147
+  (0.1ms)  SELECT sql
73148
+ FROM sqlite_master
73149
+ WHERE name='index_users_on_email' AND type='index'
73150
+ UNION ALL
73151
+ SELECT sql
73152
+ FROM sqlite_temp_master
73153
+ WHERE name='index_users_on_email' AND type='index'
73154
+ 
73155
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
73156
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
73157
+  (0.1ms) SELECT version FROM "schema_migrations"
73158
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20160901131628')
73159
+  (0.8ms) INSERT INTO schema_migrations (version) VALUES ('20160901092452');
73160
+
73161
+ 
73162
+  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
73163
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
73164
+  (0.0ms) begin transaction
73165
+ SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-09-06 15:06:18 UTC], ["updated_at", 2016-09-06 15:06:18 UTC]]
73166
+  (0.7ms) commit transaction
73167
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
73168
+  (0.0ms) begin transaction
73169
+  (0.0ms) commit transaction
73170
+  (0.6ms) begin transaction
73171
+ Processing by Devise::PinfirmableController#new as HTML
73172
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73173
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.7ms)
73174
+ Completed 200 OK in 25ms (Views: 15.2ms | ActiveRecord: 0.0ms)
73175
+  (0.1ms) rollback transaction
73176
+  (0.1ms) begin transaction
73177
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:06:20 +0100
73178
+ Processing by Devise::RegistrationsController#new as HTML
73179
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
73180
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.9ms)
73181
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (20.7ms)
73182
+ Completed 200 OK in 178ms (Views: 160.6ms | ActiveRecord: 1.3ms)
73183
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:06:20 +0100
73184
+ Processing by Devise::RegistrationsController#create as HTML
73185
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
73186
+  (0.1ms) SAVEPOINT active_record_1
73187
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73188
+ SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$RAV7j/LMAP.CdG0PfEipkOP1se6heap17Hr.0c4Gtp08ScCT4RSRO"], ["created_at", 2016-09-06 15:06:20 UTC], ["updated_at", 2016-09-06 15:06:20 UTC], ["pinfirmable_pin", "870262"]]
73189
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73190
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73191
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.5ms)
73192
+ PinfirmableMailer#pin_email: processed outbound mail in 208.9ms
73193
+ Sent mail to test@example.com (4.9ms)
73194
+ Date: Tue, 06 Sep 2016 16:06:20 +0100
73195
+ From: from@example.com
73196
+ To: test@example.com
73197
+ Message-ID: <57cedb6ce62fa_a6613fc4ee03fa149961b@Gregs-MacBook-Pro.local.mail>
73198
+ Subject: Confirmation code: 870-262
73199
+ Mime-Version: 1.0
73200
+ Content-Type: text/html;
73201
+ charset=UTF-8
73202
+ Content-Transfer-Encoding: 7bit
73203
+
73204
+ <!DOCTYPE html>
73205
+ <html>
73206
+ <head>
73207
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73208
+ <style>
73209
+ /* Email styles need to be inline */
73210
+ </style>
73211
+ </head>
73212
+
73213
+ <body>
73214
+ <h1>Confirm your email with the following code</h1>
73215
+
73216
+ <h2>870-262</h2>
73217
+
73218
+ Thanks
73219
+
73220
+ </body>
73221
+ </html>
73222
+
73223
+ Completed 401 Unauthorized in 245ms (ActiveRecord: 0.6ms)
73224
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:06:20 +0100
73225
+ Processing by Devise::PinfirmableController#new as HTML
73226
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73227
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73228
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.6ms)
73229
+ Completed 200 OK in 13ms (Views: 7.5ms | ActiveRecord: 0.1ms)
73230
+ Started POST "/users/pinfirmable/resend_email" for 127.0.0.1 at 2016-09-06 16:06:20 +0100
73231
+ Processing by Devise::PinfirmableController#resend_email as HTML
73232
+ Parameters: {"utf8"=>"✓", "commit"=>"Not received an email?"}
73233
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73234
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73235
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
73236
+ PinfirmableMailer#pin_email: processed outbound mail in 26.1ms
73237
+ Sent mail to test@example.com (1.4ms)
73238
+ Date: Tue, 06 Sep 2016 16:06:20 +0100
73239
+ From: from@example.com
73240
+ To: test@example.com
73241
+ Message-ID: <57cedb6cf1d67_a6613fc4ee03fa14997f1@Gregs-MacBook-Pro.local.mail>
73242
+ Subject: Confirmation code: 870-262
73243
+ Mime-Version: 1.0
73244
+ Content-Type: text/html;
73245
+ charset=UTF-8
73246
+ Content-Transfer-Encoding: 7bit
73247
+
73248
+ <!DOCTYPE html>
73249
+ <html>
73250
+ <head>
73251
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73252
+ <style>
73253
+ /* Email styles need to be inline */
73254
+ </style>
73255
+ </head>
73256
+
73257
+ <body>
73258
+ <h1>Confirm your email with the following code</h1>
73259
+
73260
+ <h2>870-262</h2>
73261
+
73262
+ Thanks
73263
+
73264
+ </body>
73265
+ </html>
73266
+
73267
+ Redirected to http://www.example.com/users/confirmemail
73268
+ Completed 302 Found in 30ms (ActiveRecord: 0.2ms)
73269
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:06:20 +0100
73270
+ Processing by Devise::PinfirmableController#new as HTML
73271
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73272
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73273
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (1.7ms)
73274
+ Completed 200 OK in 11ms (Views: 7.8ms | ActiveRecord: 0.1ms)
73275
+  (1.1ms) rollback transaction
73276
+  (0.1ms) begin transaction
73277
+  (0.0ms) SAVEPOINT active_record_1
73278
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73279
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$a7hU184ioVRHk59P1T2n3e1i.9krpF8u/cLgIP7Y.jtiG6lqZkHHq"], ["created_at", 2016-09-06 15:06:21 UTC], ["updated_at", 2016-09-06 15:06:21 UTC], ["pinfirmable_pin", "205365"]]
73280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
73281
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73282
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
73283
+ PinfirmableMailer#pin_email: processed outbound mail in 27.6ms
73284
+ Sent mail to test@example.com (1.3ms)
73285
+ Date: Tue, 06 Sep 2016 16:06:21 +0100
73286
+ From: from@example.com
73287
+ To: test@example.com
73288
+ Message-ID: <57cedb6d9ddf_a6613fc4ee03fa1499824@Gregs-MacBook-Pro.local.mail>
73289
+ Subject: Confirmation code: 205-365
73290
+ Mime-Version: 1.0
73291
+ Content-Type: text/html;
73292
+ charset=UTF-8
73293
+ Content-Transfer-Encoding: 7bit
73294
+
73295
+ <!DOCTYPE html>
73296
+ <html>
73297
+ <head>
73298
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73299
+ <style>
73300
+ /* Email styles need to be inline */
73301
+ </style>
73302
+ </head>
73303
+
73304
+ <body>
73305
+ <h1>Confirm your email with the following code</h1>
73306
+
73307
+ <h2>205-365</h2>
73308
+
73309
+ Thanks
73310
+
73311
+ </body>
73312
+ </html>
73313
+
73314
+ Processing by Devise::PinfirmableController#create as HTML
73315
+ Parameters: {"digits"=>["2", "0", "5", "3", "6", "5"]}
73316
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73317
+  (0.0ms) SAVEPOINT active_record_1
73318
+ SQL (0.3ms) UPDATE "users" SET "pinfirmable_pin" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_pin", nil], ["updated_at", 2016-09-06 15:06:21 UTC], ["id", 1]]
73319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73320
+ Redirected to http://test.host/
73321
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
73322
+  (0.7ms) rollback transaction
73323
+  (0.0ms) begin transaction
73324
+  (0.1ms) SAVEPOINT active_record_1
73325
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73326
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$IydMMlCBgTBHeKcmdGlbouZriX4uF7PObnWN9eX9m32r79.TWndKW"], ["created_at", 2016-09-06 15:06:21 UTC], ["updated_at", 2016-09-06 15:06:21 UTC], ["pinfirmable_pin", "345330"]]
73327
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73328
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73329
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.1ms)
73330
+ PinfirmableMailer#pin_email: processed outbound mail in 1.1ms
73331
+ Sent mail to test@example.com (1.3ms)
73332
+ Date: Tue, 06 Sep 2016 16:06:21 +0100
73333
+ From: from@example.com
73334
+ To: test@example.com
73335
+ Message-ID: <57cedb6dd67e_a6613fc4ee03fa1499936@Gregs-MacBook-Pro.local.mail>
73336
+ Subject: Confirmation code: 345-330
73337
+ Mime-Version: 1.0
73338
+ Content-Type: text/html;
73339
+ charset=UTF-8
73340
+ Content-Transfer-Encoding: 7bit
73341
+
73342
+ <!DOCTYPE html>
73343
+ <html>
73344
+ <head>
73345
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73346
+ <style>
73347
+ /* Email styles need to be inline */
73348
+ </style>
73349
+ </head>
73350
+
73351
+ <body>
73352
+ <h1>Confirm your email with the following code</h1>
73353
+
73354
+ <h2>345-330</h2>
73355
+
73356
+ Thanks
73357
+
73358
+ </body>
73359
+ </html>
73360
+
73361
+ Processing by Devise::PinfirmableController#create as HTML
73362
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73363
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73364
+  (0.0ms) SAVEPOINT active_record_1
73365
+ SQL (0.3ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["updated_at", 2016-09-06 15:06:21 UTC], ["id", 1]]
73366
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73367
+ Redirected to http://test.host/users/confirmemail
73368
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
73369
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
73370
+  (0.6ms) rollback transaction
73371
+  (0.1ms) begin transaction
73372
+  (0.1ms) SAVEPOINT active_record_1
73373
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73374
+ SQL (0.9ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$h7FabzXxj07vb3RMMt3GF.7jEZ/bbQCBFOY21aRIu1GPbTy9/UD8O"], ["created_at", 2016-09-06 15:06:21 UTC], ["updated_at", 2016-09-06 15:06:21 UTC], ["pinfirmable_pin", "201577"]]
73375
+  (0.2ms) RELEASE SAVEPOINT active_record_1
73376
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73377
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.1ms)
73378
+ PinfirmableMailer#pin_email: processed outbound mail in 1.2ms
73379
+ Sent mail to test@example.com (1.8ms)
73380
+ Date: Tue, 06 Sep 2016 16:06:21 +0100
73381
+ From: from@example.com
73382
+ To: test@example.com
73383
+ Message-ID: <57cedb6d11142_a6613fc4ee03fa14100012@Gregs-MacBook-Pro.local.mail>
73384
+ Subject: Confirmation code: 201-577
73385
+ Mime-Version: 1.0
73386
+ Content-Type: text/html;
73387
+ charset=UTF-8
73388
+ Content-Transfer-Encoding: 7bit
73389
+
73390
+ <!DOCTYPE html>
73391
+ <html>
73392
+ <head>
73393
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73394
+ <style>
73395
+ /* Email styles need to be inline */
73396
+ </style>
73397
+ </head>
73398
+
73399
+ <body>
73400
+ <h1>Confirm your email with the following code</h1>
73401
+
73402
+ <h2>201-577</h2>
73403
+
73404
+ Thanks
73405
+
73406
+ </body>
73407
+ </html>
73408
+
73409
+ Processing by Devise::PinfirmableController#create as HTML
73410
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73411
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73412
+  (0.0ms) SAVEPOINT active_record_1
73413
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["updated_at", 2016-09-06 15:06:21 UTC], ["id", 1]]
73414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73415
+ Redirected to http://test.host/users/confirmemail
73416
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73417
+ Processing by Devise::PinfirmableController#create as HTML
73418
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73419
+  (0.0ms) SAVEPOINT active_record_1
73420
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
73421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73422
+ Redirected to http://test.host/users/confirmemail
73423
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73424
+ Processing by Devise::PinfirmableController#create as HTML
73425
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73426
+  (0.0ms) SAVEPOINT active_record_1
73427
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:07:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
73428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73429
+ Redirected to http://test.host/users/confirmemail
73430
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73431
+ Processing by Devise::PinfirmableController#create as HTML
73432
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73433
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73434
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73435
+ Completed 429 Too Many Requests in 0ms (Views: 14.7ms | ActiveRecord: 0.0ms)
73436
+  (0.0ms) rollback transaction
73437
+  (0.0ms) begin transaction
73438
+  (0.0ms) SAVEPOINT active_record_1
73439
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73440
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$0r5A78K80YNwBxnvupeXDuLeqZFw9rVtjk4OoC/nNRFF1Tv0NP5K2"], ["created_at", 2016-09-06 15:06:21 UTC], ["updated_at", 2016-09-06 15:06:21 UTC], ["pinfirmable_pin", "204158"]]
73441
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73442
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73443
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73444
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73445
+ Sent mail to test@example.com (0.0ms)
73446
+ Date: Tue, 06 Sep 2016 16:06:21 +0100
73447
+ From: from@example.com
73448
+ To: test@example.com
73449
+ Message-ID: <57cedb6d116c8_a6613fc4ee03fa14100140@Gregs-MacBook-Pro.local.mail>
73450
+ Subject: Confirmation code: 204-158
73451
+ Mime-Version: 1.0
73452
+ Content-Type: text/html;
73453
+ charset=UTF-8
73454
+ Content-Transfer-Encoding: 7bit
73455
+
73456
+ <!DOCTYPE html>
73457
+ <html>
73458
+ <head>
73459
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73460
+ <style>
73461
+ /* Email styles need to be inline */
73462
+ </style>
73463
+ </head>
73464
+
73465
+ <body>
73466
+ <h1>Confirm your email with the following code</h1>
73467
+
73468
+ <h2>204-158</h2>
73469
+
73470
+ Thanks
73471
+
73472
+ </body>
73473
+ </html>
73474
+
73475
+ Processing by Devise::PinfirmableController#create as HTML
73476
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73477
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73478
+  (0.0ms) SAVEPOINT active_record_1
73479
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
73480
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73481
+ Redirected to http://test.host/users/confirmemail
73482
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73483
+ Processing by Devise::PinfirmableController#create as HTML
73484
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73485
+  (0.0ms) SAVEPOINT active_record_1
73486
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
73487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73488
+ Redirected to http://test.host/users/confirmemail
73489
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73490
+ Processing by Devise::PinfirmableController#create as HTML
73491
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73492
+  (0.0ms) SAVEPOINT active_record_1
73493
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:07:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
73494
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73495
+ Redirected to http://test.host/users/confirmemail
73496
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73497
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
73498
+  (0.0ms) rollback transaction
73499
+  (0.0ms) begin transaction
73500
+  (0.0ms) SAVEPOINT active_record_1
73501
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73502
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$SjAxMB0vFXFsnMDHyVcmwuYI69Uu.8FgK1DSxJ8CunPjcB1qqLvGK"], ["created_at", 2016-09-06 15:06:21 UTC], ["updated_at", 2016-09-06 15:06:21 UTC], ["pinfirmable_pin", "414827"]]
73503
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73504
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73505
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73506
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73507
+ Sent mail to test@example.com (0.0ms)
73508
+ Date: Tue, 06 Sep 2016 16:06:21 +0100
73509
+ From: from@example.com
73510
+ To: test@example.com
73511
+ Message-ID: <57cedb6d116c8_a6613fc4ee03fa14100237@Gregs-MacBook-Pro.local.mail>
73512
+ Subject: Confirmation code: 414-827
73513
+ Mime-Version: 1.0
73514
+ Content-Type: text/html;
73515
+ charset=UTF-8
73516
+ Content-Transfer-Encoding: 7bit
73517
+
73518
+ <!DOCTYPE html>
73519
+ <html>
73520
+ <head>
73521
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73522
+ <style>
73523
+ /* Email styles need to be inline */
73524
+ </style>
73525
+ </head>
73526
+
73527
+ <body>
73528
+ <h1>Confirm your email with the following code</h1>
73529
+
73530
+ <h2>414-827</h2>
73531
+
73532
+ Thanks
73533
+
73534
+ </body>
73535
+ </html>
73536
+
73537
+ Processing by Devise::PinfirmableController#create as HTML
73538
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73539
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73540
+  (0.0ms) SAVEPOINT active_record_1
73541
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
73542
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73543
+ Redirected to http://test.host/users/confirmemail
73544
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73545
+ Processing by Devise::PinfirmableController#create as HTML
73546
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73547
+  (0.0ms) SAVEPOINT active_record_1
73548
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
73549
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73550
+ Redirected to http://test.host/users/confirmemail
73551
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73552
+ Processing by Devise::PinfirmableController#create as HTML
73553
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73554
+  (0.0ms) SAVEPOINT active_record_1
73555
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:07:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
73556
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73557
+ Redirected to http://test.host/users/confirmemail
73558
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73559
+ Processing by Devise::PinfirmableController#create as HTML
73560
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73561
+  (0.0ms) SAVEPOINT active_record_1
73562
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", nil], ["pinfirmable_tries", 4], ["updated_at", 2016-09-06 15:08:21 UTC], ["id", 1]]
73563
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73564
+ Redirected to http://test.host/users/confirmemail
73565
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73566
+ Processing by Devise::PinfirmableController#create as HTML
73567
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73568
+  (0.0ms) SAVEPOINT active_record_1
73569
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 5], ["id", 1]]
73570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73571
+ Redirected to http://test.host/users/confirmemail
73572
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73573
+ Processing by Devise::PinfirmableController#create as HTML
73574
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73575
+  (0.0ms) SAVEPOINT active_record_1
73576
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:10:21 UTC], ["pinfirmable_tries", 6], ["id", 1]]
73577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73578
+ Redirected to http://test.host/users/confirmemail
73579
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73580
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
73581
+  (0.0ms) rollback transaction
73582
+  (0.0ms) begin transaction
73583
+  (0.0ms) SAVEPOINT active_record_1
73584
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73585
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$.yWaDebkQIBLQlvKQfzPLeY2Rpl2osKVftTVWFzHk4iyooiAahI0u"], ["created_at", 2016-09-06 15:08:21 UTC], ["updated_at", 2016-09-06 15:08:21 UTC], ["pinfirmable_pin", "648356"]]
73586
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73587
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73588
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73589
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73590
+ Sent mail to test@example.com (0.0ms)
73591
+ Date: Tue, 06 Sep 2016 16:08:21 +0100
73592
+ From: from@example.com
73593
+ To: test@example.com
73594
+ Message-ID: <57cedbe5116c8_a6613fc4ee03fa14100388@Gregs-MacBook-Pro.local.mail>
73595
+ Subject: Confirmation code: 648-356
73596
+ Mime-Version: 1.0
73597
+ Content-Type: text/html;
73598
+ charset=UTF-8
73599
+ Content-Transfer-Encoding: 7bit
73600
+
73601
+ <!DOCTYPE html>
73602
+ <html>
73603
+ <head>
73604
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73605
+ <style>
73606
+ /* Email styles need to be inline */
73607
+ </style>
73608
+ </head>
73609
+
73610
+ <body>
73611
+ <h1>Confirm your email with the following code</h1>
73612
+
73613
+ <h2>648-356</h2>
73614
+
73615
+ Thanks
73616
+
73617
+ </body>
73618
+ </html>
73619
+
73620
+ Processing by Devise::PinfirmableController#create as HTML
73621
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73622
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73623
+  (0.0ms) SAVEPOINT active_record_1
73624
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
73625
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73626
+ Redirected to http://test.host/users/confirmemail
73627
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73628
+ Processing by Devise::PinfirmableController#create as HTML
73629
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73630
+  (0.0ms) SAVEPOINT active_record_1
73631
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
73632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73633
+ Redirected to http://test.host/users/confirmemail
73634
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73635
+ Processing by Devise::PinfirmableController#create as HTML
73636
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73637
+  (0.0ms) SAVEPOINT active_record_1
73638
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:09:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
73639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73640
+ Redirected to http://test.host/users/confirmemail
73641
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73642
+ Processing by Devise::PinfirmableController#create as HTML
73643
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73644
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73645
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73646
+ Completed 429 Too Many Requests in 0ms (Views: 0.5ms | ActiveRecord: 0.0ms)
73647
+ Processing by Devise::PinfirmableController#create as HTML
73648
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73649
+  (0.0ms) SAVEPOINT active_record_1
73650
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", nil], ["pinfirmable_tries", 4], ["updated_at", 2016-09-06 15:10:21 UTC], ["id", 1]]
73651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73652
+ Redirected to http://test.host/users/confirmemail
73653
+ Completed 302 Found in 0ms (Views: 0.5ms | ActiveRecord: 0.0ms)
73654
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
73655
+  (0.0ms) rollback transaction
73656
+  (0.0ms) begin transaction
73657
+  (0.0ms) SAVEPOINT active_record_1
73658
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73659
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$x5XpBBGKGUF55qjJ5hP7a.xEP5uY03EYeyLR5CuB0zxDGpXM8tYMq"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "133250"]]
73660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73661
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73662
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73663
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73664
+ Sent mail to test@example.com (0.0ms)
73665
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
73666
+ From: from@example.com
73667
+ To: test@example.com
73668
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa14100446@Gregs-MacBook-Pro.local.mail>
73669
+ Subject: Confirmation code: 133-250
73670
+ Mime-Version: 1.0
73671
+ Content-Type: text/html;
73672
+ charset=UTF-8
73673
+ Content-Transfer-Encoding: 7bit
73674
+
73675
+ <!DOCTYPE html>
73676
+ <html>
73677
+ <head>
73678
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73679
+ <style>
73680
+ /* Email styles need to be inline */
73681
+ </style>
73682
+ </head>
73683
+
73684
+ <body>
73685
+ <h1>Confirm your email with the following code</h1>
73686
+
73687
+ <h2>133-250</h2>
73688
+
73689
+ Thanks
73690
+
73691
+ </body>
73692
+ </html>
73693
+
73694
+ Processing by Devise::PinfirmableController#create as HTML
73695
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
73696
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73697
+  (0.0ms) SAVEPOINT active_record_1
73698
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
73699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73700
+ Redirected to http://test.host/users/confirmemail
73701
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73702
+  (0.0ms) rollback transaction
73703
+  (0.0ms) begin transaction
73704
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73705
+ Processing by Devise::RegistrationsController#new as HTML
73706
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
73707
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
73708
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
73709
+ Completed 200 OK in 0ms (Views: 13.2ms | ActiveRecord: 0.0ms)
73710
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73711
+ Processing by Devise::RegistrationsController#create as HTML
73712
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
73713
+  (0.0ms) SAVEPOINT active_record_1
73714
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73715
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$noqM9DCVtaXR89Q85c4zmuAU25.o/N7dxv7jfqHUgZ7cbnqz9EetW"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "118353"]]
73716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73717
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73718
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73719
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73720
+ Sent mail to test@example.com (0.0ms)
73721
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
73722
+ From: from@example.com
73723
+ To: test@example.com
73724
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa141005f9@Gregs-MacBook-Pro.local.mail>
73725
+ Subject: Confirmation code: 118-353
73726
+ Mime-Version: 1.0
73727
+ Content-Type: text/html;
73728
+ charset=UTF-8
73729
+ Content-Transfer-Encoding: 7bit
73730
+
73731
+ <!DOCTYPE html>
73732
+ <html>
73733
+ <head>
73734
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73735
+ <style>
73736
+ /* Email styles need to be inline */
73737
+ </style>
73738
+ </head>
73739
+
73740
+ <body>
73741
+ <h1>Confirm your email with the following code</h1>
73742
+
73743
+ <h2>118-353</h2>
73744
+
73745
+ Thanks
73746
+
73747
+ </body>
73748
+ </html>
73749
+
73750
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
73751
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73752
+ Processing by Devise::PinfirmableController#new as HTML
73753
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73754
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73755
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73756
+ Completed 200 OK in 0ms (Views: 8.2ms | ActiveRecord: 0.0ms)
73757
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73758
+ Processing by Devise::PinfirmableController#create as HTML
73759
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
73760
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73761
+  (0.0ms) SAVEPOINT active_record_1
73762
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
73763
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73764
+ Redirected to http://www.example.com/users/confirmemail
73765
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73766
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73767
+ Processing by Devise::PinfirmableController#new as HTML
73768
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73769
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73770
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73771
+ Completed 200 OK in 0ms (Views: 7.7ms | ActiveRecord: 0.0ms)
73772
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73773
+ Processing by Devise::PinfirmableController#create as HTML
73774
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
73775
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73776
+  (0.0ms) SAVEPOINT active_record_1
73777
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
73778
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73779
+ Redirected to http://www.example.com/users/confirmemail
73780
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73781
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73782
+ Processing by Devise::PinfirmableController#new as HTML
73783
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73784
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73785
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73786
+ Completed 200 OK in 0ms (Views: 7.3ms | ActiveRecord: 0.0ms)
73787
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73788
+ Processing by Devise::PinfirmableController#create as HTML
73789
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
73790
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73791
+  (0.0ms) SAVEPOINT active_record_1
73792
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:11:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
73793
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73794
+ Redirected to http://www.example.com/users/confirmemail
73795
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73796
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73797
+ Processing by Devise::PinfirmableController#new as HTML
73798
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73799
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73800
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73801
+ Completed 200 OK in 0ms (Views: 7.3ms | ActiveRecord: 0.0ms)
73802
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73803
+ Processing by Devise::PinfirmableController#create as HTML
73804
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
73805
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73806
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73807
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73808
+ Completed 429 Too Many Requests in 0ms (Views: 10.9ms | ActiveRecord: 0.0ms)
73809
+  (0.0ms) rollback transaction
73810
+  (0.0ms) begin transaction
73811
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73812
+ Processing by Devise::RegistrationsController#new as HTML
73813
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
73814
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
73815
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
73816
+ Completed 200 OK in 0ms (Views: 11.9ms | ActiveRecord: 0.0ms)
73817
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73818
+ Processing by Devise::RegistrationsController#create as HTML
73819
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
73820
+  (0.0ms) SAVEPOINT active_record_1
73821
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73822
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$JOq3TDA7FEiJU834bJzvbeyzEKhALaAZ6K2oF4XbPzKC1GgcgkHse"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "614758"]]
73823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73824
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73825
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73826
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73827
+ Sent mail to test@example.com (0.0ms)
73828
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
73829
+ From: from@example.com
73830
+ To: test@example.com
73831
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa14100682@Gregs-MacBook-Pro.local.mail>
73832
+ Subject: Confirmation code: 614-758
73833
+ Mime-Version: 1.0
73834
+ Content-Type: text/html;
73835
+ charset=UTF-8
73836
+ Content-Transfer-Encoding: 7bit
73837
+
73838
+ <!DOCTYPE html>
73839
+ <html>
73840
+ <head>
73841
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73842
+ <style>
73843
+ /* Email styles need to be inline */
73844
+ </style>
73845
+ </head>
73846
+
73847
+ <body>
73848
+ <h1>Confirm your email with the following code</h1>
73849
+
73850
+ <h2>614-758</h2>
73851
+
73852
+ Thanks
73853
+
73854
+ </body>
73855
+ </html>
73856
+
73857
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
73858
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73859
+ Processing by Devise::PinfirmableController#new as HTML
73860
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73861
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73862
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73863
+ Completed 200 OK in 0ms (Views: 7.4ms | ActiveRecord: 0.0ms)
73864
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73865
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73866
+ Processing by Devise::PinfirmableController#create as HTML
73867
+ Parameters: {"utf8"=>"✓", "digits"=>["6", "1", "4", "7", "5", "8"], "commit"=>"GO!"}
73868
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73869
+  (0.0ms) SAVEPOINT active_record_1
73870
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_pin" = ? WHERE "users"."id" = ? [["pinfirmable_pin", nil], ["id", 1]]
73871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73872
+ Redirected to http://www.example.com/
73873
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
73874
+ Started GET "/" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73875
+ Processing by ApplicationController#index as HTML
73876
+ Rendering text template
73877
+ Rendered text template (0.0ms)
73878
+ Completed 200 OK in 0ms (Views: 1.0ms | ActiveRecord: 0.0ms)
73879
+  (0.0ms) rollback transaction
73880
+  (0.0ms) begin transaction
73881
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73882
+ Processing by Devise::RegistrationsController#new as HTML
73883
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
73884
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
73885
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
73886
+ Completed 200 OK in 0ms (Views: 11.9ms | ActiveRecord: 0.0ms)
73887
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73888
+ Processing by Devise::RegistrationsController#create as HTML
73889
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
73890
+  (0.0ms) SAVEPOINT active_record_1
73891
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73892
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$vKllUeNo/hmYkZCNhWFAo.zsmvvsyVmol2Vs8hzG/WkyhERGg4/Rq"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "808160"]]
73893
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73894
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73895
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73896
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73897
+ Sent mail to test@example.com (0.0ms)
73898
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
73899
+ From: from@example.com
73900
+ To: test@example.com
73901
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa141007a5@Gregs-MacBook-Pro.local.mail>
73902
+ Subject: Confirmation code: 808-160
73903
+ Mime-Version: 1.0
73904
+ Content-Type: text/html;
73905
+ charset=UTF-8
73906
+ Content-Transfer-Encoding: 7bit
73907
+
73908
+ <!DOCTYPE html>
73909
+ <html>
73910
+ <head>
73911
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73912
+ <style>
73913
+ /* Email styles need to be inline */
73914
+ </style>
73915
+ </head>
73916
+
73917
+ <body>
73918
+ <h1>Confirm your email with the following code</h1>
73919
+
73920
+ <h2>808-160</h2>
73921
+
73922
+ Thanks
73923
+
73924
+ </body>
73925
+ </html>
73926
+
73927
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
73928
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73929
+ Processing by Devise::PinfirmableController#new as HTML
73930
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73931
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73932
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73933
+ Completed 200 OK in 0ms (Views: 7.5ms | ActiveRecord: 0.0ms)
73934
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73935
+  (0.0ms) rollback transaction
73936
+  (0.0ms) begin transaction
73937
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73938
+ Processing by Devise::RegistrationsController#new as HTML
73939
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
73940
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
73941
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
73942
+ Completed 200 OK in 0ms (Views: 13.0ms | ActiveRecord: 0.0ms)
73943
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73944
+ Processing by Devise::RegistrationsController#create as HTML
73945
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
73946
+  (0.0ms) SAVEPOINT active_record_1
73947
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73948
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$HPv99qqMNl447YPoStz29u3Y8ZPlV0IScl52sL0JY96oYdRvs860m"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "857430"]]
73949
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73950
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
73951
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
73952
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
73953
+ Sent mail to test@example.com (0.0ms)
73954
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
73955
+ From: from@example.com
73956
+ To: test@example.com
73957
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa1410084e@Gregs-MacBook-Pro.local.mail>
73958
+ Subject: Confirmation code: 857-430
73959
+ Mime-Version: 1.0
73960
+ Content-Type: text/html;
73961
+ charset=UTF-8
73962
+ Content-Transfer-Encoding: 7bit
73963
+
73964
+ <!DOCTYPE html>
73965
+ <html>
73966
+ <head>
73967
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
73968
+ <style>
73969
+ /* Email styles need to be inline */
73970
+ </style>
73971
+ </head>
73972
+
73973
+ <body>
73974
+ <h1>Confirm your email with the following code</h1>
73975
+
73976
+ <h2>857-430</h2>
73977
+
73978
+ Thanks
73979
+
73980
+ </body>
73981
+ </html>
73982
+
73983
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
73984
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73985
+ Processing by Devise::PinfirmableController#new as HTML
73986
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
73987
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
73988
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
73989
+ Completed 200 OK in 0ms (Views: 8.3ms | ActiveRecord: 0.0ms)
73990
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
73991
+  (0.0ms) rollback transaction
73992
+  (0.0ms) begin transaction
73993
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
73994
+ Processing by Devise::RegistrationsController#new as HTML
73995
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
73996
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
73997
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
73998
+ Completed 200 OK in 0ms (Views: 13.3ms | ActiveRecord: 0.0ms)
73999
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
74000
+ Processing by Devise::RegistrationsController#create as HTML
74001
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
74002
+  (0.0ms) SAVEPOINT active_record_1
74003
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74004
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$IzlslLoKRaA3D6dRF1KfkeBKk15FUmnMe7qE0gGV72hfJ/9x6IIai"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "885720"]]
74005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74006
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74007
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74008
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74009
+ Sent mail to test@example.com (0.0ms)
74010
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
74011
+ From: from@example.com
74012
+ To: test@example.com
74013
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa1410094d@Gregs-MacBook-Pro.local.mail>
74014
+ Subject: Confirmation code: 885-720
74015
+ Mime-Version: 1.0
74016
+ Content-Type: text/html;
74017
+ charset=UTF-8
74018
+ Content-Transfer-Encoding: 7bit
74019
+
74020
+ <!DOCTYPE html>
74021
+ <html>
74022
+ <head>
74023
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74024
+ <style>
74025
+ /* Email styles need to be inline */
74026
+ </style>
74027
+ </head>
74028
+
74029
+ <body>
74030
+ <h1>Confirm your email with the following code</h1>
74031
+
74032
+ <h2>885-720</h2>
74033
+
74034
+ Thanks
74035
+
74036
+ </body>
74037
+ </html>
74038
+
74039
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
74040
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
74041
+ Processing by Devise::PinfirmableController#new as HTML
74042
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74043
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74044
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74045
+ Completed 200 OK in 0ms (Views: 8.5ms | ActiveRecord: 0.0ms)
74046
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
74047
+ Processing by Devise::PinfirmableController#create as HTML
74048
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
74049
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74050
+  (0.0ms) SAVEPOINT active_record_1
74051
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
74052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74053
+ Redirected to http://www.example.com/users/confirmemail
74054
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74055
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:10:21 +0100
74056
+ Processing by Devise::PinfirmableController#new as HTML
74057
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74058
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74059
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74060
+ Completed 200 OK in 0ms (Views: 9.0ms | ActiveRecord: 0.0ms)
74061
+  (0.0ms) rollback transaction
74062
+  (0.0ms) begin transaction
74063
+  (0.0ms) rollback transaction
74064
+  (0.0ms) begin transaction
74065
+  (0.0ms) rollback transaction
74066
+  (0.0ms) begin transaction
74067
+  (0.0ms) rollback transaction
74068
+  (0.0ms) begin transaction
74069
+  (0.0ms) SAVEPOINT active_record_1
74070
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74071
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$zulHoWY.Z6mpIQNOGV29JOFwiKliaWu0jsinoii0TrrtpXC07o4.2"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "214220"]]
74072
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74073
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74074
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74075
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74076
+ Sent mail to test@example.com (0.0ms)
74077
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
74078
+ From: from@example.com
74079
+ To: test@example.com
74080
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa141010df@Gregs-MacBook-Pro.local.mail>
74081
+ Subject: Confirmation code: 214-220
74082
+ Mime-Version: 1.0
74083
+ Content-Type: text/html;
74084
+ charset=UTF-8
74085
+ Content-Transfer-Encoding: 7bit
74086
+
74087
+ <!DOCTYPE html>
74088
+ <html>
74089
+ <head>
74090
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74091
+ <style>
74092
+ /* Email styles need to be inline */
74093
+ </style>
74094
+ </head>
74095
+
74096
+ <body>
74097
+ <h1>Confirm your email with the following code</h1>
74098
+
74099
+ <h2>214-220</h2>
74100
+
74101
+ Thanks
74102
+
74103
+ </body>
74104
+ </html>
74105
+
74106
+ Processing by Devise::PinfirmableController#resend_email as HTML
74107
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74108
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74109
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74110
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74111
+ Sent mail to test@example.com (0.0ms)
74112
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
74113
+ From: from@example.com
74114
+ To: test@example.com
74115
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa14101156@Gregs-MacBook-Pro.local.mail>
74116
+ Subject: Confirmation code: 214-220
74117
+ Mime-Version: 1.0
74118
+ Content-Type: text/html;
74119
+ charset=UTF-8
74120
+ Content-Transfer-Encoding: 7bit
74121
+
74122
+ <!DOCTYPE html>
74123
+ <html>
74124
+ <head>
74125
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74126
+ <style>
74127
+ /* Email styles need to be inline */
74128
+ </style>
74129
+ </head>
74130
+
74131
+ <body>
74132
+ <h1>Confirm your email with the following code</h1>
74133
+
74134
+ <h2>214-220</h2>
74135
+
74136
+ Thanks
74137
+
74138
+ </body>
74139
+ </html>
74140
+
74141
+ Redirected to http://test.host/users/confirmemail
74142
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74143
+  (0.0ms) rollback transaction
74144
+  (0.0ms) begin transaction
74145
+  (0.0ms) SAVEPOINT active_record_1
74146
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74147
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$.6m38u3pQImvNQB4/gz12OgKM1zDF53mGyfNOPsglrsGlntgJqz1q"], ["created_at", 2016-09-06 15:10:21 UTC], ["updated_at", 2016-09-06 15:10:21 UTC], ["pinfirmable_pin", "616242"]]
74148
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74149
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74150
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74151
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74152
+ Sent mail to test@example.com (0.0ms)
74153
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
74154
+ From: from@example.com
74155
+ To: test@example.com
74156
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa141012bb@Gregs-MacBook-Pro.local.mail>
74157
+ Subject: Confirmation code: 616-242
74158
+ Mime-Version: 1.0
74159
+ Content-Type: text/html;
74160
+ charset=UTF-8
74161
+ Content-Transfer-Encoding: 7bit
74162
+
74163
+ <!DOCTYPE html>
74164
+ <html>
74165
+ <head>
74166
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74167
+ <style>
74168
+ /* Email styles need to be inline */
74169
+ </style>
74170
+ </head>
74171
+
74172
+ <body>
74173
+ <h1>Confirm your email with the following code</h1>
74174
+
74175
+ <h2>616-242</h2>
74176
+
74177
+ Thanks
74178
+
74179
+ </body>
74180
+ </html>
74181
+
74182
+ Processing by Devise::PinfirmableController#resend_email as HTML
74183
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74184
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74185
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74186
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74187
+ Sent mail to test@example.com (0.0ms)
74188
+ Date: Tue, 06 Sep 2016 16:10:21 +0100
74189
+ From: from@example.com
74190
+ To: test@example.com
74191
+ Message-ID: <57cedc5d116c8_a6613fc4ee03fa1410136b@Gregs-MacBook-Pro.local.mail>
74192
+ Subject: Confirmation code: 616-242
74193
+ Mime-Version: 1.0
74194
+ Content-Type: text/html;
74195
+ charset=UTF-8
74196
+ Content-Transfer-Encoding: 7bit
74197
+
74198
+ <!DOCTYPE html>
74199
+ <html>
74200
+ <head>
74201
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74202
+ <style>
74203
+ /* Email styles need to be inline */
74204
+ </style>
74205
+ </head>
74206
+
74207
+ <body>
74208
+ <h1>Confirm your email with the following code</h1>
74209
+
74210
+ <h2>616-242</h2>
74211
+
74212
+ Thanks
74213
+
74214
+ </body>
74215
+ </html>
74216
+
74217
+ Redirected to http://test.host/users/confirmemail
74218
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74219
+  (0.0ms) rollback transaction
74220
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
74221
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
74222
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
74223
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
74224
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
74225
+  (0.0ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", :environment]]
74226
+  (1.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar, "last_sign_in_ip" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "pinfirmable_pin" varchar, "pinfirmable_tries" integer DEFAULT 0, "pinfirmable_lockout" datetime)
74227
+  (0.1ms) select sqlite_version(*)
74228
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
74229
+  (0.1ms)  SELECT sql
74230
+ FROM sqlite_master
74231
+ WHERE name='index_users_on_email' AND type='index'
74232
+ UNION ALL
74233
+ SELECT sql
74234
+ FROM sqlite_temp_master
74235
+ WHERE name='index_users_on_email' AND type='index'
74236
+ 
74237
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
74238
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
74239
+  (0.1ms) SELECT version FROM "schema_migrations"
74240
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20160901131628')
74241
+  (0.7ms) INSERT INTO schema_migrations (version) VALUES ('20160901092452');
74242
+
74243
+ 
74244
+  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
74245
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
74246
+  (0.0ms) begin transaction
74247
+ SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "test"], ["created_at", 2016-09-06 15:12:19 UTC], ["updated_at", 2016-09-06 15:12:19 UTC]]
74248
+  (0.7ms) commit transaction
74249
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
74250
+  (0.0ms) begin transaction
74251
+  (0.0ms) commit transaction
74252
+  (0.3ms) begin transaction
74253
+  (0.1ms) rollback transaction
74254
+  (0.0ms) begin transaction
74255
+  (0.0ms) rollback transaction
74256
+  (0.0ms) begin transaction
74257
+  (0.0ms) rollback transaction
74258
+  (0.4ms) begin transaction
74259
+  (0.1ms) SAVEPOINT active_record_1
74260
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74261
+ SQL (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$y0i15RA7jlP8C.TDazatxOrQmD87vKaXBvAuibKzLBxpy9MGiICia"], ["created_at", 2016-09-06 15:12:21 UTC], ["updated_at", 2016-09-06 15:12:21 UTC], ["pinfirmable_pin", "571387"]]
74262
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74263
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74264
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (1.1ms)
74265
+ PinfirmableMailer#pin_email: processed outbound mail in 129.4ms
74266
+ Sent mail to test@example.com (4.3ms)
74267
+ Date: Tue, 06 Sep 2016 16:12:21 +0100
74268
+ From: from@example.com
74269
+ To: test@example.com
74270
+ Message-ID: <57cedcd5db1cc_a9a23fc1b483f9f493029@Gregs-MacBook-Pro.local.mail>
74271
+ Subject: Confirmation code: 571-387
74272
+ Mime-Version: 1.0
74273
+ Content-Type: text/html;
74274
+ charset=UTF-8
74275
+ Content-Transfer-Encoding: 7bit
74276
+
74277
+ <!DOCTYPE html>
74278
+ <html>
74279
+ <head>
74280
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74281
+ <style>
74282
+ /* Email styles need to be inline */
74283
+ </style>
74284
+ </head>
74285
+
74286
+ <body>
74287
+ <h1>Confirm your email with the following code</h1>
74288
+
74289
+ <h2>571-387</h2>
74290
+
74291
+ Thanks
74292
+
74293
+ </body>
74294
+ </html>
74295
+
74296
+ Processing by Devise::PinfirmableController#create as HTML
74297
+ Parameters: {"digits"=>["5", "7", "1", "3", "8", "7"]}
74298
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74299
+  (0.1ms) SAVEPOINT active_record_1
74300
+ SQL (0.3ms) UPDATE "users" SET "pinfirmable_pin" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_pin", nil], ["updated_at", 2016-09-06 15:12:21 UTC], ["id", 1]]
74301
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74302
+ Redirected to http://test.host/
74303
+ Completed 302 Found in 8ms (ActiveRecord: 0.6ms)
74304
+  (1.3ms) rollback transaction
74305
+  (0.1ms) begin transaction
74306
+  (0.0ms) SAVEPOINT active_record_1
74307
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74308
+ SQL (0.2ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$5ZykR.JEneR7h06/xCDYYOcoDMA7v55dYbcNnuc9j40vMN055CKLq"], ["created_at", 2016-09-06 15:12:21 UTC], ["updated_at", 2016-09-06 15:12:21 UTC], ["pinfirmable_pin", "667827"]]
74309
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74310
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74311
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.4ms)
74312
+ PinfirmableMailer#pin_email: processed outbound mail in 2.9ms
74313
+ Sent mail to test@example.com (1.6ms)
74314
+ Date: Tue, 06 Sep 2016 16:12:21 +0100
74315
+ From: from@example.com
74316
+ To: test@example.com
74317
+ Message-ID: <57cedcd5e1dd0_a9a23fc1b483f9f493193@Gregs-MacBook-Pro.local.mail>
74318
+ Subject: Confirmation code: 667-827
74319
+ Mime-Version: 1.0
74320
+ Content-Type: text/html;
74321
+ charset=UTF-8
74322
+ Content-Transfer-Encoding: 7bit
74323
+
74324
+ <!DOCTYPE html>
74325
+ <html>
74326
+ <head>
74327
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74328
+ <style>
74329
+ /* Email styles need to be inline */
74330
+ </style>
74331
+ </head>
74332
+
74333
+ <body>
74334
+ <h1>Confirm your email with the following code</h1>
74335
+
74336
+ <h2>667-827</h2>
74337
+
74338
+ Thanks
74339
+
74340
+ </body>
74341
+ </html>
74342
+
74343
+ Processing by Devise::PinfirmableController#create as HTML
74344
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74345
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74346
+  (0.0ms) SAVEPOINT active_record_1
74347
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["updated_at", 2016-09-06 15:12:21 UTC], ["id", 1]]
74348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74349
+ Redirected to http://test.host/users/confirmemail
74350
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74351
+ Processing by Devise::PinfirmableController#create as HTML
74352
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74353
+  (0.0ms) SAVEPOINT active_record_1
74354
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
74355
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74356
+ Redirected to http://test.host/users/confirmemail
74357
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74358
+ Processing by Devise::PinfirmableController#create as HTML
74359
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74360
+  (0.0ms) SAVEPOINT active_record_1
74361
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:13:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
74362
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74363
+ Redirected to http://test.host/users/confirmemail
74364
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74365
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
74366
+  (0.0ms) rollback transaction
74367
+  (0.0ms) begin transaction
74368
+  (0.0ms) SAVEPOINT active_record_1
74369
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74370
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$pLyLLq1280dqbf7pAzxhO.06QDWfEziZrEVMm7iiFfYJQ6.KunQke"], ["created_at", 2016-09-06 15:12:21 UTC], ["updated_at", 2016-09-06 15:12:21 UTC], ["pinfirmable_pin", "848282"]]
74371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74372
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74373
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74374
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74375
+ Sent mail to test@example.com (0.0ms)
74376
+ Date: Tue, 06 Sep 2016 16:12:21 +0100
74377
+ From: from@example.com
74378
+ To: test@example.com
74379
+ Message-ID: <57cedcd5e2263_a9a23fc1b483f9f493242@Gregs-MacBook-Pro.local.mail>
74380
+ Subject: Confirmation code: 848-282
74381
+ Mime-Version: 1.0
74382
+ Content-Type: text/html;
74383
+ charset=UTF-8
74384
+ Content-Transfer-Encoding: 7bit
74385
+
74386
+ <!DOCTYPE html>
74387
+ <html>
74388
+ <head>
74389
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74390
+ <style>
74391
+ /* Email styles need to be inline */
74392
+ </style>
74393
+ </head>
74394
+
74395
+ <body>
74396
+ <h1>Confirm your email with the following code</h1>
74397
+
74398
+ <h2>848-282</h2>
74399
+
74400
+ Thanks
74401
+
74402
+ </body>
74403
+ </html>
74404
+
74405
+ Processing by Devise::PinfirmableController#create as HTML
74406
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74407
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74408
+  (0.0ms) SAVEPOINT active_record_1
74409
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
74410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74411
+ Redirected to http://test.host/users/confirmemail
74412
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74413
+ Processing by Devise::PinfirmableController#create as HTML
74414
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74415
+  (0.0ms) SAVEPOINT active_record_1
74416
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
74417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74418
+ Redirected to http://test.host/users/confirmemail
74419
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74420
+ Processing by Devise::PinfirmableController#create as HTML
74421
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74422
+  (0.0ms) SAVEPOINT active_record_1
74423
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:13:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
74424
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74425
+ Redirected to http://test.host/users/confirmemail
74426
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74427
+ Processing by Devise::PinfirmableController#create as HTML
74428
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74429
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74430
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74431
+ Completed 429 Too Many Requests in 0ms (Views: 14.2ms | ActiveRecord: 0.0ms)
74432
+  (0.0ms) rollback transaction
74433
+  (0.0ms) begin transaction
74434
+  (0.0ms) SAVEPOINT active_record_1
74435
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74436
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$nAcz.8NfnbfFITcJzNfi1.81oc0R45AQZcUSx2y1MKCipyh0odHvm"], ["created_at", 2016-09-06 15:12:21 UTC], ["updated_at", 2016-09-06 15:12:21 UTC], ["pinfirmable_pin", "357678"]]
74437
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74438
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74439
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74440
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74441
+ Sent mail to test@example.com (0.0ms)
74442
+ Date: Tue, 06 Sep 2016 16:12:21 +0100
74443
+ From: from@example.com
74444
+ To: test@example.com
74445
+ Message-ID: <57cedcd5e2263_a9a23fc1b483f9f4933c0@Gregs-MacBook-Pro.local.mail>
74446
+ Subject: Confirmation code: 357-678
74447
+ Mime-Version: 1.0
74448
+ Content-Type: text/html;
74449
+ charset=UTF-8
74450
+ Content-Transfer-Encoding: 7bit
74451
+
74452
+ <!DOCTYPE html>
74453
+ <html>
74454
+ <head>
74455
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74456
+ <style>
74457
+ /* Email styles need to be inline */
74458
+ </style>
74459
+ </head>
74460
+
74461
+ <body>
74462
+ <h1>Confirm your email with the following code</h1>
74463
+
74464
+ <h2>357-678</h2>
74465
+
74466
+ Thanks
74467
+
74468
+ </body>
74469
+ </html>
74470
+
74471
+ Processing by Devise::PinfirmableController#create as HTML
74472
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74473
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74474
+  (0.0ms) SAVEPOINT active_record_1
74475
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
74476
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74477
+ Redirected to http://test.host/users/confirmemail
74478
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74479
+  (0.0ms) rollback transaction
74480
+  (0.0ms) begin transaction
74481
+  (0.0ms) SAVEPOINT active_record_1
74482
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74483
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$bKZ/2p9zyOHjpezSR.SQ8e4YjpFViTrQSdmjOzolQwmieagAK.0be"], ["created_at", 2016-09-06 15:12:21 UTC], ["updated_at", 2016-09-06 15:12:21 UTC], ["pinfirmable_pin", "078571"]]
74484
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74485
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74486
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74487
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74488
+ Sent mail to test@example.com (0.0ms)
74489
+ Date: Tue, 06 Sep 2016 16:12:21 +0100
74490
+ From: from@example.com
74491
+ To: test@example.com
74492
+ Message-ID: <57cedcd5e2263_a9a23fc1b483f9f493427@Gregs-MacBook-Pro.local.mail>
74493
+ Subject: Confirmation code: 078-571
74494
+ Mime-Version: 1.0
74495
+ Content-Type: text/html;
74496
+ charset=UTF-8
74497
+ Content-Transfer-Encoding: 7bit
74498
+
74499
+ <!DOCTYPE html>
74500
+ <html>
74501
+ <head>
74502
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74503
+ <style>
74504
+ /* Email styles need to be inline */
74505
+ </style>
74506
+ </head>
74507
+
74508
+ <body>
74509
+ <h1>Confirm your email with the following code</h1>
74510
+
74511
+ <h2>078-571</h2>
74512
+
74513
+ Thanks
74514
+
74515
+ </body>
74516
+ </html>
74517
+
74518
+ Processing by Devise::PinfirmableController#create as HTML
74519
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74520
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74521
+  (0.0ms) SAVEPOINT active_record_1
74522
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
74523
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74524
+ Redirected to http://test.host/users/confirmemail
74525
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74526
+ Processing by Devise::PinfirmableController#create as HTML
74527
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74528
+  (0.0ms) SAVEPOINT active_record_1
74529
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
74530
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74531
+ Redirected to http://test.host/users/confirmemail
74532
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74533
+ Processing by Devise::PinfirmableController#create as HTML
74534
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74535
+  (0.0ms) SAVEPOINT active_record_1
74536
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:13:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
74537
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74538
+ Redirected to http://test.host/users/confirmemail
74539
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74540
+ Processing by Devise::PinfirmableController#create as HTML
74541
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74542
+  (0.0ms) SAVEPOINT active_record_1
74543
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", nil], ["pinfirmable_tries", 4], ["updated_at", 2016-09-06 15:14:21 UTC], ["id", 1]]
74544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74545
+ Redirected to http://test.host/users/confirmemail
74546
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74547
+ Processing by Devise::PinfirmableController#create as HTML
74548
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74549
+  (0.0ms) SAVEPOINT active_record_1
74550
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 5], ["id", 1]]
74551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74552
+ Redirected to http://test.host/users/confirmemail
74553
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74554
+ Processing by Devise::PinfirmableController#create as HTML
74555
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74556
+  (0.0ms) SAVEPOINT active_record_1
74557
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:16:21 UTC], ["pinfirmable_tries", 6], ["id", 1]]
74558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74559
+ Redirected to http://test.host/users/confirmemail
74560
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74561
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
74562
+  (0.0ms) rollback transaction
74563
+  (0.0ms) begin transaction
74564
+  (0.0ms) SAVEPOINT active_record_1
74565
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74566
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$3VyJZUzlhY9fPauuEMxLHeCRANOQiQYiIDQl49oWSurHls2E0zw66"], ["created_at", 2016-09-06 15:14:21 UTC], ["updated_at", 2016-09-06 15:14:21 UTC], ["pinfirmable_pin", "414655"]]
74567
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74568
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74569
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74570
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74571
+ Sent mail to test@example.com (0.0ms)
74572
+ Date: Tue, 06 Sep 2016 16:14:21 +0100
74573
+ From: from@example.com
74574
+ To: test@example.com
74575
+ Message-ID: <57cedd4de2263_a9a23fc1b483f9f4935a9@Gregs-MacBook-Pro.local.mail>
74576
+ Subject: Confirmation code: 414-655
74577
+ Mime-Version: 1.0
74578
+ Content-Type: text/html;
74579
+ charset=UTF-8
74580
+ Content-Transfer-Encoding: 7bit
74581
+
74582
+ <!DOCTYPE html>
74583
+ <html>
74584
+ <head>
74585
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74586
+ <style>
74587
+ /* Email styles need to be inline */
74588
+ </style>
74589
+ </head>
74590
+
74591
+ <body>
74592
+ <h1>Confirm your email with the following code</h1>
74593
+
74594
+ <h2>414-655</h2>
74595
+
74596
+ Thanks
74597
+
74598
+ </body>
74599
+ </html>
74600
+
74601
+ Processing by Devise::PinfirmableController#create as HTML
74602
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74603
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74604
+  (0.0ms) SAVEPOINT active_record_1
74605
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
74606
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74607
+ Redirected to http://test.host/users/confirmemail
74608
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74609
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
74610
+  (0.0ms) rollback transaction
74611
+  (0.0ms) begin transaction
74612
+  (0.0ms) SAVEPOINT active_record_1
74613
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74614
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$V8HrLm1JIKhRnzm3wvoAF.ece/FFr.6zbn.hnfFE9O7ChRxmRRBZW"], ["created_at", 2016-09-06 15:14:21 UTC], ["updated_at", 2016-09-06 15:14:21 UTC], ["pinfirmable_pin", "082044"]]
74615
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74616
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74617
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74618
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74619
+ Sent mail to test@example.com (0.0ms)
74620
+ Date: Tue, 06 Sep 2016 16:14:21 +0100
74621
+ From: from@example.com
74622
+ To: test@example.com
74623
+ Message-ID: <57cedd4de2263_a9a23fc1b483f9f49367a@Gregs-MacBook-Pro.local.mail>
74624
+ Subject: Confirmation code: 082-044
74625
+ Mime-Version: 1.0
74626
+ Content-Type: text/html;
74627
+ charset=UTF-8
74628
+ Content-Transfer-Encoding: 7bit
74629
+
74630
+ <!DOCTYPE html>
74631
+ <html>
74632
+ <head>
74633
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74634
+ <style>
74635
+ /* Email styles need to be inline */
74636
+ </style>
74637
+ </head>
74638
+
74639
+ <body>
74640
+ <h1>Confirm your email with the following code</h1>
74641
+
74642
+ <h2>082-044</h2>
74643
+
74644
+ Thanks
74645
+
74646
+ </body>
74647
+ </html>
74648
+
74649
+ Processing by Devise::PinfirmableController#create as HTML
74650
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74651
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74652
+  (0.0ms) SAVEPOINT active_record_1
74653
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
74654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74655
+ Redirected to http://test.host/users/confirmemail
74656
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74657
+ Processing by Devise::PinfirmableController#create as HTML
74658
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74659
+  (0.0ms) SAVEPOINT active_record_1
74660
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
74661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74662
+ Redirected to http://test.host/users/confirmemail
74663
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74664
+ Processing by Devise::PinfirmableController#create as HTML
74665
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74666
+  (0.0ms) SAVEPOINT active_record_1
74667
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:15:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
74668
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74669
+ Redirected to http://test.host/users/confirmemail
74670
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74671
+ Processing by Devise::PinfirmableController#create as HTML
74672
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74673
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74674
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74675
+ Completed 429 Too Many Requests in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
74676
+ Processing by Devise::PinfirmableController#create as HTML
74677
+ Parameters: {"digits"=>["1", "2", "3", "4", "5", "6"]}
74678
+  (0.0ms) SAVEPOINT active_record_1
74679
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ?, "updated_at" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", nil], ["pinfirmable_tries", 4], ["updated_at", 2016-09-06 15:16:21 UTC], ["id", 1]]
74680
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74681
+ Redirected to http://test.host/users/confirmemail
74682
+ Completed 302 Found in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
74683
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
74684
+  (0.0ms) rollback transaction
74685
+  (0.0ms) begin transaction
74686
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74687
+ Processing by Devise::RegistrationsController#new as HTML
74688
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
74689
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
74690
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
74691
+ Completed 200 OK in 0ms (Views: 136.9ms | ActiveRecord: 0.0ms)
74692
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74693
+ Processing by Devise::RegistrationsController#create as HTML
74694
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
74695
+  (0.0ms) SAVEPOINT active_record_1
74696
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74697
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$TOLGXpA6NB1jsF1zYyoxCe3Nhg76MwVqX4rm7o0p8JI7KYWdJ5gd6"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "561560"]]
74698
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74699
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74700
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74701
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74702
+ Sent mail to test@example.com (0.0ms)
74703
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
74704
+ From: from@example.com
74705
+ To: test@example.com
74706
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f49371d@Gregs-MacBook-Pro.local.mail>
74707
+ Subject: Confirmation code: 561-560
74708
+ Mime-Version: 1.0
74709
+ Content-Type: text/html;
74710
+ charset=UTF-8
74711
+ Content-Transfer-Encoding: 7bit
74712
+
74713
+ <!DOCTYPE html>
74714
+ <html>
74715
+ <head>
74716
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74717
+ <style>
74718
+ /* Email styles need to be inline */
74719
+ </style>
74720
+ </head>
74721
+
74722
+ <body>
74723
+ <h1>Confirm your email with the following code</h1>
74724
+
74725
+ <h2>561-560</h2>
74726
+
74727
+ Thanks
74728
+
74729
+ </body>
74730
+ </html>
74731
+
74732
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
74733
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74734
+ Processing by Devise::PinfirmableController#new as HTML
74735
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74736
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74737
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74738
+ Completed 200 OK in 0ms (Views: 8.2ms | ActiveRecord: 0.0ms)
74739
+ Started POST "/users/pinfirmable/resend_email" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74740
+ Processing by Devise::PinfirmableController#resend_email as HTML
74741
+ Parameters: {"utf8"=>"✓", "commit"=>"Not received an email?"}
74742
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74743
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74744
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74745
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74746
+ Sent mail to test@example.com (0.0ms)
74747
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
74748
+ From: from@example.com
74749
+ To: test@example.com
74750
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f493868@Gregs-MacBook-Pro.local.mail>
74751
+ Subject: Confirmation code: 561-560
74752
+ Mime-Version: 1.0
74753
+ Content-Type: text/html;
74754
+ charset=UTF-8
74755
+ Content-Transfer-Encoding: 7bit
74756
+
74757
+ <!DOCTYPE html>
74758
+ <html>
74759
+ <head>
74760
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74761
+ <style>
74762
+ /* Email styles need to be inline */
74763
+ </style>
74764
+ </head>
74765
+
74766
+ <body>
74767
+ <h1>Confirm your email with the following code</h1>
74768
+
74769
+ <h2>561-560</h2>
74770
+
74771
+ Thanks
74772
+
74773
+ </body>
74774
+ </html>
74775
+
74776
+ Redirected to http://www.example.com/users/confirmemail
74777
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74778
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74779
+ Processing by Devise::PinfirmableController#new as HTML
74780
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74781
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74782
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74783
+ Completed 200 OK in 0ms (Views: 9.5ms | ActiveRecord: 0.0ms)
74784
+  (0.0ms) rollback transaction
74785
+  (0.0ms) begin transaction
74786
+ Processing by Devise::PinfirmableController#new as HTML
74787
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74788
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74789
+ Completed 200 OK in 0ms (Views: 10.1ms | ActiveRecord: 0.0ms)
74790
+  (0.0ms) rollback transaction
74791
+  (0.0ms) begin transaction
74792
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74793
+ Processing by Devise::RegistrationsController#new as HTML
74794
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
74795
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
74796
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
74797
+ Completed 200 OK in 0ms (Views: 13.4ms | ActiveRecord: 0.0ms)
74798
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74799
+ Processing by Devise::RegistrationsController#create as HTML
74800
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
74801
+  (0.0ms) SAVEPOINT active_record_1
74802
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74803
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$xSNhrGWolTfk9OYMJ0gJ4.Uj5SqGdtwtjZKoDoBQh9A/YyeMlWp32"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "387685"]]
74804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74805
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74806
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74807
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74808
+ Sent mail to test@example.com (0.0ms)
74809
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
74810
+ From: from@example.com
74811
+ To: test@example.com
74812
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f4939c6@Gregs-MacBook-Pro.local.mail>
74813
+ Subject: Confirmation code: 387-685
74814
+ Mime-Version: 1.0
74815
+ Content-Type: text/html;
74816
+ charset=UTF-8
74817
+ Content-Transfer-Encoding: 7bit
74818
+
74819
+ <!DOCTYPE html>
74820
+ <html>
74821
+ <head>
74822
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74823
+ <style>
74824
+ /* Email styles need to be inline */
74825
+ </style>
74826
+ </head>
74827
+
74828
+ <body>
74829
+ <h1>Confirm your email with the following code</h1>
74830
+
74831
+ <h2>387-685</h2>
74832
+
74833
+ Thanks
74834
+
74835
+ </body>
74836
+ </html>
74837
+
74838
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
74839
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74840
+ Processing by Devise::PinfirmableController#new as HTML
74841
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74842
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74843
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74844
+ Completed 200 OK in 0ms (Views: 6.9ms | ActiveRecord: 0.0ms)
74845
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74846
+ Processing by Devise::PinfirmableController#create as HTML
74847
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
74848
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74849
+  (0.0ms) SAVEPOINT active_record_1
74850
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
74851
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74852
+ Redirected to http://www.example.com/users/confirmemail
74853
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
74854
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74855
+ Processing by Devise::PinfirmableController#new as HTML
74856
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74857
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74858
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74859
+ Completed 200 OK in 0ms (Views: 25.7ms | ActiveRecord: 0.0ms)
74860
+  (0.0ms) rollback transaction
74861
+  (0.0ms) begin transaction
74862
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74863
+ Processing by Devise::RegistrationsController#new as HTML
74864
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
74865
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
74866
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
74867
+ Completed 200 OK in 0ms (Views: 14.5ms | ActiveRecord: 0.0ms)
74868
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74869
+ Processing by Devise::RegistrationsController#create as HTML
74870
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
74871
+  (0.0ms) SAVEPOINT active_record_1
74872
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74873
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$pELRFkH/QBT0lFaoGn/GFuKIaQTMDV9mIRByX/XVp0vAObNHxI2fq"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "534350"]]
74874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74875
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74876
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74877
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74878
+ Sent mail to test@example.com (0.0ms)
74879
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
74880
+ From: from@example.com
74881
+ To: test@example.com
74882
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f4940b8@Gregs-MacBook-Pro.local.mail>
74883
+ Subject: Confirmation code: 534-350
74884
+ Mime-Version: 1.0
74885
+ Content-Type: text/html;
74886
+ charset=UTF-8
74887
+ Content-Transfer-Encoding: 7bit
74888
+
74889
+ <!DOCTYPE html>
74890
+ <html>
74891
+ <head>
74892
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74893
+ <style>
74894
+ /* Email styles need to be inline */
74895
+ </style>
74896
+ </head>
74897
+
74898
+ <body>
74899
+ <h1>Confirm your email with the following code</h1>
74900
+
74901
+ <h2>534-350</h2>
74902
+
74903
+ Thanks
74904
+
74905
+ </body>
74906
+ </html>
74907
+
74908
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
74909
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74910
+ Processing by Devise::PinfirmableController#new as HTML
74911
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74912
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74913
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74914
+ Completed 200 OK in 0ms (Views: 8.3ms | ActiveRecord: 0.0ms)
74915
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74916
+  (0.0ms) rollback transaction
74917
+  (0.0ms) begin transaction
74918
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74919
+ Processing by Devise::RegistrationsController#new as HTML
74920
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
74921
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
74922
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
74923
+ Completed 200 OK in 0ms (Views: 14.0ms | ActiveRecord: 0.0ms)
74924
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74925
+ Processing by Devise::RegistrationsController#create as HTML
74926
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
74927
+  (0.0ms) SAVEPOINT active_record_1
74928
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74929
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$WxmqeJxUxeBc69MptAqtkOzmrA/hWw.qkUfKim4XGX1NdhRv8vfoi"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "202266"]]
74930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74931
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74932
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74933
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74934
+ Sent mail to test@example.com (0.0ms)
74935
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
74936
+ From: from@example.com
74937
+ To: test@example.com
74938
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f494175@Gregs-MacBook-Pro.local.mail>
74939
+ Subject: Confirmation code: 202-266
74940
+ Mime-Version: 1.0
74941
+ Content-Type: text/html;
74942
+ charset=UTF-8
74943
+ Content-Transfer-Encoding: 7bit
74944
+
74945
+ <!DOCTYPE html>
74946
+ <html>
74947
+ <head>
74948
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
74949
+ <style>
74950
+ /* Email styles need to be inline */
74951
+ </style>
74952
+ </head>
74953
+
74954
+ <body>
74955
+ <h1>Confirm your email with the following code</h1>
74956
+
74957
+ <h2>202-266</h2>
74958
+
74959
+ Thanks
74960
+
74961
+ </body>
74962
+ </html>
74963
+
74964
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
74965
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74966
+ Processing by Devise::PinfirmableController#new as HTML
74967
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
74968
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
74969
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
74970
+ Completed 200 OK in 0ms (Views: 8.0ms | ActiveRecord: 0.0ms)
74971
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74972
+  (0.0ms) rollback transaction
74973
+  (0.0ms) begin transaction
74974
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74975
+ Processing by Devise::RegistrationsController#new as HTML
74976
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
74977
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
74978
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
74979
+ Completed 200 OK in 0ms (Views: 15.7ms | ActiveRecord: 0.0ms)
74980
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
74981
+ Processing by Devise::RegistrationsController#create as HTML
74982
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
74983
+  (0.0ms) SAVEPOINT active_record_1
74984
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
74985
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$lnFTjFRNPWnz4E8OzxLjMuWbW2f4r5QqOiAL3CbJld4dvDtPF8d7u"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "157826"]]
74986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
74987
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
74988
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
74989
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
74990
+ Sent mail to test@example.com (0.0ms)
74991
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
74992
+ From: from@example.com
74993
+ To: test@example.com
74994
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f4942a4@Gregs-MacBook-Pro.local.mail>
74995
+ Subject: Confirmation code: 157-826
74996
+ Mime-Version: 1.0
74997
+ Content-Type: text/html;
74998
+ charset=UTF-8
74999
+ Content-Transfer-Encoding: 7bit
75000
+
75001
+ <!DOCTYPE html>
75002
+ <html>
75003
+ <head>
75004
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
75005
+ <style>
75006
+ /* Email styles need to be inline */
75007
+ </style>
75008
+ </head>
75009
+
75010
+ <body>
75011
+ <h1>Confirm your email with the following code</h1>
75012
+
75013
+ <h2>157-826</h2>
75014
+
75015
+ Thanks
75016
+
75017
+ </body>
75018
+ </html>
75019
+
75020
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
75021
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75022
+ Processing by Devise::PinfirmableController#new as HTML
75023
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75024
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
75025
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
75026
+ Completed 200 OK in 0ms (Views: 8.7ms | ActiveRecord: 0.0ms)
75027
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
75028
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75029
+ Processing by Devise::PinfirmableController#create as HTML
75030
+ Parameters: {"utf8"=>"✓", "digits"=>["1", "5", "7", "8", "2", "6"], "commit"=>"GO!"}
75031
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75032
+  (0.0ms) SAVEPOINT active_record_1
75033
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_pin" = ? WHERE "users"."id" = ? [["pinfirmable_pin", nil], ["id", 1]]
75034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75035
+ Redirected to http://www.example.com/
75036
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
75037
+ Started GET "/" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75038
+ Processing by ApplicationController#index as HTML
75039
+ Rendering text template
75040
+ Rendered text template (0.0ms)
75041
+ Completed 200 OK in 0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
75042
+  (0.0ms) rollback transaction
75043
+  (0.0ms) begin transaction
75044
+ Started GET "/users/sign_up" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75045
+ Processing by Devise::RegistrationsController#new as HTML
75046
+ Rendering /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application
75047
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/shared/_links.html.erb (0.0ms)
75048
+ Rendered /Users/greg/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/devise-4.2.0/app/views/devise/registrations/new.html.erb within layouts/application (0.0ms)
75049
+ Completed 200 OK in 0ms (Views: 23.4ms | ActiveRecord: 0.0ms)
75050
+ Started POST "/users" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75051
+ Processing by Devise::RegistrationsController#create as HTML
75052
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"test@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
75053
+  (0.0ms) SAVEPOINT active_record_1
75054
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
75055
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$EsN0cXtk3SaKhlYrcCeeSOAYN7Q6ibchIgTg8af.VRIgSNp9EpUp6"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "552516"]]
75056
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75057
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
75058
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
75059
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
75060
+ Sent mail to test@example.com (0.0ms)
75061
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
75062
+ From: from@example.com
75063
+ To: test@example.com
75064
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f4943da@Gregs-MacBook-Pro.local.mail>
75065
+ Subject: Confirmation code: 552-516
75066
+ Mime-Version: 1.0
75067
+ Content-Type: text/html;
75068
+ charset=UTF-8
75069
+ Content-Transfer-Encoding: 7bit
75070
+
75071
+ <!DOCTYPE html>
75072
+ <html>
75073
+ <head>
75074
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
75075
+ <style>
75076
+ /* Email styles need to be inline */
75077
+ </style>
75078
+ </head>
75079
+
75080
+ <body>
75081
+ <h1>Confirm your email with the following code</h1>
75082
+
75083
+ <h2>552-516</h2>
75084
+
75085
+ Thanks
75086
+
75087
+ </body>
75088
+ </html>
75089
+
75090
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
75091
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75092
+ Processing by Devise::PinfirmableController#new as HTML
75093
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75094
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
75095
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
75096
+ Completed 200 OK in 0ms (Views: 8.9ms | ActiveRecord: 0.0ms)
75097
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75098
+ Processing by Devise::PinfirmableController#create as HTML
75099
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
75100
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75101
+  (0.0ms) SAVEPOINT active_record_1
75102
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 1], ["id", 1]]
75103
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75104
+ Redirected to http://www.example.com/users/confirmemail
75105
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
75106
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75107
+ Processing by Devise::PinfirmableController#new as HTML
75108
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75109
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
75110
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
75111
+ Completed 200 OK in 0ms (Views: 11.3ms | ActiveRecord: 0.0ms)
75112
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75113
+ Processing by Devise::PinfirmableController#create as HTML
75114
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
75115
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75116
+  (0.0ms) SAVEPOINT active_record_1
75117
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_tries", 2], ["id", 1]]
75118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75119
+ Redirected to http://www.example.com/users/confirmemail
75120
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
75121
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75122
+ Processing by Devise::PinfirmableController#new as HTML
75123
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75124
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
75125
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
75126
+ Completed 200 OK in 0ms (Views: 9.6ms | ActiveRecord: 0.0ms)
75127
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75128
+ Processing by Devise::PinfirmableController#create as HTML
75129
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
75130
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75131
+  (0.0ms) SAVEPOINT active_record_1
75132
+ SQL (0.0ms) UPDATE "users" SET "pinfirmable_lockout" = ?, "pinfirmable_tries" = ? WHERE "users"."id" = ? [["pinfirmable_lockout", 2016-09-06 15:17:21 UTC], ["pinfirmable_tries", 3], ["id", 1]]
75133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75134
+ Redirected to http://www.example.com/users/confirmemail
75135
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
75136
+ Started GET "/users/confirmemail" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75137
+ Processing by Devise::PinfirmableController#new as HTML
75138
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75139
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
75140
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
75141
+ Completed 200 OK in 0ms (Views: 9.3ms | ActiveRecord: 0.0ms)
75142
+ Started POST "/users/pinfirmable" for 127.0.0.1 at 2016-09-06 16:16:21 +0100
75143
+ Processing by Devise::PinfirmableController#create as HTML
75144
+ Parameters: {"utf8"=>"✓", "digits"=>["0", "1", "2", "3", "4", "5"], "commit"=>"GO!"}
75145
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75146
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application
75147
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/devise/pinfirmable/new.html.erb within layouts/application (0.0ms)
75148
+ Completed 429 Too Many Requests in 0ms (Views: 10.4ms | ActiveRecord: 0.0ms)
75149
+  (0.0ms) rollback transaction
75150
+  (0.0ms) begin transaction
75151
+  (0.0ms) SAVEPOINT active_record_1
75152
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
75153
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$5I6YQK9xxKcL28Q3j5p74.rbx.3w8hZfoLkVOVXd.59481/NkrYcy"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "730777"]]
75154
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75155
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
75156
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
75157
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
75158
+ Sent mail to test@example.com (0.0ms)
75159
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
75160
+ From: from@example.com
75161
+ To: test@example.com
75162
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f494427@Gregs-MacBook-Pro.local.mail>
75163
+ Subject: Confirmation code: 730-777
75164
+ Mime-Version: 1.0
75165
+ Content-Type: text/html;
75166
+ charset=UTF-8
75167
+ Content-Transfer-Encoding: 7bit
75168
+
75169
+ <!DOCTYPE html>
75170
+ <html>
75171
+ <head>
75172
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
75173
+ <style>
75174
+ /* Email styles need to be inline */
75175
+ </style>
75176
+ </head>
75177
+
75178
+ <body>
75179
+ <h1>Confirm your email with the following code</h1>
75180
+
75181
+ <h2>730-777</h2>
75182
+
75183
+ Thanks
75184
+
75185
+ </body>
75186
+ </html>
75187
+
75188
+ Processing by Devise::PinfirmableController#resend_email as HTML
75189
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75190
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
75191
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
75192
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
75193
+ Sent mail to test@example.com (0.0ms)
75194
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
75195
+ From: from@example.com
75196
+ To: test@example.com
75197
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f49458f@Gregs-MacBook-Pro.local.mail>
75198
+ Subject: Confirmation code: 730-777
75199
+ Mime-Version: 1.0
75200
+ Content-Type: text/html;
75201
+ charset=UTF-8
75202
+ Content-Transfer-Encoding: 7bit
75203
+
75204
+ <!DOCTYPE html>
75205
+ <html>
75206
+ <head>
75207
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
75208
+ <style>
75209
+ /* Email styles need to be inline */
75210
+ </style>
75211
+ </head>
75212
+
75213
+ <body>
75214
+ <h1>Confirm your email with the following code</h1>
75215
+
75216
+ <h2>730-777</h2>
75217
+
75218
+ Thanks
75219
+
75220
+ </body>
75221
+ </html>
75222
+
75223
+ Redirected to http://test.host/users/confirmemail
75224
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
75225
+  (0.0ms) rollback transaction
75226
+  (0.0ms) begin transaction
75227
+  (0.0ms) SAVEPOINT active_record_1
75228
+ User Exists (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = ? LIMIT ? [["email", "test@example.com"], ["LIMIT", 1]]
75229
+ SQL (0.0ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at", "pinfirmable_pin") VALUES (?, ?, ?, ?, ?) [["email", "test@example.com"], ["encrypted_password", "$2a$04$VsFSqzMjIdoZeC2e.NzP5evodWPs5RvF2qW86elghppT9vXE0Hl1e"], ["created_at", 2016-09-06 15:16:21 UTC], ["updated_at", 2016-09-06 15:16:21 UTC], ["pinfirmable_pin", "734215"]]
75230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
75231
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
75232
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
75233
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
75234
+ Sent mail to test@example.com (0.0ms)
75235
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
75236
+ From: from@example.com
75237
+ To: test@example.com
75238
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f494689@Gregs-MacBook-Pro.local.mail>
75239
+ Subject: Confirmation code: 734-215
75240
+ Mime-Version: 1.0
75241
+ Content-Type: text/html;
75242
+ charset=UTF-8
75243
+ Content-Transfer-Encoding: 7bit
75244
+
75245
+ <!DOCTYPE html>
75246
+ <html>
75247
+ <head>
75248
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
75249
+ <style>
75250
+ /* Email styles need to be inline */
75251
+ </style>
75252
+ </head>
75253
+
75254
+ <body>
75255
+ <h1>Confirm your email with the following code</h1>
75256
+
75257
+ <h2>734-215</h2>
75258
+
75259
+ Thanks
75260
+
75261
+ </body>
75262
+ </html>
75263
+
75264
+ Processing by Devise::PinfirmableController#resend_email as HTML
75265
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? ORDER BY "users"."id" ASC LIMIT ? [["id", 1], ["LIMIT", 1]]
75266
+ Rendering /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer
75267
+ Rendered /Users/greg/Rails/Gems/pinfirmable/app/views/pinfirmable_mailer/pin_email.html.erb within layouts/mailer (0.0ms)
75268
+ PinfirmableMailer#pin_email: processed outbound mail in 0.0ms
75269
+ Sent mail to test@example.com (0.0ms)
75270
+ Date: Tue, 06 Sep 2016 16:16:21 +0100
75271
+ From: from@example.com
75272
+ To: test@example.com
75273
+ Message-ID: <57ceddc5e2263_a9a23fc1b483f9f49478e@Gregs-MacBook-Pro.local.mail>
75274
+ Subject: Confirmation code: 734-215
75275
+ Mime-Version: 1.0
75276
+ Content-Type: text/html;
75277
+ charset=UTF-8
75278
+ Content-Transfer-Encoding: 7bit
75279
+
75280
+ <!DOCTYPE html>
75281
+ <html>
75282
+ <head>
75283
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
75284
+ <style>
75285
+ /* Email styles need to be inline */
75286
+ </style>
75287
+ </head>
75288
+
75289
+ <body>
75290
+ <h1>Confirm your email with the following code</h1>
75291
+
75292
+ <h2>734-215</h2>
75293
+
75294
+ Thanks
75295
+
75296
+ </body>
75297
+ </html>
75298
+
72066
75299
  Redirected to http://test.host/users/confirmemail
72067
75300
  Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
72068
75301
   (0.0ms) rollback transaction