devise_token_auth 0.1.16 → 0.1.17
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 +4 -4
- data/README.md +29 -8
- data/app/controllers/devise_token_auth/auth_controller.rb +1 -1
- data/app/controllers/devise_token_auth/concerns/set_user_by_token.rb +37 -15
- data/app/controllers/devise_token_auth/confirmations_controller.rb +1 -1
- data/app/controllers/devise_token_auth/registrations_controller.rb +1 -1
- data/app/controllers/devise_token_auth/sessions_controller.rb +1 -1
- data/app/models/user.rb +80 -6
- data/lib/devise_token_auth/engine.rb +12 -0
- data/lib/devise_token_auth/version.rb +1 -1
- data/lib/generators/devise_token_auth/USAGE +4 -3
- data/lib/generators/devise_token_auth/install_generator.rb +27 -0
- data/lib/generators/devise_token_auth/templates/devise_token_auth.rb +17 -0
- data/{db/migrate/20140628234942_devise_token_auth_create_users.rb → lib/generators/devise_token_auth/templates/devise_token_auth_create_users.rb} +1 -1
- data/test/controllers/demo_controller_test.rb +233 -0
- data/test/controllers/devise_token_auth/registrations_controller_test.rb +0 -1
- data/test/dummy/config/database.yml +22 -16
- data/test/dummy/config/initializers/devise_token_auth.rb +20 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/{20140705000006_devise_token_auth_create_users.devise_token_auth.rb → 20140713062503_devise_token_auth_create_users.rb} +1 -2
- data/test/dummy/db/schema.rb +8 -5
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +2129 -0
- data/test/dummy/log/test.log +54231 -0
- data/test/fixtures/users.yml +9 -2
- data/test/lib/generators/devise_token_auth/{devise_token_auth_generator_test.rb → install_generator_test.rb} +3 -3
- data/test/test_helper.rb +13 -0
- metadata +34 -15
- data/lib/generators/devise_token_auth/devise_token_auth_generator.rb +0 -3
@@ -1,25 +1,31 @@
|
|
1
|
-
|
2
|
-
# gem install sqlite3
|
3
|
-
#
|
4
|
-
# Ensure the SQLite 3 gem is defined in your Gemfile
|
5
|
-
# gem 'sqlite3'
|
6
|
-
#
|
7
|
-
default: &default
|
1
|
+
sqlite: &sqlite
|
8
2
|
adapter: sqlite3
|
3
|
+
database: db/<%= Rails.env %>.sqlite3
|
4
|
+
|
5
|
+
mysql: &mysql
|
6
|
+
adapter: mysql2
|
7
|
+
username: root
|
8
|
+
password:
|
9
|
+
database: "devise_token_auth_<%= Rails.env %>"
|
10
|
+
|
11
|
+
postgresql: &postgresql
|
12
|
+
adapter: postgresql
|
13
|
+
username: postgres
|
14
|
+
password:
|
15
|
+
database: "devise_token_auth_<%= Rails.env %>"
|
16
|
+
min_messages: ERROR
|
17
|
+
|
18
|
+
defaults: &defaults
|
9
19
|
pool: 5
|
10
20
|
timeout: 5000
|
21
|
+
host: localhost
|
22
|
+
<<: *<%= ENV['DB'] || "sqlite" %>
|
11
23
|
|
12
24
|
development:
|
13
|
-
<<: *
|
14
|
-
database: db/development.sqlite3
|
25
|
+
<<: *defaults
|
15
26
|
|
16
|
-
# Warning: The database defined as "test" will be erased and
|
17
|
-
# re-generated from your development database when you run "rake".
|
18
|
-
# Do not set this db to the same as development or production.
|
19
27
|
test:
|
20
|
-
<<: *
|
21
|
-
database: db/test.sqlite3
|
28
|
+
<<: *defaults
|
22
29
|
|
23
30
|
production:
|
24
|
-
<<: *
|
25
|
-
database: db/production.sqlite3
|
31
|
+
<<: *defaults
|
@@ -0,0 +1,20 @@
|
|
1
|
+
DeviseTokenAuth.setup do |config|
|
2
|
+
# By default the authorization headers will change after each request. The
|
3
|
+
# client is responsible for keeping track of the changing tokens. Change
|
4
|
+
# this to false to prevent the Authorization header from changing after
|
5
|
+
# each request.
|
6
|
+
#config.change_headers_on_each_request = true
|
7
|
+
|
8
|
+
# By default, users will need to re-authenticate after 2 weeks. This setting
|
9
|
+
# determines how long tokens will remain valid after they are issued.
|
10
|
+
#config.token_lifespan = 2.weeks
|
11
|
+
|
12
|
+
# Sometimes it's necessary to make multiple requests in rapid succession.
|
13
|
+
# It's impossible to update the auth header for each of these requests
|
14
|
+
# because the client may have initiated all of them simultaneously (before
|
15
|
+
# the first request has finished). The solution is to consider a rapid
|
16
|
+
# succession of requests from a single client to be a single batch request.
|
17
|
+
# The default time buffer for what is considered to be a batch request is
|
18
|
+
# 2 seconds. Change that setting here.
|
19
|
+
#config.batch_request_buffer_throttle = 2.seconds
|
20
|
+
end
|
Binary file
|
@@ -1,4 +1,3 @@
|
|
1
|
-
# This migration comes from devise_token_auth (originally 20140628234942)
|
2
1
|
class DeviseTokenAuthCreateUsers < ActiveRecord::Migration
|
3
2
|
def change
|
4
3
|
create_table(:users) do |t|
|
@@ -42,7 +41,7 @@ class DeviseTokenAuthCreateUsers < ActiveRecord::Migration
|
|
42
41
|
t.string :uid, :null => false, :default => ""
|
43
42
|
|
44
43
|
## Tokens
|
45
|
-
t.
|
44
|
+
t.string :tokens, default: "{}"
|
46
45
|
|
47
46
|
t.timestamps
|
48
47
|
end
|
data/test/dummy/db/schema.rb
CHANGED
@@ -11,7 +11,10 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
14
|
+
ActiveRecord::Schema.define(version: 20140713062503) do
|
15
|
+
|
16
|
+
# These are extensions that must be enabled in order to support this database
|
17
|
+
enable_extension "plpgsql"
|
15
18
|
|
16
19
|
create_table "users", force: true do |t|
|
17
20
|
t.string "email"
|
@@ -34,13 +37,13 @@ ActiveRecord::Schema.define(version: 20140705000006) do
|
|
34
37
|
t.string "image"
|
35
38
|
t.string "provider"
|
36
39
|
t.string "uid", default: "", null: false
|
37
|
-
t.
|
40
|
+
t.string "tokens", default: "{}"
|
38
41
|
t.datetime "created_at"
|
39
42
|
t.datetime "updated_at"
|
40
43
|
end
|
41
44
|
|
42
|
-
add_index "users", ["email"], name: "index_users_on_email"
|
43
|
-
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
|
44
|
-
add_index "users", ["uid"], name: "index_users_on_uid", unique: true
|
45
|
+
add_index "users", ["email"], name: "index_users_on_email", using: :btree
|
46
|
+
add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
|
47
|
+
add_index "users", ["uid"], name: "index_users_on_uid", unique: true, using: :btree
|
45
48
|
|
46
49
|
end
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -18018,3 +18018,2132 @@ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
|
|
18018
18018
|
[1m[36mSQL (0.4ms)[0m [1mUPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7[0m [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$uAZoLY0s1zlhu5dKbWtKB.w7eSIurYxLEpl5cqgr6tLrN/HzgMaGq\",\"expiry\":\"2014-07-22 16:57:01 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-08 21:57:01.228969"]]
|
18019
18019
|
[1m[35m (1.8ms)[0m commit transaction
|
18020
18020
|
Completed 200 OK in 128ms (Views: 0.3ms | ActiveRecord: 2.5ms)
|
18021
|
+
|
18022
|
+
|
18023
|
+
Started OPTIONS "//auth/validate_token" for 127.0.0.1 at 2014-07-09 12:51:38 -0500
|
18024
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18025
|
+
|
18026
|
+
|
18027
|
+
Started GET "//auth/validate_token" for 127.0.0.1 at 2014-07-09 12:51:38 -0500
|
18028
|
+
Processing by DeviseTokenAuth::AuthController#validate_token as HTML
|
18029
|
+
[1m[35mUser Load (0.9ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = 'test+bbb@test.com' LIMIT 1
|
18030
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18031
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$g46WQi60mUaeh6XKQL3zPue1V4.UBvrRUrNjdIqgptbStb5aR9DKu\",\"expiry\":\"2014-07-23 12:51:38 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-09 17:51:38.465606"]]
|
18032
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
18033
|
+
Completed 200 OK in 161ms (Views: 0.5ms | ActiveRecord: 2.3ms)
|
18034
|
+
|
18035
|
+
|
18036
|
+
Started OPTIONS "//demo/members_only" for 127.0.0.1 at 2014-07-09 12:51:45 -0500
|
18037
|
+
|
18038
|
+
|
18039
|
+
Started GET "//demo/members_only" for 127.0.0.1 at 2014-07-09 12:51:45 -0500
|
18040
|
+
Processing by DemoController#members_only as HTML
|
18041
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = 'test+bbb@test.com' LIMIT 1
|
18042
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18043
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$WLxN5NXQ.3I84EnxC7oySu0HoGg4MY3D8X9XLazmonSXRG/0KA0YG\",\"expiry\":\"2014-07-23 12:51:45 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-09 17:51:45.603692"]]
|
18044
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
18045
|
+
Completed 200 OK in 125ms (Views: 0.6ms | ActiveRecord: 2.2ms)
|
18046
|
+
|
18047
|
+
|
18048
|
+
Started OPTIONS "//auth/validate_token" for 127.0.0.1 at 2014-07-09 13:41:09 -0500
|
18049
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
18050
|
+
|
18051
|
+
|
18052
|
+
Started GET "//auth/validate_token" for 127.0.0.1 at 2014-07-09 13:41:09 -0500
|
18053
|
+
Processing by DeviseTokenAuth::AuthController#validate_token as HTML
|
18054
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = 'test+bbb@test.com' LIMIT 1
|
18055
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18056
|
+
[1m[35mSQL (0.3ms)[0m UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$GqUKLbCcfQrhLDN1mfp5Fu/vH9zMdnhLuZAxWOcc7p9giwE3bQXlq\",\"expiry\":\"2014-07-23 13:41:09 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-09 18:41:09.488718"]]
|
18057
|
+
[1m[36m (17.6ms)[0m [1mcommit transaction[0m
|
18058
|
+
Completed 200 OK in 176ms (Views: 0.3ms | ActiveRecord: 18.6ms)
|
18059
|
+
|
18060
|
+
|
18061
|
+
Started OPTIONS "//auth/sign_out" for 127.0.0.1 at 2014-07-09 13:41:13 -0500
|
18062
|
+
|
18063
|
+
|
18064
|
+
Started DELETE "//auth/sign_out" for 127.0.0.1 at 2014-07-09 13:41:13 -0500
|
18065
|
+
Processing by DeviseTokenAuth::SessionsController#destroy as HTML
|
18066
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."uid" = 'test+bbb@test.com' LIMIT 1
|
18067
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = 7 ORDER BY "users"."id" ASC LIMIT 1[0m
|
18068
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18069
|
+
[1m[36mSQL (0.2ms)[0m [1mUPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7[0m [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$GqUKLbCcfQrhLDN1mfp5Fu/vH9zMdnhLuZAxWOcc7p9giwE3bQXlq\",\"expiry\":\"2014-07-23 13:41:09 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-09 18:41:13.298737"]]
|
18070
|
+
[1m[35m (0.6ms)[0m commit transaction
|
18071
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18072
|
+
[1m[35mSQL (0.2ms)[0m UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$fERRYVAbRVQXctppqAZp1.6Ds/H8wMNKzz5XvAaSclH8n4Pzsp2dO\",\"expiry\":\"2014-07-23 13:41:13 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-09 18:41:13.359961"]]
|
18073
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
18074
|
+
Completed 200 OK in 129ms (Views: 0.2ms | ActiveRecord: 2.2ms)
|
18075
|
+
|
18076
|
+
|
18077
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 13:41:25 -0500
|
18078
|
+
|
18079
|
+
|
18080
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:41:25 -0500
|
18081
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18082
|
+
Parameters: {"email"=>"test+111@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test+111@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
18083
|
+
Unpermitted parameters: registration
|
18084
|
+
Unpermitted parameters: registration
|
18085
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18086
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+111@test.com'[0m
|
18087
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'bb88a9dbb7c1b2aa818bddff0f3e061c049a491bc94c6412b4a14f4c51636c9c' ORDER BY "users"."id" ASC LIMIT 1
|
18088
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18089
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18090
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-09 18:41:25.546546"], ["confirmation_token", "bb88a9dbb7c1b2aa818bddff0f3e061c049a491bc94c6412b4a14f4c51636c9c"], ["created_at", "2014-07-09 18:41:25.368483"], ["email", "test+111@test.com"], ["encrypted_password", "$2a$10$Od1NAP9u6N/frepRdeA.EOj4fncrVWLcMYYHjLUAI.pXmc0YYjxDm"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+111@test.com"], ["updated_at", "2014-07-09 18:41:25.368483"]]
|
18091
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (2.1ms)
|
18092
|
+
|
18093
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 353.0ms
|
18094
|
+
|
18095
|
+
Sent mail to test+111@test.com (49.3ms)
|
18096
|
+
Date: Wed, 09 Jul 2014 13:41:25 -0500
|
18097
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18098
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18099
|
+
To: test+111@test.com
|
18100
|
+
Message-ID: <53bd8cd5de305_f1503fd161c2dbf89038e@lynns-mbp.mail>
|
18101
|
+
Subject: Confirmation instructions
|
18102
|
+
Mime-Version: 1.0
|
18103
|
+
Content-Type: text/html;
|
18104
|
+
charset=UTF-8
|
18105
|
+
Content-Transfer-Encoding: 7bit
|
18106
|
+
|
18107
|
+
<p>Welcome test+111@test.com!</p>
|
18108
|
+
|
18109
|
+
<p>You can confirm your account email through the link below:</p>
|
18110
|
+
|
18111
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=zbocYnLuZ6coHuDRkzMs">Confirm my account</a></p>
|
18112
|
+
|
18113
|
+
[1m[35m (0.8ms)[0m commit transaction
|
18114
|
+
Completed 200 OK in 657ms (Views: 0.3ms | ActiveRecord: 1.5ms)
|
18115
|
+
|
18116
|
+
|
18117
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:42:07 -0500
|
18118
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18119
|
+
Parameters: {"email"=>"test+112@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test+112@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
18120
|
+
Unpermitted parameters: registration
|
18121
|
+
Unpermitted parameters: registration
|
18122
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18123
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+112@test.com'
|
18124
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '641f6fee6f703c9635836604eb01df07e9a77a07793185a80eb1b84cc99b8367' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18125
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18126
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18127
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-09 18:42:07.904669"], ["confirmation_token", "641f6fee6f703c9635836604eb01df07e9a77a07793185a80eb1b84cc99b8367"], ["created_at", "2014-07-09 18:42:07.903723"], ["email", "test+112@test.com"], ["encrypted_password", "$2a$10$FxDdV9Q7IUPuSEGG9LO1pOK1bzuQIaq09nstLymujMyvrfkKHnvhu"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+112@test.com"], ["updated_at", "2014-07-09 18:42:07.903723"]]
|
18128
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
|
18129
|
+
|
18130
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 16.3ms
|
18131
|
+
|
18132
|
+
Sent mail to test+112@test.com (22.0ms)
|
18133
|
+
Date: Wed, 09 Jul 2014 13:42:07 -0500
|
18134
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18135
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18136
|
+
To: test+112@test.com
|
18137
|
+
Message-ID: <53bd8cffe168a_f1503fd161c2dbf890414@lynns-mbp.mail>
|
18138
|
+
Subject: Confirmation instructions
|
18139
|
+
Mime-Version: 1.0
|
18140
|
+
Content-Type: text/html;
|
18141
|
+
charset=UTF-8
|
18142
|
+
Content-Transfer-Encoding: 7bit
|
18143
|
+
|
18144
|
+
<p>Welcome test+112@test.com!</p>
|
18145
|
+
|
18146
|
+
<p>You can confirm your account email through the link below:</p>
|
18147
|
+
|
18148
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=LisHsSy2GZssCymDmuTN">Confirm my account</a></p>
|
18149
|
+
|
18150
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
18151
|
+
Completed 200 OK in 108ms (Views: 0.3ms | ActiveRecord: 2.5ms)
|
18152
|
+
|
18153
|
+
|
18154
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 13:48:18 -0500
|
18155
|
+
|
18156
|
+
|
18157
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:48:18 -0500
|
18158
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18159
|
+
Parameters: {"email"=>"test+1404931697312@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404931697312@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18160
|
+
Unpermitted parameters: registration
|
18161
|
+
Unpermitted parameters: registration
|
18162
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18163
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404931697312@test.com'[0m
|
18164
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '5dbf51756117303c10150aef170f2f153025d436eac68bddb34d605171d3ea9a' ORDER BY "users"."id" ASC LIMIT 1
|
18165
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18166
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18167
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 18:48:18.609279"], ["confirmation_token", "5dbf51756117303c10150aef170f2f153025d436eac68bddb34d605171d3ea9a"], ["created_at", "2014-07-09 18:48:18.608675"], ["email", "test+1404931697312@test.com"], ["encrypted_password", "$2a$10$DrGl/ZIu41c1jrosvo5RU.wgfVkFcOIApEr1TbjNQnNRie45vHrFG"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404931697312@test.com"], ["updated_at", "2014-07-09 18:48:18.608675"]]
|
18168
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18169
|
+
|
18170
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.3ms
|
18171
|
+
|
18172
|
+
Sent mail to test+1404931697312@test.com (18.6ms)
|
18173
|
+
Date: Wed, 09 Jul 2014 13:48:18 -0500
|
18174
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18175
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18176
|
+
To: test+1404931697312@test.com
|
18177
|
+
Message-ID: <53bd8e729873a_f1503fd161c2dbf8905c5@lynns-mbp.mail>
|
18178
|
+
Subject: Confirmation instructions
|
18179
|
+
Mime-Version: 1.0
|
18180
|
+
Content-Type: text/html;
|
18181
|
+
charset=UTF-8
|
18182
|
+
Content-Transfer-Encoding: 7bit
|
18183
|
+
|
18184
|
+
<p>Welcome test+1404931697312@test.com!</p>
|
18185
|
+
|
18186
|
+
<p>You can confirm your account email through the link below:</p>
|
18187
|
+
|
18188
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=9s_uub9AMkVykMdXfzdp">Confirm my account</a></p>
|
18189
|
+
|
18190
|
+
[1m[35m (2.2ms)[0m commit transaction
|
18191
|
+
Completed 200 OK in 99ms (Views: 0.3ms | ActiveRecord: 2.7ms)
|
18192
|
+
|
18193
|
+
|
18194
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 13:48:40 -0500
|
18195
|
+
|
18196
|
+
|
18197
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:48:40 -0500
|
18198
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18199
|
+
Parameters: {"email"=>"test+1404931720092@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404931720092@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18200
|
+
Unpermitted parameters: registration
|
18201
|
+
Unpermitted parameters: registration
|
18202
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18203
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404931720092@test.com'
|
18204
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '03385d3878cc38c1d1794c4a2ba34500ef6a27456d4a6ffdcd28a320eb8409ff' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18205
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18206
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18207
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 18:48:41.056653"], ["confirmation_token", "03385d3878cc38c1d1794c4a2ba34500ef6a27456d4a6ffdcd28a320eb8409ff"], ["created_at", "2014-07-09 18:48:41.056055"], ["email", "test+1404931720092@test.com"], ["encrypted_password", "$2a$10$sq44fnMy2siLoUEupvsf.O4e7q/FC42DcuAqsukJ5KBqHQJ2Y39tG"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404931720092@test.com"], ["updated_at", "2014-07-09 18:48:41.056055"]]
|
18208
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18209
|
+
|
18210
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.3ms
|
18211
|
+
|
18212
|
+
Sent mail to test+1404931720092@test.com (19.9ms)
|
18213
|
+
Date: Wed, 09 Jul 2014 13:48:41 -0500
|
18214
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18215
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18216
|
+
To: test+1404931720092@test.com
|
18217
|
+
Message-ID: <53bd8e8911a7a_f1503fd161c2dbf8906d6@lynns-mbp.mail>
|
18218
|
+
Subject: Confirmation instructions
|
18219
|
+
Mime-Version: 1.0
|
18220
|
+
Content-Type: text/html;
|
18221
|
+
charset=UTF-8
|
18222
|
+
Content-Transfer-Encoding: 7bit
|
18223
|
+
|
18224
|
+
<p>Welcome test+1404931720092@test.com!</p>
|
18225
|
+
|
18226
|
+
<p>You can confirm your account email through the link below:</p>
|
18227
|
+
|
18228
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=nsNnDVRyx8zvqEpEkruW">Confirm my account</a></p>
|
18229
|
+
|
18230
|
+
[1m[36m (2.2ms)[0m [1mcommit transaction[0m
|
18231
|
+
Completed 200 OK in 101ms (Views: 0.3ms | ActiveRecord: 2.8ms)
|
18232
|
+
|
18233
|
+
|
18234
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 13:51:07 -0500
|
18235
|
+
|
18236
|
+
|
18237
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:51:07 -0500
|
18238
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18239
|
+
Parameters: {"email"=>"test+1404931866555@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404931866555@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18240
|
+
Unpermitted parameters: registration
|
18241
|
+
Unpermitted parameters: registration
|
18242
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18243
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404931866555@test.com'[0m
|
18244
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'd301bc5ecdb2de550fa7ae02ec9912c1a06e887cdc4e6b75c55ecf8b47cc91c1' ORDER BY "users"."id" ASC LIMIT 1
|
18245
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18246
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18247
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 18:51:07.852103"], ["confirmation_token", "d301bc5ecdb2de550fa7ae02ec9912c1a06e887cdc4e6b75c55ecf8b47cc91c1"], ["created_at", "2014-07-09 18:51:07.851565"], ["email", "test+1404931866555@test.com"], ["encrypted_password", "$2a$10$H30RtsFuVnSAjFqZayQkBuvDIN7AT5qhx48Q1e4fm.Tzd5UfBibXq"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404931866555@test.com"], ["updated_at", "2014-07-09 18:51:07.851565"]]
|
18248
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18249
|
+
|
18250
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.5ms
|
18251
|
+
|
18252
|
+
Sent mail to test+1404931866555@test.com (17.9ms)
|
18253
|
+
Date: Wed, 09 Jul 2014 13:51:07 -0500
|
18254
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18255
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18256
|
+
To: test+1404931866555@test.com
|
18257
|
+
Message-ID: <53bd8f1bd383d_f1503fd161c2dbf89073d@lynns-mbp.mail>
|
18258
|
+
Subject: Confirmation instructions
|
18259
|
+
Mime-Version: 1.0
|
18260
|
+
Content-Type: text/html;
|
18261
|
+
charset=UTF-8
|
18262
|
+
Content-Transfer-Encoding: 7bit
|
18263
|
+
|
18264
|
+
<p>Welcome test+1404931866555@test.com!</p>
|
18265
|
+
|
18266
|
+
<p>You can confirm your account email through the link below:</p>
|
18267
|
+
|
18268
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=ZTizMG5swVp9BrxdPf8q">Confirm my account</a></p>
|
18269
|
+
|
18270
|
+
[1m[35m (2.0ms)[0m commit transaction
|
18271
|
+
Completed 200 OK in 97ms (Views: 0.3ms | ActiveRecord: 2.5ms)
|
18272
|
+
|
18273
|
+
|
18274
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:51:09 -0500
|
18275
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18276
|
+
Parameters: {"email"=>"test-dup+1404931868417@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404931868417@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18277
|
+
Unpermitted parameters: registration
|
18278
|
+
Unpermitted parameters: registration
|
18279
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18280
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404931868417@test.com'
|
18281
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '98413d29b2238e71f4bac2af250ef08a82787675fe66244e16f3dcf8d283239b' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18282
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18283
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18284
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 18:51:09.328491"], ["confirmation_token", "98413d29b2238e71f4bac2af250ef08a82787675fe66244e16f3dcf8d283239b"], ["created_at", "2014-07-09 18:51:09.327935"], ["email", "test-dup+1404931868417@test.com"], ["encrypted_password", "$2a$10$V7DYZPLtpkvQWGf5I2EXU.lWOgutj3nSuh2mkbRCfZ5vqBTFZgqHe"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404931868417@test.com"], ["updated_at", "2014-07-09 18:51:09.327935"]]
|
18285
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.5ms)
|
18286
|
+
|
18287
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.9ms
|
18288
|
+
|
18289
|
+
Sent mail to test-dup+1404931868417@test.com (18.3ms)
|
18290
|
+
Date: Wed, 09 Jul 2014 13:51:09 -0500
|
18291
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18292
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18293
|
+
To: test-dup+1404931868417@test.com
|
18294
|
+
Message-ID: <53bd8f1d540de_f1503fd161c2dbf8908ab@lynns-mbp.mail>
|
18295
|
+
Subject: Confirmation instructions
|
18296
|
+
Mime-Version: 1.0
|
18297
|
+
Content-Type: text/html;
|
18298
|
+
charset=UTF-8
|
18299
|
+
Content-Transfer-Encoding: 7bit
|
18300
|
+
|
18301
|
+
<p>Welcome test-dup+1404931868417@test.com!</p>
|
18302
|
+
|
18303
|
+
<p>You can confirm your account email through the link below:</p>
|
18304
|
+
|
18305
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=q3diYByZz6WN8--xWJ9o">Confirm my account</a></p>
|
18306
|
+
|
18307
|
+
[1m[36m (2.2ms)[0m [1mcommit transaction[0m
|
18308
|
+
Completed 200 OK in 99ms (Views: 0.3ms | ActiveRecord: 2.7ms)
|
18309
|
+
|
18310
|
+
|
18311
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 13:51:28 -0500
|
18312
|
+
|
18313
|
+
|
18314
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:51:28 -0500
|
18315
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18316
|
+
Parameters: {"email"=>"test+114@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test+114@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
18317
|
+
Unpermitted parameters: registration
|
18318
|
+
Unpermitted parameters: registration
|
18319
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18320
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+114@test.com'[0m
|
18321
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '9b891625a92587f5c08eb71681d34479cac32c19a47934c02c7068c957eedcea' ORDER BY "users"."id" ASC LIMIT 1
|
18322
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18323
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18324
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-09 18:51:28.706499"], ["confirmation_token", "9b891625a92587f5c08eb71681d34479cac32c19a47934c02c7068c957eedcea"], ["created_at", "2014-07-09 18:51:28.705946"], ["email", "test+114@test.com"], ["encrypted_password", "$2a$10$vLoNzjFlYY9YiKDcPyHQc.esDo.TOA1mF6/PZV4r2XDOK4Yb5/Ao2"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+114@test.com"], ["updated_at", "2014-07-09 18:51:28.705946"]]
|
18325
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18326
|
+
|
18327
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.5ms
|
18328
|
+
|
18329
|
+
Sent mail to test+114@test.com (16.9ms)
|
18330
|
+
Date: Wed, 09 Jul 2014 13:51:28 -0500
|
18331
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18332
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18333
|
+
To: test+114@test.com
|
18334
|
+
Message-ID: <53bd8f30affa0_f1503fd161c2dbf8909ea@lynns-mbp.mail>
|
18335
|
+
Subject: Confirmation instructions
|
18336
|
+
Mime-Version: 1.0
|
18337
|
+
Content-Type: text/html;
|
18338
|
+
charset=UTF-8
|
18339
|
+
Content-Transfer-Encoding: 7bit
|
18340
|
+
|
18341
|
+
<p>Welcome test+114@test.com!</p>
|
18342
|
+
|
18343
|
+
<p>You can confirm your account email through the link below:</p>
|
18344
|
+
|
18345
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=Bw293zb5SQySK7DJXDnp">Confirm my account</a></p>
|
18346
|
+
|
18347
|
+
[1m[35m (2.4ms)[0m commit transaction
|
18348
|
+
Completed 200 OK in 97ms (Views: 0.3ms | ActiveRecord: 2.9ms)
|
18349
|
+
|
18350
|
+
|
18351
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 13:53:10 -0500
|
18352
|
+
|
18353
|
+
|
18354
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:53:10 -0500
|
18355
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18356
|
+
Parameters: {"email"=>"test+1404931989982@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404931989982@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18357
|
+
Unpermitted parameters: registration
|
18358
|
+
Unpermitted parameters: registration
|
18359
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18360
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404931989982@test.com'
|
18361
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '099d5babe413e7feb304cd68e8f1195496520794386fb721e6b08b1e2244783b' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18362
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18363
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18364
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 18:53:10.965683"], ["confirmation_token", "099d5babe413e7feb304cd68e8f1195496520794386fb721e6b08b1e2244783b"], ["created_at", "2014-07-09 18:53:10.965108"], ["email", "test+1404931989982@test.com"], ["encrypted_password", "$2a$10$MgQMWLWprqzmGiW9DsxSOObpIC8NyNX53n9DyRV1HrW0RDeaQACvC"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404931989982@test.com"], ["updated_at", "2014-07-09 18:53:10.965108"]]
|
18365
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
|
18366
|
+
|
18367
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.2ms
|
18368
|
+
|
18369
|
+
Sent mail to test+1404931989982@test.com (17.8ms)
|
18370
|
+
Date: Wed, 09 Jul 2014 13:53:10 -0500
|
18371
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18372
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18373
|
+
To: test+1404931989982@test.com
|
18374
|
+
Message-ID: <53bd8f96ef729_f1503fd161c2dbf89107c@lynns-mbp.mail>
|
18375
|
+
Subject: Confirmation instructions
|
18376
|
+
Mime-Version: 1.0
|
18377
|
+
Content-Type: text/html;
|
18378
|
+
charset=UTF-8
|
18379
|
+
Content-Transfer-Encoding: 7bit
|
18380
|
+
|
18381
|
+
<p>Welcome test+1404931989982@test.com!</p>
|
18382
|
+
|
18383
|
+
<p>You can confirm your account email through the link below:</p>
|
18384
|
+
|
18385
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=sTnbfuznZiL3ogsx7uoj">Confirm my account</a></p>
|
18386
|
+
|
18387
|
+
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
|
18388
|
+
Completed 200 OK in 99ms (Views: 0.3ms | ActiveRecord: 2.7ms)
|
18389
|
+
|
18390
|
+
|
18391
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:53:12 -0500
|
18392
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18393
|
+
Parameters: {"email"=>"test-dup+1404931991530@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404931991530@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18394
|
+
Unpermitted parameters: registration
|
18395
|
+
Unpermitted parameters: registration
|
18396
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18397
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404931991530@test.com'[0m
|
18398
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '6d415c62b39aa9c460075f1e80352c478c40ef3653f02f3bc69b0f967d1e9144' ORDER BY "users"."id" ASC LIMIT 1
|
18399
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18400
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18401
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 18:53:12.451786"], ["confirmation_token", "6d415c62b39aa9c460075f1e80352c478c40ef3653f02f3bc69b0f967d1e9144"], ["created_at", "2014-07-09 18:53:12.451166"], ["email", "test-dup+1404931991530@test.com"], ["encrypted_password", "$2a$10$6Lwky7Ei5Sc/XzVkYLIAtOUQXWHwsnIWmFqAH33yEMzuv93h5QC1K"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404931991530@test.com"], ["updated_at", "2014-07-09 18:53:12.451166"]]
|
18402
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.5ms)
|
18403
|
+
|
18404
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 16.0ms
|
18405
|
+
|
18406
|
+
Sent mail to test-dup+1404931991530@test.com (23.0ms)
|
18407
|
+
Date: Wed, 09 Jul 2014 13:53:12 -0500
|
18408
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18409
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18410
|
+
To: test-dup+1404931991530@test.com
|
18411
|
+
Message-ID: <53bd8f9872d02_f1503fd161c2dbf89112a@lynns-mbp.mail>
|
18412
|
+
Subject: Confirmation instructions
|
18413
|
+
Mime-Version: 1.0
|
18414
|
+
Content-Type: text/html;
|
18415
|
+
charset=UTF-8
|
18416
|
+
Content-Transfer-Encoding: 7bit
|
18417
|
+
|
18418
|
+
<p>Welcome test-dup+1404931991530@test.com!</p>
|
18419
|
+
|
18420
|
+
<p>You can confirm your account email through the link below:</p>
|
18421
|
+
|
18422
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=sJrwvNwtczLZ9dmsQA1B">Confirm my account</a></p>
|
18423
|
+
|
18424
|
+
[1m[35m (1.8ms)[0m commit transaction
|
18425
|
+
Completed 200 OK in 107ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
18426
|
+
|
18427
|
+
|
18428
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 13:53:13 -0500
|
18429
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18430
|
+
Parameters: {"email"=>"test-dup+1404931991530@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404931991530@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18431
|
+
Unpermitted parameters: registration
|
18432
|
+
Unpermitted parameters: registration
|
18433
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18434
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404931991530@test.com'
|
18435
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
18436
|
+
Completed 403 Forbidden in 63ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
18437
|
+
|
18438
|
+
|
18439
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:04:38 -0500
|
18440
|
+
|
18441
|
+
|
18442
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:04:38 -0500
|
18443
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18444
|
+
Parameters: {"email"=>"test+1404932677812@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404932677812@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18445
|
+
Unpermitted parameters: registration
|
18446
|
+
Unpermitted parameters: registration
|
18447
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18448
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404932677812@test.com'[0m
|
18449
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '066eae1e9c91ef6fb8223f514ad3652fbcecc7f7fe6b479a62a2939224818484' ORDER BY "users"."id" ASC LIMIT 1
|
18450
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18451
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18452
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:04:38.792730"], ["confirmation_token", "066eae1e9c91ef6fb8223f514ad3652fbcecc7f7fe6b479a62a2939224818484"], ["created_at", "2014-07-09 19:04:38.792185"], ["email", "test+1404932677812@test.com"], ["encrypted_password", "$2a$10$Rs7NBtelWxAwaGEKLKZgVuWCs1NEU2u98bvY7GXCCrc.MtyclIegm"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404932677812@test.com"], ["updated_at", "2014-07-09 19:04:38.792185"]]
|
18453
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18454
|
+
|
18455
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.8ms
|
18456
|
+
|
18457
|
+
Sent mail to test+1404932677812@test.com (17.7ms)
|
18458
|
+
Date: Wed, 09 Jul 2014 14:04:38 -0500
|
18459
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18460
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18461
|
+
To: test+1404932677812@test.com
|
18462
|
+
Message-ID: <53bd9246c51c0_f1503fd161c2dbf89125e@lynns-mbp.mail>
|
18463
|
+
Subject: Confirmation instructions
|
18464
|
+
Mime-Version: 1.0
|
18465
|
+
Content-Type: text/html;
|
18466
|
+
charset=UTF-8
|
18467
|
+
Content-Transfer-Encoding: 7bit
|
18468
|
+
|
18469
|
+
<p>Welcome test+1404932677812@test.com!</p>
|
18470
|
+
|
18471
|
+
<p>You can confirm your account email through the link below:</p>
|
18472
|
+
|
18473
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=UN3VZJ-LrsdaHqUy3yy4">Confirm my account</a></p>
|
18474
|
+
|
18475
|
+
[1m[35m (2.1ms)[0m commit transaction
|
18476
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.7ms)
|
18477
|
+
|
18478
|
+
|
18479
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:04:40 -0500
|
18480
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18481
|
+
Parameters: {"email"=>"test-dup+1404932679369@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932679369@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18482
|
+
Unpermitted parameters: registration
|
18483
|
+
Unpermitted parameters: registration
|
18484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18485
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932679369@test.com'
|
18486
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'd7911ba5a24a086a7d4f0ca7d3d6fffb4d9f3c7e4de5edca519a42e486dc7440' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18487
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18488
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18489
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:04:40.279515"], ["confirmation_token", "d7911ba5a24a086a7d4f0ca7d3d6fffb4d9f3c7e4de5edca519a42e486dc7440"], ["created_at", "2014-07-09 19:04:40.278958"], ["email", "test-dup+1404932679369@test.com"], ["encrypted_password", "$2a$10$rOpHEyaiFdrXNT3ozoYz/.o9RLcaYUcynsL62Gix.Xzdxo3BXnTs6"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404932679369@test.com"], ["updated_at", "2014-07-09 19:04:40.278958"]]
|
18490
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18491
|
+
|
18492
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.8ms
|
18493
|
+
|
18494
|
+
Sent mail to test-dup+1404932679369@test.com (18.8ms)
|
18495
|
+
Date: Wed, 09 Jul 2014 14:04:40 -0500
|
18496
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18497
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18498
|
+
To: test-dup+1404932679369@test.com
|
18499
|
+
Message-ID: <53bd924847d37_f1503fd161c2dbf891353@lynns-mbp.mail>
|
18500
|
+
Subject: Confirmation instructions
|
18501
|
+
Mime-Version: 1.0
|
18502
|
+
Content-Type: text/html;
|
18503
|
+
charset=UTF-8
|
18504
|
+
Content-Transfer-Encoding: 7bit
|
18505
|
+
|
18506
|
+
<p>Welcome test-dup+1404932679369@test.com!</p>
|
18507
|
+
|
18508
|
+
<p>You can confirm your account email through the link below:</p>
|
18509
|
+
|
18510
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=WoMctQn6YGa_dwNjXL_h">Confirm my account</a></p>
|
18511
|
+
|
18512
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
18513
|
+
Completed 200 OK in 98ms (Views: 0.5ms | ActiveRecord: 2.4ms)
|
18514
|
+
|
18515
|
+
|
18516
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:04:41 -0500
|
18517
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18518
|
+
Parameters: {"email"=>"test-dup+1404932679369@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932679369@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18519
|
+
Unpermitted parameters: registration
|
18520
|
+
Unpermitted parameters: registration
|
18521
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18522
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932679369@test.com'[0m
|
18523
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
18524
|
+
Completed 403 Forbidden in 63ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
18525
|
+
|
18526
|
+
|
18527
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:05:32 -0500
|
18528
|
+
|
18529
|
+
|
18530
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:05:32 -0500
|
18531
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18532
|
+
Parameters: {"email"=>"test+1404932732039@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404932732039@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18533
|
+
Unpermitted parameters: registration
|
18534
|
+
Unpermitted parameters: registration
|
18535
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18536
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404932732039@test.com'
|
18537
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '8f8f8142564fb1faff29488c05553b18a3101f1a5bc8f982610f7a88193ebcd0' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18538
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18539
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18540
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:05:33.004698"], ["confirmation_token", "8f8f8142564fb1faff29488c05553b18a3101f1a5bc8f982610f7a88193ebcd0"], ["created_at", "2014-07-09 19:05:33.004130"], ["email", "test+1404932732039@test.com"], ["encrypted_password", "$2a$10$PXnE2Jn.gOK8P4cnLuCax.aOBCqPR3btwVpfedQlv9Rqy8HJkxiUe"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404932732039@test.com"], ["updated_at", "2014-07-09 19:05:33.004130"]]
|
18541
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18542
|
+
|
18543
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.5ms
|
18544
|
+
|
18545
|
+
Sent mail to test+1404932732039@test.com (18.4ms)
|
18546
|
+
Date: Wed, 09 Jul 2014 14:05:33 -0500
|
18547
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18548
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18549
|
+
To: test+1404932732039@test.com
|
18550
|
+
Message-ID: <53bd927d4ec9_f1503fd161c2dbf89144e@lynns-mbp.mail>
|
18551
|
+
Subject: Confirmation instructions
|
18552
|
+
Mime-Version: 1.0
|
18553
|
+
Content-Type: text/html;
|
18554
|
+
charset=UTF-8
|
18555
|
+
Content-Transfer-Encoding: 7bit
|
18556
|
+
|
18557
|
+
<p>Welcome test+1404932732039@test.com!</p>
|
18558
|
+
|
18559
|
+
<p>You can confirm your account email through the link below:</p>
|
18560
|
+
|
18561
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=CDP2bys6sbEvB5gtQSnR">Confirm my account</a></p>
|
18562
|
+
|
18563
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
18564
|
+
Completed 200 OK in 99ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
18565
|
+
|
18566
|
+
|
18567
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:05:34 -0500
|
18568
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18569
|
+
Parameters: {"email"=>"test-dup+1404932733584@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932733584@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18570
|
+
Unpermitted parameters: registration
|
18571
|
+
Unpermitted parameters: registration
|
18572
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18573
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932733584@test.com'[0m
|
18574
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '0e88e6e19d72fc852bfe6070fe46a4d970ca69294c0c0996d6d9e48e0af2a077' ORDER BY "users"."id" ASC LIMIT 1
|
18575
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18576
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18577
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:05:34.513110"], ["confirmation_token", "0e88e6e19d72fc852bfe6070fe46a4d970ca69294c0c0996d6d9e48e0af2a077"], ["created_at", "2014-07-09 19:05:34.512476"], ["email", "test-dup+1404932733584@test.com"], ["encrypted_password", "$2a$10$6wsLYRGar7tuU5vlnDr2BOfhmfWVFOpftv4g28UKblmxgVETXaP32"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404932733584@test.com"], ["updated_at", "2014-07-09 19:05:34.512476"]]
|
18578
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.5ms)
|
18579
|
+
|
18580
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 18.1ms
|
18581
|
+
|
18582
|
+
Sent mail to test-dup+1404932733584@test.com (55.2ms)
|
18583
|
+
Date: Wed, 09 Jul 2014 14:05:34 -0500
|
18584
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18585
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18586
|
+
To: test-dup+1404932733584@test.com
|
18587
|
+
Message-ID: <53bd927e8239e_f1503fd161c2dbf891572@lynns-mbp.mail>
|
18588
|
+
Subject: Confirmation instructions
|
18589
|
+
Mime-Version: 1.0
|
18590
|
+
Content-Type: text/html;
|
18591
|
+
charset=UTF-8
|
18592
|
+
Content-Transfer-Encoding: 7bit
|
18593
|
+
|
18594
|
+
<p>Welcome test-dup+1404932733584@test.com!</p>
|
18595
|
+
|
18596
|
+
<p>You can confirm your account email through the link below:</p>
|
18597
|
+
|
18598
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=MJ-iKYyq34kbwhJ9NPoN">Confirm my account</a></p>
|
18599
|
+
|
18600
|
+
[1m[35m (1.8ms)[0m commit transaction
|
18601
|
+
Completed 200 OK in 142ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
18602
|
+
|
18603
|
+
|
18604
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:05:35 -0500
|
18605
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18606
|
+
Parameters: {"email"=>"test-dup+1404932733584@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932733584@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18607
|
+
Unpermitted parameters: registration
|
18608
|
+
Unpermitted parameters: registration
|
18609
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18610
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932733584@test.com'
|
18611
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
18612
|
+
Completed 403 Forbidden in 63ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
18613
|
+
|
18614
|
+
|
18615
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:06:51 -0500
|
18616
|
+
|
18617
|
+
|
18618
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:06:51 -0500
|
18619
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18620
|
+
Parameters: {"email"=>"test+1404932810721@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404932810721@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18621
|
+
Unpermitted parameters: registration
|
18622
|
+
Unpermitted parameters: registration
|
18623
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18624
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404932810721@test.com'[0m
|
18625
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'f5bad7b00648788ddf89e094b02acf75efc2f61d599f8f38eeb6b65a525a391a' ORDER BY "users"."id" ASC LIMIT 1
|
18626
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18627
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18628
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:06:52.043206"], ["confirmation_token", "f5bad7b00648788ddf89e094b02acf75efc2f61d599f8f38eeb6b65a525a391a"], ["created_at", "2014-07-09 19:06:52.042657"], ["email", "test+1404932810721@test.com"], ["encrypted_password", "$2a$10$oj1xkyG4CepApBTowMlJce6YeXy4TC.fwTNw.I8c07bYCKi/EolZ2"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404932810721@test.com"], ["updated_at", "2014-07-09 19:06:52.042657"]]
|
18629
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18630
|
+
|
18631
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.3ms
|
18632
|
+
|
18633
|
+
Sent mail to test+1404932810721@test.com (18.6ms)
|
18634
|
+
Date: Wed, 09 Jul 2014 14:06:52 -0500
|
18635
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18636
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18637
|
+
To: test+1404932810721@test.com
|
18638
|
+
Message-ID: <53bd92ccdfbd_f1503fd161c2dbf8916cd@lynns-mbp.mail>
|
18639
|
+
Subject: Confirmation instructions
|
18640
|
+
Mime-Version: 1.0
|
18641
|
+
Content-Type: text/html;
|
18642
|
+
charset=UTF-8
|
18643
|
+
Content-Transfer-Encoding: 7bit
|
18644
|
+
|
18645
|
+
<p>Welcome test+1404932810721@test.com!</p>
|
18646
|
+
|
18647
|
+
<p>You can confirm your account email through the link below:</p>
|
18648
|
+
|
18649
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=THsgUvUX3Q7YUiPV5Pxs">Confirm my account</a></p>
|
18650
|
+
|
18651
|
+
[1m[35m (1.8ms)[0m commit transaction
|
18652
|
+
Completed 200 OK in 97ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
18653
|
+
|
18654
|
+
|
18655
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:06:53 -0500
|
18656
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18657
|
+
Parameters: {"email"=>"test-dup+1404932812607@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932812607@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18658
|
+
Unpermitted parameters: registration
|
18659
|
+
Unpermitted parameters: registration
|
18660
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18661
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932812607@test.com'
|
18662
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'c7c68ff83c1b17f8c7aab395f17c6909b64fe0be78b798558fabb1072d4c3bea' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18663
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18664
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18665
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:06:53.545722"], ["confirmation_token", "c7c68ff83c1b17f8c7aab395f17c6909b64fe0be78b798558fabb1072d4c3bea"], ["created_at", "2014-07-09 19:06:53.545137"], ["email", "test-dup+1404932812607@test.com"], ["encrypted_password", "$2a$10$oBMRjMw/5Sk2077tfUNqre7fAa3sdSIlYx017WU3dAA2zcqmXc0yq"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404932812607@test.com"], ["updated_at", "2014-07-09 19:06:53.545137"]]
|
18666
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18667
|
+
|
18668
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.2ms
|
18669
|
+
|
18670
|
+
Sent mail to test-dup+1404932812607@test.com (29.1ms)
|
18671
|
+
Date: Wed, 09 Jul 2014 14:06:53 -0500
|
18672
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18673
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18674
|
+
To: test-dup+1404932812607@test.com
|
18675
|
+
Message-ID: <53bd92cd8a453_f1503fd161c2dbf8917b7@lynns-mbp.mail>
|
18676
|
+
Subject: Confirmation instructions
|
18677
|
+
Mime-Version: 1.0
|
18678
|
+
Content-Type: text/html;
|
18679
|
+
charset=UTF-8
|
18680
|
+
Content-Transfer-Encoding: 7bit
|
18681
|
+
|
18682
|
+
<p>Welcome test-dup+1404932812607@test.com!</p>
|
18683
|
+
|
18684
|
+
<p>You can confirm your account email through the link below:</p>
|
18685
|
+
|
18686
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=3oGgzFLDhJ8wzsqExiSL">Confirm my account</a></p>
|
18687
|
+
|
18688
|
+
[1m[36m (12.1ms)[0m [1mcommit transaction[0m
|
18689
|
+
Completed 200 OK in 120ms (Views: 0.4ms | ActiveRecord: 12.7ms)
|
18690
|
+
|
18691
|
+
|
18692
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:06:54 -0500
|
18693
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18694
|
+
Parameters: {"email"=>"test-dup+1404932812607@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932812607@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18695
|
+
Unpermitted parameters: registration
|
18696
|
+
Unpermitted parameters: registration
|
18697
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18698
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932812607@test.com'[0m
|
18699
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
18700
|
+
Completed 403 Forbidden in 65ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
18701
|
+
|
18702
|
+
|
18703
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:08:57 -0500
|
18704
|
+
|
18705
|
+
|
18706
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:08:57 -0500
|
18707
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18708
|
+
Parameters: {"email"=>"test+1404932936283@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404932936283@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18709
|
+
Unpermitted parameters: registration
|
18710
|
+
Unpermitted parameters: registration
|
18711
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18712
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404932936283@test.com'
|
18713
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'af9e684f86e08f31747e3d9fb45e1570311bd30d0b3a02738a09ca3340368c0b' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18714
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18715
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18716
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:08:57.602723"], ["confirmation_token", "af9e684f86e08f31747e3d9fb45e1570311bd30d0b3a02738a09ca3340368c0b"], ["created_at", "2014-07-09 19:08:57.602091"], ["email", "test+1404932936283@test.com"], ["encrypted_password", "$2a$10$SVsUdj5fgUGDMU3uL3pHQOAha08oN2od/zHMUn6q5ytgIQNhOBcBe"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404932936283@test.com"], ["updated_at", "2014-07-09 19:08:57.602091"]]
|
18717
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18718
|
+
|
18719
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.7ms
|
18720
|
+
|
18721
|
+
Sent mail to test+1404932936283@test.com (25.8ms)
|
18722
|
+
Date: Wed, 09 Jul 2014 14:08:57 -0500
|
18723
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18724
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18725
|
+
To: test+1404932936283@test.com
|
18726
|
+
Message-ID: <53bd934996f69_f1503fd161c2dbf891879@lynns-mbp.mail>
|
18727
|
+
Subject: Confirmation instructions
|
18728
|
+
Mime-Version: 1.0
|
18729
|
+
Content-Type: text/html;
|
18730
|
+
charset=UTF-8
|
18731
|
+
Content-Transfer-Encoding: 7bit
|
18732
|
+
|
18733
|
+
<p>Welcome test+1404932936283@test.com!</p>
|
18734
|
+
|
18735
|
+
<p>You can confirm your account email through the link below:</p>
|
18736
|
+
|
18737
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=5tWX6W7awBuaR7U3r3Fz">Confirm my account</a></p>
|
18738
|
+
|
18739
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
18740
|
+
Completed 200 OK in 107ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
18741
|
+
|
18742
|
+
|
18743
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:08:59 -0500
|
18744
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18745
|
+
Parameters: {"email"=>"test-dup+1404932938204@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932938204@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18746
|
+
Unpermitted parameters: registration
|
18747
|
+
Unpermitted parameters: registration
|
18748
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18749
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932938204@test.com'[0m
|
18750
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '254315bdfadd8397bc8f874de4a8263ec0daee0c042df1722f01cf42fadf45ae' ORDER BY "users"."id" ASC LIMIT 1
|
18751
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18752
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18753
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:08:59.107073"], ["confirmation_token", "254315bdfadd8397bc8f874de4a8263ec0daee0c042df1722f01cf42fadf45ae"], ["created_at", "2014-07-09 19:08:59.106123"], ["email", "test-dup+1404932938204@test.com"], ["encrypted_password", "$2a$10$qKZOaQvpamqFaUo.19Lzye9Ljztl7QlcwIctYRftcviMXSiGv8V.a"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404932938204@test.com"], ["updated_at", "2014-07-09 19:08:59.106123"]]
|
18754
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18755
|
+
|
18756
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.6ms
|
18757
|
+
|
18758
|
+
Sent mail to test-dup+1404932938204@test.com (19.2ms)
|
18759
|
+
Date: Wed, 09 Jul 2014 14:08:59 -0500
|
18760
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18761
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18762
|
+
To: test-dup+1404932938204@test.com
|
18763
|
+
Message-ID: <53bd934b1e004_f1503fd161c2dbf891917@lynns-mbp.mail>
|
18764
|
+
Subject: Confirmation instructions
|
18765
|
+
Mime-Version: 1.0
|
18766
|
+
Content-Type: text/html;
|
18767
|
+
charset=UTF-8
|
18768
|
+
Content-Transfer-Encoding: 7bit
|
18769
|
+
|
18770
|
+
<p>Welcome test-dup+1404932938204@test.com!</p>
|
18771
|
+
|
18772
|
+
<p>You can confirm your account email through the link below:</p>
|
18773
|
+
|
18774
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=qhyb9X7iy7sD8M2snyL8">Confirm my account</a></p>
|
18775
|
+
|
18776
|
+
[1m[35m (2.3ms)[0m commit transaction
|
18777
|
+
Completed 200 OK in 101ms (Views: 0.4ms | ActiveRecord: 2.9ms)
|
18778
|
+
|
18779
|
+
|
18780
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:09:00 -0500
|
18781
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18782
|
+
Parameters: {"email"=>"test-dup+1404932938204@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404932938204@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18783
|
+
Unpermitted parameters: registration
|
18784
|
+
Unpermitted parameters: registration
|
18785
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18786
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404932938204@test.com'
|
18787
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
18788
|
+
Completed 403 Forbidden in 65ms (Views: 0.7ms | ActiveRecord: 0.3ms)
|
18789
|
+
|
18790
|
+
|
18791
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:12:41 -0500
|
18792
|
+
|
18793
|
+
|
18794
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:12:41 -0500
|
18795
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18796
|
+
Parameters: {"email"=>"test+1404933160036@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933160036@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18797
|
+
Unpermitted parameters: registration
|
18798
|
+
Unpermitted parameters: registration
|
18799
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18800
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933160036@test.com'[0m
|
18801
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'cdda8078b78c5acac80a9fb080fab135fd496513f852f0669b64e115d140ca12' ORDER BY "users"."id" ASC LIMIT 1
|
18802
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18803
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18804
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:12:41.345317"], ["confirmation_token", "cdda8078b78c5acac80a9fb080fab135fd496513f852f0669b64e115d140ca12"], ["created_at", "2014-07-09 19:12:41.344739"], ["email", "test+1404933160036@test.com"], ["encrypted_password", "$2a$10$zt/JcSshtp/LNfKXnT6U4ukdnvj/n.Pvt4JNhPO1YAe5hYuUWWGSG"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933160036@test.com"], ["updated_at", "2014-07-09 19:12:41.344739"]]
|
18805
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18806
|
+
|
18807
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.4ms
|
18808
|
+
|
18809
|
+
Sent mail to test+1404933160036@test.com (18.0ms)
|
18810
|
+
Date: Wed, 09 Jul 2014 14:12:41 -0500
|
18811
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18812
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18813
|
+
To: test+1404933160036@test.com
|
18814
|
+
Message-ID: <53bd9429580c9_f1503fd161c2dbf89202c@lynns-mbp.mail>
|
18815
|
+
Subject: Confirmation instructions
|
18816
|
+
Mime-Version: 1.0
|
18817
|
+
Content-Type: text/html;
|
18818
|
+
charset=UTF-8
|
18819
|
+
Content-Transfer-Encoding: 7bit
|
18820
|
+
|
18821
|
+
<p>Welcome test+1404933160036@test.com!</p>
|
18822
|
+
|
18823
|
+
<p>You can confirm your account email through the link below:</p>
|
18824
|
+
|
18825
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=UPR5crDPvJE8CaGUz4-5">Confirm my account</a></p>
|
18826
|
+
|
18827
|
+
[1m[35m (2.2ms)[0m commit transaction
|
18828
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.8ms)
|
18829
|
+
|
18830
|
+
|
18831
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:12:42 -0500
|
18832
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18833
|
+
Parameters: {"email"=>"test-dup+1404933161890@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404933161890@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18834
|
+
Unpermitted parameters: registration
|
18835
|
+
Unpermitted parameters: registration
|
18836
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18837
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404933161890@test.com'
|
18838
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '9a0ed7e0d8be18a00cf1f1db84f87d9d03317a39082414a8cdb31a36c24aeea6' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18839
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18840
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18841
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:12:42.842407"], ["confirmation_token", "9a0ed7e0d8be18a00cf1f1db84f87d9d03317a39082414a8cdb31a36c24aeea6"], ["created_at", "2014-07-09 19:12:42.841771"], ["email", "test-dup+1404933161890@test.com"], ["encrypted_password", "$2a$10$03dDp5WrkQGXQuxc0RAxNOp0tjTbAl6uq2c7YkpmRrZu0pN/Rtd/."], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404933161890@test.com"], ["updated_at", "2014-07-09 19:12:42.841771"]]
|
18842
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.5ms)
|
18843
|
+
|
18844
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 14.5ms
|
18845
|
+
|
18846
|
+
Sent mail to test-dup+1404933161890@test.com (20.9ms)
|
18847
|
+
Date: Wed, 09 Jul 2014 14:12:42 -0500
|
18848
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18849
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18850
|
+
To: test-dup+1404933161890@test.com
|
18851
|
+
Message-ID: <53bd942ad1bef_f1503fd161c2dbf8921fa@lynns-mbp.mail>
|
18852
|
+
Subject: Confirmation instructions
|
18853
|
+
Mime-Version: 1.0
|
18854
|
+
Content-Type: text/html;
|
18855
|
+
charset=UTF-8
|
18856
|
+
Content-Transfer-Encoding: 7bit
|
18857
|
+
|
18858
|
+
<p>Welcome test-dup+1404933161890@test.com!</p>
|
18859
|
+
|
18860
|
+
<p>You can confirm your account email through the link below:</p>
|
18861
|
+
|
18862
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=VhsrPff59JPXN6j8j5Ba">Confirm my account</a></p>
|
18863
|
+
|
18864
|
+
[1m[36m (1.9ms)[0m [1mcommit transaction[0m
|
18865
|
+
Completed 200 OK in 104ms (Views: 0.3ms | ActiveRecord: 2.4ms)
|
18866
|
+
|
18867
|
+
|
18868
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:12:43 -0500
|
18869
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18870
|
+
Parameters: {"email"=>"test-dup+1404933161890@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404933161890@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18871
|
+
Unpermitted parameters: registration
|
18872
|
+
Unpermitted parameters: registration
|
18873
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18874
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404933161890@test.com'[0m
|
18875
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
18876
|
+
Completed 403 Forbidden in 63ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
18877
|
+
|
18878
|
+
|
18879
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:19:50 -0500
|
18880
|
+
|
18881
|
+
|
18882
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:19:50 -0500
|
18883
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18884
|
+
Parameters: {"email"=>"test+1404933589109@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933589109@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18885
|
+
Unpermitted parameters: registration
|
18886
|
+
Unpermitted parameters: registration
|
18887
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18888
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933589109@test.com'
|
18889
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'e5ea730956122b6d704ab38d728294ac02c526e2adbfca1bbbe667b50c11c23b' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18890
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18891
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18892
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:19:50.090015"], ["confirmation_token", "e5ea730956122b6d704ab38d728294ac02c526e2adbfca1bbbe667b50c11c23b"], ["created_at", "2014-07-09 19:19:50.089460"], ["email", "test+1404933589109@test.com"], ["encrypted_password", "$2a$10$95QPFf9t.HH.OsqsMy4RVORJxGk7c8iQrz2nNKXwwz49jJr2vwdBK"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933589109@test.com"], ["updated_at", "2014-07-09 19:19:50.089460"]]
|
18893
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18894
|
+
|
18895
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.5ms
|
18896
|
+
|
18897
|
+
Sent mail to test+1404933589109@test.com (18.5ms)
|
18898
|
+
Date: Wed, 09 Jul 2014 14:19:50 -0500
|
18899
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18900
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18901
|
+
To: test+1404933589109@test.com
|
18902
|
+
Message-ID: <53bd95d61974e_f1503fd161c2dbf892259@lynns-mbp.mail>
|
18903
|
+
Subject: Confirmation instructions
|
18904
|
+
Mime-Version: 1.0
|
18905
|
+
Content-Type: text/html;
|
18906
|
+
charset=UTF-8
|
18907
|
+
Content-Transfer-Encoding: 7bit
|
18908
|
+
|
18909
|
+
<p>Welcome test+1404933589109@test.com!</p>
|
18910
|
+
|
18911
|
+
<p>You can confirm your account email through the link below:</p>
|
18912
|
+
|
18913
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=Vy2zdhyucDTpYXXTS9JB">Confirm my account</a></p>
|
18914
|
+
|
18915
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
18916
|
+
Completed 200 OK in 99ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
18917
|
+
|
18918
|
+
|
18919
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:20:46 -0500
|
18920
|
+
|
18921
|
+
|
18922
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:20:46 -0500
|
18923
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18924
|
+
Parameters: {"email"=>"test+1404933645214@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933645214@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18925
|
+
Unpermitted parameters: registration
|
18926
|
+
Unpermitted parameters: registration
|
18927
|
+
[1m[35m (0.1ms)[0m begin transaction
|
18928
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933645214@test.com'[0m
|
18929
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '6569cb9274e848b58d74d00bee749f43d0a4fb25109b388761c64b2f118624ae' ORDER BY "users"."id" ASC LIMIT 1
|
18930
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18931
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18932
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:20:46.176745"], ["confirmation_token", "6569cb9274e848b58d74d00bee749f43d0a4fb25109b388761c64b2f118624ae"], ["created_at", "2014-07-09 19:20:46.176191"], ["email", "test+1404933645214@test.com"], ["encrypted_password", "$2a$10$RDyokwi6N2zYzG..1awkxO/BQ4JRKrODShO1n027LaUXBaFqx0pHe"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933645214@test.com"], ["updated_at", "2014-07-09 19:20:46.176191"]]
|
18933
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18934
|
+
|
18935
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.5ms
|
18936
|
+
|
18937
|
+
Sent mail to test+1404933645214@test.com (17.7ms)
|
18938
|
+
Date: Wed, 09 Jul 2014 14:20:46 -0500
|
18939
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18940
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18941
|
+
To: test+1404933645214@test.com
|
18942
|
+
Message-ID: <53bd960e2ea3c_f1503fd161c2dbf8923cd@lynns-mbp.mail>
|
18943
|
+
Subject: Confirmation instructions
|
18944
|
+
Mime-Version: 1.0
|
18945
|
+
Content-Type: text/html;
|
18946
|
+
charset=UTF-8
|
18947
|
+
Content-Transfer-Encoding: 7bit
|
18948
|
+
|
18949
|
+
<p>Welcome test+1404933645214@test.com!</p>
|
18950
|
+
|
18951
|
+
<p>You can confirm your account email through the link below:</p>
|
18952
|
+
|
18953
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=exuKH59iZyAcgBcEDZJE">Confirm my account</a></p>
|
18954
|
+
|
18955
|
+
[1m[35m (1.8ms)[0m commit transaction
|
18956
|
+
Completed 200 OK in 97ms (Views: 0.4ms | ActiveRecord: 2.3ms)
|
18957
|
+
|
18958
|
+
|
18959
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:21:33 -0500
|
18960
|
+
|
18961
|
+
|
18962
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:21:33 -0500
|
18963
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
18964
|
+
Parameters: {"email"=>"test+1404933692410@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933692410@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
18965
|
+
Unpermitted parameters: registration
|
18966
|
+
Unpermitted parameters: registration
|
18967
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
18968
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933692410@test.com'
|
18969
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '6c0150dcb560759fc4c3a8334edb4550ce8d362262265a8dd6e4cc0db0faa090' ORDER BY "users"."id" ASC LIMIT 1[0m
|
18970
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
18971
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
18972
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:21:33.726215"], ["confirmation_token", "6c0150dcb560759fc4c3a8334edb4550ce8d362262265a8dd6e4cc0db0faa090"], ["created_at", "2014-07-09 19:21:33.725691"], ["email", "test+1404933692410@test.com"], ["encrypted_password", "$2a$10$yHaDJQfm9mQ.AL2Oho17punSHyQQn2e5S.wuAQNtv2Aqn6Ox/U0cq"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933692410@test.com"], ["updated_at", "2014-07-09 19:21:33.725691"]]
|
18973
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
18974
|
+
|
18975
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.0ms
|
18976
|
+
|
18977
|
+
Sent mail to test+1404933692410@test.com (20.3ms)
|
18978
|
+
Date: Wed, 09 Jul 2014 14:21:33 -0500
|
18979
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
18980
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
18981
|
+
To: test+1404933692410@test.com
|
18982
|
+
Message-ID: <53bd963db4a7b_f1503fd161c2dbf8924ef@lynns-mbp.mail>
|
18983
|
+
Subject: Confirmation instructions
|
18984
|
+
Mime-Version: 1.0
|
18985
|
+
Content-Type: text/html;
|
18986
|
+
charset=UTF-8
|
18987
|
+
Content-Transfer-Encoding: 7bit
|
18988
|
+
|
18989
|
+
<p>Welcome test+1404933692410@test.com!</p>
|
18990
|
+
|
18991
|
+
<p>You can confirm your account email through the link below:</p>
|
18992
|
+
|
18993
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=mexfY9LtBs2_ApgUPZT7">Confirm my account</a></p>
|
18994
|
+
|
18995
|
+
[1m[36m (1.9ms)[0m [1mcommit transaction[0m
|
18996
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.4ms)
|
18997
|
+
|
18998
|
+
|
18999
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:22:23 -0500
|
19000
|
+
|
19001
|
+
|
19002
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:22:23 -0500
|
19003
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19004
|
+
Parameters: {"email"=>"test+1404933742531@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933742531@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19005
|
+
Unpermitted parameters: registration
|
19006
|
+
Unpermitted parameters: registration
|
19007
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19008
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933742531@test.com'[0m
|
19009
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'c90d8619bbc2b1cdecfcc512fc415702e83275d54b60300de2b4e4279afa44bc' ORDER BY "users"."id" ASC LIMIT 1
|
19010
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19011
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19012
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:22:23.503371"], ["confirmation_token", "c90d8619bbc2b1cdecfcc512fc415702e83275d54b60300de2b4e4279afa44bc"], ["created_at", "2014-07-09 19:22:23.502805"], ["email", "test+1404933742531@test.com"], ["encrypted_password", "$2a$10$I2mHK0SqZtE3AdDZrNl.ce621fUzOC6eGEHF.Qoe0eSkhRDL3.dxO"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933742531@test.com"], ["updated_at", "2014-07-09 19:22:23.502805"]]
|
19013
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19014
|
+
|
19015
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.7ms
|
19016
|
+
|
19017
|
+
Sent mail to test+1404933742531@test.com (17.6ms)
|
19018
|
+
Date: Wed, 09 Jul 2014 14:22:23 -0500
|
19019
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19020
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19021
|
+
To: test+1404933742531@test.com
|
19022
|
+
Message-ID: <53bd966f7e71f_f1503fd161c2dbf892583@lynns-mbp.mail>
|
19023
|
+
Subject: Confirmation instructions
|
19024
|
+
Mime-Version: 1.0
|
19025
|
+
Content-Type: text/html;
|
19026
|
+
charset=UTF-8
|
19027
|
+
Content-Transfer-Encoding: 7bit
|
19028
|
+
|
19029
|
+
<p>Welcome test+1404933742531@test.com!</p>
|
19030
|
+
|
19031
|
+
<p>You can confirm your account email through the link below:</p>
|
19032
|
+
|
19033
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=aAFyDyGgZGvuXgzYabLr">Confirm my account</a></p>
|
19034
|
+
|
19035
|
+
[1m[35m (2.3ms)[0m commit transaction
|
19036
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.8ms)
|
19037
|
+
|
19038
|
+
|
19039
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:24:12 -0500
|
19040
|
+
|
19041
|
+
|
19042
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:24:12 -0500
|
19043
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19044
|
+
Parameters: {"email"=>"test+1404933851160@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933851160@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19045
|
+
Unpermitted parameters: registration
|
19046
|
+
Unpermitted parameters: registration
|
19047
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19048
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933851160@test.com'
|
19049
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'fc78a4194338bccf27c6e06de305db6a3989eedb8d628ae176be050601da9b0f' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19050
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19051
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19052
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:24:12.463255"], ["confirmation_token", "fc78a4194338bccf27c6e06de305db6a3989eedb8d628ae176be050601da9b0f"], ["created_at", "2014-07-09 19:24:12.462700"], ["email", "test+1404933851160@test.com"], ["encrypted_password", "$2a$10$ZPS.7E5nhnM4hhFAam28ku4ybXZxu2u5ApBSrjMDAuqqFpqVPPx2K"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933851160@test.com"], ["updated_at", "2014-07-09 19:24:12.462700"]]
|
19053
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19054
|
+
|
19055
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.0ms
|
19056
|
+
|
19057
|
+
Sent mail to test+1404933851160@test.com (18.2ms)
|
19058
|
+
Date: Wed, 09 Jul 2014 14:24:12 -0500
|
19059
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19060
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19061
|
+
To: test+1404933851160@test.com
|
19062
|
+
Message-ID: <53bd96dc74770_f1503fd161c2dbf892667@lynns-mbp.mail>
|
19063
|
+
Subject: Confirmation instructions
|
19064
|
+
Mime-Version: 1.0
|
19065
|
+
Content-Type: text/html;
|
19066
|
+
charset=UTF-8
|
19067
|
+
Content-Transfer-Encoding: 7bit
|
19068
|
+
|
19069
|
+
<p>Welcome test+1404933851160@test.com!</p>
|
19070
|
+
|
19071
|
+
<p>You can confirm your account email through the link below:</p>
|
19072
|
+
|
19073
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=4z5bkpKynbNE9YLGUKJ1">Confirm my account</a></p>
|
19074
|
+
|
19075
|
+
[1m[36m (2.2ms)[0m [1mcommit transaction[0m
|
19076
|
+
Completed 200 OK in 97ms (Views: 0.4ms | ActiveRecord: 2.7ms)
|
19077
|
+
|
19078
|
+
|
19079
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:25:40 -0500
|
19080
|
+
|
19081
|
+
|
19082
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:25:40 -0500
|
19083
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19084
|
+
Parameters: {"email"=>"test+1404933939463@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933939463@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19085
|
+
Unpermitted parameters: registration
|
19086
|
+
Unpermitted parameters: registration
|
19087
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19088
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933939463@test.com'[0m
|
19089
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '179d24ef397522b1b4e7a0c4dfe01a9dfc92ab9e82442eb8b862562e9865d678' ORDER BY "users"."id" ASC LIMIT 1
|
19090
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19091
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19092
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:25:40.796536"], ["confirmation_token", "179d24ef397522b1b4e7a0c4dfe01a9dfc92ab9e82442eb8b862562e9865d678"], ["created_at", "2014-07-09 19:25:40.795971"], ["email", "test+1404933939463@test.com"], ["encrypted_password", "$2a$10$WxN43plehYgBNkzNOH1GkOTZVSjLXtC9auXZa2vn2V6YGYNperz.u"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933939463@test.com"], ["updated_at", "2014-07-09 19:25:40.795971"]]
|
19093
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19094
|
+
|
19095
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.1ms
|
19096
|
+
|
19097
|
+
Sent mail to test+1404933939463@test.com (17.1ms)
|
19098
|
+
Date: Wed, 09 Jul 2014 14:25:40 -0500
|
19099
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19100
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19101
|
+
To: test+1404933939463@test.com
|
19102
|
+
Message-ID: <53bd9734c5e00_f1503fd161c2dbf892784@lynns-mbp.mail>
|
19103
|
+
Subject: Confirmation instructions
|
19104
|
+
Mime-Version: 1.0
|
19105
|
+
Content-Type: text/html;
|
19106
|
+
charset=UTF-8
|
19107
|
+
Content-Transfer-Encoding: 7bit
|
19108
|
+
|
19109
|
+
<p>Welcome test+1404933939463@test.com!</p>
|
19110
|
+
|
19111
|
+
<p>You can confirm your account email through the link below:</p>
|
19112
|
+
|
19113
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=hN6sELJxUvo1rGESCswS">Confirm my account</a></p>
|
19114
|
+
|
19115
|
+
[1m[35m (1.8ms)[0m commit transaction
|
19116
|
+
Completed 200 OK in 95ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
19117
|
+
|
19118
|
+
|
19119
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:26:27 -0500
|
19120
|
+
|
19121
|
+
|
19122
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:26:28 -0500
|
19123
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19124
|
+
Parameters: {"email"=>"test+1404933987112@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404933987112@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19125
|
+
Unpermitted parameters: registration
|
19126
|
+
Unpermitted parameters: registration
|
19127
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19128
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404933987112@test.com'
|
19129
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'e161e837033ac87ad6527218b744687fb85833ab46b288d330ba387c71888737' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19130
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19131
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19132
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:26:28.081840"], ["confirmation_token", "e161e837033ac87ad6527218b744687fb85833ab46b288d330ba387c71888737"], ["created_at", "2014-07-09 19:26:28.081127"], ["email", "test+1404933987112@test.com"], ["encrypted_password", "$2a$10$IVaxYhVlDkvS0/6UcSGvNecEC7Atx5th6tRUPH6gMsc1NUEL0BRNK"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404933987112@test.com"], ["updated_at", "2014-07-09 19:26:28.081127"]]
|
19133
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19134
|
+
|
19135
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.9ms
|
19136
|
+
|
19137
|
+
Sent mail to test+1404933987112@test.com (18.8ms)
|
19138
|
+
Date: Wed, 09 Jul 2014 14:26:28 -0500
|
19139
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19140
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19141
|
+
To: test+1404933987112@test.com
|
19142
|
+
Message-ID: <53bd976417baa_f1503fd161c2dbf8928de@lynns-mbp.mail>
|
19143
|
+
Subject: Confirmation instructions
|
19144
|
+
Mime-Version: 1.0
|
19145
|
+
Content-Type: text/html;
|
19146
|
+
charset=UTF-8
|
19147
|
+
Content-Transfer-Encoding: 7bit
|
19148
|
+
|
19149
|
+
<p>Welcome test+1404933987112@test.com!</p>
|
19150
|
+
|
19151
|
+
<p>You can confirm your account email through the link below:</p>
|
19152
|
+
|
19153
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=J6H8UZta251km21v4UAL">Confirm my account</a></p>
|
19154
|
+
|
19155
|
+
[1m[36m (1.7ms)[0m [1mcommit transaction[0m
|
19156
|
+
Completed 200 OK in 101ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
19157
|
+
|
19158
|
+
|
19159
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:27:07 -0500
|
19160
|
+
|
19161
|
+
|
19162
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:27:07 -0500
|
19163
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19164
|
+
Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19165
|
+
Unpermitted parameters: registration
|
19166
|
+
Unpermitted parameters: registration
|
19167
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19168
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test@test.com'[0m
|
19169
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'b1c40eaf98cd0e5b15c3d2d77e4afa0a756961e83ad075c537a124b7d12777a0' ORDER BY "users"."id" ASC LIMIT 1
|
19170
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19171
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19172
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-09 19:27:07.122909"], ["confirmation_token", "b1c40eaf98cd0e5b15c3d2d77e4afa0a756961e83ad075c537a124b7d12777a0"], ["created_at", "2014-07-09 19:27:07.122354"], ["email", "test@test.com"], ["encrypted_password", "$2a$10$QEqMOknutVUNpZk6tGutTeGCqeomsaDIkrubGQtlL4HcpPtxOnjHi"], ["provider", "email"], ["tokens", "{}"], ["uid", "test@test.com"], ["updated_at", "2014-07-09 19:27:07.122354"]]
|
19173
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19174
|
+
|
19175
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 11.9ms
|
19176
|
+
|
19177
|
+
Sent mail to test@test.com (17.0ms)
|
19178
|
+
Date: Wed, 09 Jul 2014 14:27:07 -0500
|
19179
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19180
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19181
|
+
To: test@test.com
|
19182
|
+
Message-ID: <53bd978b21571_f1503fd161c2dbf8929e1@lynns-mbp.mail>
|
19183
|
+
Subject: Confirmation instructions
|
19184
|
+
Mime-Version: 1.0
|
19185
|
+
Content-Type: text/html;
|
19186
|
+
charset=UTF-8
|
19187
|
+
Content-Transfer-Encoding: 7bit
|
19188
|
+
|
19189
|
+
<p>Welcome test@test.com!</p>
|
19190
|
+
|
19191
|
+
<p>You can confirm your account email through the link below:</p>
|
19192
|
+
|
19193
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=ZxLzr4m4oHERAyxeYQ8L">Confirm my account</a></p>
|
19194
|
+
|
19195
|
+
[1m[35m (2.4ms)[0m commit transaction
|
19196
|
+
Completed 200 OK in 96ms (Views: 0.3ms | ActiveRecord: 2.9ms)
|
19197
|
+
|
19198
|
+
|
19199
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:30:33 -0500
|
19200
|
+
|
19201
|
+
|
19202
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:30:33 -0500
|
19203
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19204
|
+
Parameters: {"email"=>"test+1404934232203@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404934232203@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19205
|
+
Unpermitted parameters: registration
|
19206
|
+
Unpermitted parameters: registration
|
19207
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19208
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404934232203@test.com'
|
19209
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '94c5881d4bd64371bbf8f47195cc750bb79e777fed36b08bab92a1d2fc6ed95a' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19210
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19211
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19212
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:30:33.177372"], ["confirmation_token", "94c5881d4bd64371bbf8f47195cc750bb79e777fed36b08bab92a1d2fc6ed95a"], ["created_at", "2014-07-09 19:30:33.176821"], ["email", "test+1404934232203@test.com"], ["encrypted_password", "$2a$10$FyMA9EgYfqxv/8RadjXBZOl/XcV58kQ27QCe6tFcnFi5bqKLPZ3fq"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404934232203@test.com"], ["updated_at", "2014-07-09 19:30:33.176821"]]
|
19213
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19214
|
+
|
19215
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.5ms
|
19216
|
+
|
19217
|
+
Sent mail to test+1404934232203@test.com (35.4ms)
|
19218
|
+
Date: Wed, 09 Jul 2014 14:30:33 -0500
|
19219
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19220
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19221
|
+
To: test+1404934232203@test.com
|
19222
|
+
Message-ID: <53bd98592ecc5_f1503fd161c2dbf893068@lynns-mbp.mail>
|
19223
|
+
Subject: Confirmation instructions
|
19224
|
+
Mime-Version: 1.0
|
19225
|
+
Content-Type: text/html;
|
19226
|
+
charset=UTF-8
|
19227
|
+
Content-Transfer-Encoding: 7bit
|
19228
|
+
|
19229
|
+
<p>Welcome test+1404934232203@test.com!</p>
|
19230
|
+
|
19231
|
+
<p>You can confirm your account email through the link below:</p>
|
19232
|
+
|
19233
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=ricyYTrSLHetx-z8eLXi">Confirm my account</a></p>
|
19234
|
+
|
19235
|
+
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
|
19236
|
+
Completed 200 OK in 115ms (Views: 0.3ms | ActiveRecord: 2.6ms)
|
19237
|
+
|
19238
|
+
|
19239
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:30:59 -0500
|
19240
|
+
|
19241
|
+
|
19242
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:30:59 -0500
|
19243
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19244
|
+
Parameters: {"email"=>"test+1404934258636@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404934258636@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19245
|
+
Unpermitted parameters: registration
|
19246
|
+
Unpermitted parameters: registration
|
19247
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19248
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404934258636@test.com'[0m
|
19249
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '772b2d7abb212b9f39c064afbf90522d656700bc28630740fe5d4d177e9b6109' ORDER BY "users"."id" ASC LIMIT 1
|
19250
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19251
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19252
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:30:59.686777"], ["confirmation_token", "772b2d7abb212b9f39c064afbf90522d656700bc28630740fe5d4d177e9b6109"], ["created_at", "2014-07-09 19:30:59.686216"], ["email", "test+1404934258636@test.com"], ["encrypted_password", "$2a$10$7KqlxqJmYtF/PiOd6xhatueoe2P/0Ibgvxn1OK0Fi8gNaWmKT8DR6"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404934258636@test.com"], ["updated_at", "2014-07-09 19:30:59.686216"]]
|
19253
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19254
|
+
|
19255
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.0ms
|
19256
|
+
|
19257
|
+
Sent mail to test+1404934258636@test.com (19.7ms)
|
19258
|
+
Date: Wed, 09 Jul 2014 14:30:59 -0500
|
19259
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19260
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19261
|
+
To: test+1404934258636@test.com
|
19262
|
+
Message-ID: <53bd9873ab483_f1503fd161c2dbf89313b@lynns-mbp.mail>
|
19263
|
+
Subject: Confirmation instructions
|
19264
|
+
Mime-Version: 1.0
|
19265
|
+
Content-Type: text/html;
|
19266
|
+
charset=UTF-8
|
19267
|
+
Content-Transfer-Encoding: 7bit
|
19268
|
+
|
19269
|
+
<p>Welcome test+1404934258636@test.com!</p>
|
19270
|
+
|
19271
|
+
<p>You can confirm your account email through the link below:</p>
|
19272
|
+
|
19273
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=NVrZJWyCwuCjSzyt2cNG">Confirm my account</a></p>
|
19274
|
+
|
19275
|
+
[1m[35m (1.8ms)[0m commit transaction
|
19276
|
+
Completed 200 OK in 101ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
19277
|
+
|
19278
|
+
|
19279
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:32:30 -0500
|
19280
|
+
|
19281
|
+
|
19282
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:32:30 -0500
|
19283
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19284
|
+
Parameters: {"email"=>"test+1404934348864@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404934348864@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19285
|
+
Unpermitted parameters: registration
|
19286
|
+
Unpermitted parameters: registration
|
19287
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19288
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404934348864@test.com'
|
19289
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'cfad29640b78454a9f6b6ce5a7a564f3dda6fc240a8f28a7e409e4ab7b957088' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19290
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19291
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19292
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:32:30.171305"], ["confirmation_token", "cfad29640b78454a9f6b6ce5a7a564f3dda6fc240a8f28a7e409e4ab7b957088"], ["created_at", "2014-07-09 19:32:30.170747"], ["email", "test+1404934348864@test.com"], ["encrypted_password", "$2a$10$SBy12OWoO2EIoNORnZpnU.O0NB8vIPDEFF6LSvU60.zltQwGqOMh6"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404934348864@test.com"], ["updated_at", "2014-07-09 19:32:30.170747"]]
|
19293
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19294
|
+
|
19295
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 15.0ms
|
19296
|
+
|
19297
|
+
Sent mail to test+1404934348864@test.com (36.2ms)
|
19298
|
+
Date: Wed, 09 Jul 2014 14:32:30 -0500
|
19299
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19300
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19301
|
+
To: test+1404934348864@test.com
|
19302
|
+
Message-ID: <53bd98ce31e09_f1503fd161c2dbf8932a@lynns-mbp.mail>
|
19303
|
+
Subject: Confirmation instructions
|
19304
|
+
Mime-Version: 1.0
|
19305
|
+
Content-Type: text/html;
|
19306
|
+
charset=UTF-8
|
19307
|
+
Content-Transfer-Encoding: 7bit
|
19308
|
+
|
19309
|
+
<p>Welcome test+1404934348864@test.com!</p>
|
19310
|
+
|
19311
|
+
<p>You can confirm your account email through the link below:</p>
|
19312
|
+
|
19313
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=6u9_kC8ygcsXC9E2_uS6">Confirm my account</a></p>
|
19314
|
+
|
19315
|
+
[1m[36m (2.3ms)[0m [1mcommit transaction[0m
|
19316
|
+
Completed 200 OK in 119ms (Views: 0.3ms | ActiveRecord: 2.8ms)
|
19317
|
+
|
19318
|
+
|
19319
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:32:41 -0500
|
19320
|
+
|
19321
|
+
|
19322
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:32:41 -0500
|
19323
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19324
|
+
Parameters: {"email"=>"test+1404934360376@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404934360376@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19325
|
+
Unpermitted parameters: registration
|
19326
|
+
Unpermitted parameters: registration
|
19327
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19328
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404934360376@test.com'[0m
|
19329
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '61668c42111572b95c5425a86b72c972c30dcd4aa908842f16be924d3193d699' ORDER BY "users"."id" ASC LIMIT 1
|
19330
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19331
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19332
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:32:41.382613"], ["confirmation_token", "61668c42111572b95c5425a86b72c972c30dcd4aa908842f16be924d3193d699"], ["created_at", "2014-07-09 19:32:41.381687"], ["email", "test+1404934360376@test.com"], ["encrypted_password", "$2a$10$JfWuVrN0JCbCFcSahPPITOPw07GfUMHOSB9rMQo1F38vyDTzewZdK"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404934360376@test.com"], ["updated_at", "2014-07-09 19:32:41.381687"]]
|
19333
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19334
|
+
|
19335
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 14.5ms
|
19336
|
+
|
19337
|
+
Sent mail to test+1404934360376@test.com (19.5ms)
|
19338
|
+
Date: Wed, 09 Jul 2014 14:32:41 -0500
|
19339
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19340
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19341
|
+
To: test+1404934360376@test.com
|
19342
|
+
Message-ID: <53bd98d961a02_f1503fd161c2dbf8933a7@lynns-mbp.mail>
|
19343
|
+
Subject: Confirmation instructions
|
19344
|
+
Mime-Version: 1.0
|
19345
|
+
Content-Type: text/html;
|
19346
|
+
charset=UTF-8
|
19347
|
+
Content-Transfer-Encoding: 7bit
|
19348
|
+
|
19349
|
+
<p>Welcome test+1404934360376@test.com!</p>
|
19350
|
+
|
19351
|
+
<p>You can confirm your account email through the link below:</p>
|
19352
|
+
|
19353
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=Q_5sK-pAHkNDgVkceQ4s">Confirm my account</a></p>
|
19354
|
+
|
19355
|
+
[1m[35m (1.8ms)[0m commit transaction
|
19356
|
+
Completed 200 OK in 102ms (Views: 0.3ms | ActiveRecord: 2.6ms)
|
19357
|
+
|
19358
|
+
|
19359
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:33:36 -0500
|
19360
|
+
|
19361
|
+
|
19362
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:33:36 -0500
|
19363
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19364
|
+
Parameters: {"email"=>"test+1404934415981@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404934415981@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19365
|
+
Unpermitted parameters: registration
|
19366
|
+
Unpermitted parameters: registration
|
19367
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19368
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404934415981@test.com'
|
19369
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '95879e1127ede3d082450a98dc2ff25965149d589e591d499869628d51893e86' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19370
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19371
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19372
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:33:37.028573"], ["confirmation_token", "95879e1127ede3d082450a98dc2ff25965149d589e591d499869628d51893e86"], ["created_at", "2014-07-09 19:33:37.027609"], ["email", "test+1404934415981@test.com"], ["encrypted_password", "$2a$10$hR6mdfalIlJIz30AkRYrRe51dV51S6Dijrhw3xhhpyqBD.tMoO.Fa"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404934415981@test.com"], ["updated_at", "2014-07-09 19:33:37.027609"]]
|
19373
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
|
19374
|
+
|
19375
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 21.4ms
|
19376
|
+
|
19377
|
+
Sent mail to test+1404934415981@test.com (25.3ms)
|
19378
|
+
Date: Wed, 09 Jul 2014 14:33:37 -0500
|
19379
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19380
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19381
|
+
To: test+1404934415981@test.com
|
19382
|
+
Message-ID: <53bd9911cd2a_f1503fd161c2dbf893436@lynns-mbp.mail>
|
19383
|
+
Subject: Confirmation instructions
|
19384
|
+
Mime-Version: 1.0
|
19385
|
+
Content-Type: text/html;
|
19386
|
+
charset=UTF-8
|
19387
|
+
Content-Transfer-Encoding: 7bit
|
19388
|
+
|
19389
|
+
<p>Welcome test+1404934415981@test.com!</p>
|
19390
|
+
|
19391
|
+
<p>You can confirm your account email through the link below:</p>
|
19392
|
+
|
19393
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=sBp686NkusHaZ9xiayp_">Confirm my account</a></p>
|
19394
|
+
|
19395
|
+
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
|
19396
|
+
Completed 200 OK in 117ms (Views: 0.3ms | ActiveRecord: 2.8ms)
|
19397
|
+
|
19398
|
+
|
19399
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:34:18 -0500
|
19400
|
+
|
19401
|
+
|
19402
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:34:18 -0500
|
19403
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19404
|
+
Parameters: {"email"=>"test+1404934457627@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404934457627@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19405
|
+
Unpermitted parameters: registration
|
19406
|
+
Unpermitted parameters: registration
|
19407
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19408
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404934457627@test.com'[0m
|
19409
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'd10835ea796b01f4cd3455cef79a2edc6b10af1bd77a0e2c21647f39ffe0c546' ORDER BY "users"."id" ASC LIMIT 1
|
19410
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19411
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19412
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:34:18.606184"], ["confirmation_token", "d10835ea796b01f4cd3455cef79a2edc6b10af1bd77a0e2c21647f39ffe0c546"], ["created_at", "2014-07-09 19:34:18.605592"], ["email", "test+1404934457627@test.com"], ["encrypted_password", "$2a$10$hKg.WzuHh5uvcTZfHJ1ESuPMUDhVQ1M6H9DRx/bAoaL/6i2NFhbTC"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404934457627@test.com"], ["updated_at", "2014-07-09 19:34:18.605592"]]
|
19413
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
|
19414
|
+
|
19415
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 14.9ms
|
19416
|
+
|
19417
|
+
Sent mail to test+1404934457627@test.com (18.0ms)
|
19418
|
+
Date: Wed, 09 Jul 2014 14:34:18 -0500
|
19419
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19420
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19421
|
+
To: test+1404934457627@test.com
|
19422
|
+
Message-ID: <53bd993a981f4_f1503fd161c2dbf8935d3@lynns-mbp.mail>
|
19423
|
+
Subject: Confirmation instructions
|
19424
|
+
Mime-Version: 1.0
|
19425
|
+
Content-Type: text/html;
|
19426
|
+
charset=UTF-8
|
19427
|
+
Content-Transfer-Encoding: 7bit
|
19428
|
+
|
19429
|
+
<p>Welcome test+1404934457627@test.com!</p>
|
19430
|
+
|
19431
|
+
<p>You can confirm your account email through the link below:</p>
|
19432
|
+
|
19433
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=NZTJohVH6yzyXfP8q4YA">Confirm my account</a></p>
|
19434
|
+
|
19435
|
+
[1m[35m (1.8ms)[0m commit transaction
|
19436
|
+
Completed 200 OK in 101ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
19437
|
+
|
19438
|
+
|
19439
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:35:05 -0500
|
19440
|
+
|
19441
|
+
|
19442
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:35:05 -0500
|
19443
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19444
|
+
Parameters: {"email"=>"test+1404934504043@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404934504043@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19445
|
+
Unpermitted parameters: registration
|
19446
|
+
Unpermitted parameters: registration
|
19447
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19448
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404934504043@test.com'
|
19449
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '370d274e01ac4f9e00b96c9ed3a65f45b5a641c2ebf9114ded11c114632e0723' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19450
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19451
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19452
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:35:05.413250"], ["confirmation_token", "370d274e01ac4f9e00b96c9ed3a65f45b5a641c2ebf9114ded11c114632e0723"], ["created_at", "2014-07-09 19:35:05.412655"], ["email", "test+1404934504043@test.com"], ["encrypted_password", "$2a$10$YhyT1HICgWtodo9WyIznQOsz/AhPo4EHA813ZkAh5wdp6NRe1RYt."], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404934504043@test.com"], ["updated_at", "2014-07-09 19:35:05.412655"]]
|
19453
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19454
|
+
|
19455
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.4ms
|
19456
|
+
|
19457
|
+
Sent mail to test+1404934504043@test.com (18.1ms)
|
19458
|
+
Date: Wed, 09 Jul 2014 14:35:05 -0500
|
19459
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19460
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19461
|
+
To: test+1404934504043@test.com
|
19462
|
+
Message-ID: <53bd9969689bb_f1503fd161c2dbf8936a7@lynns-mbp.mail>
|
19463
|
+
Subject: Confirmation instructions
|
19464
|
+
Mime-Version: 1.0
|
19465
|
+
Content-Type: text/html;
|
19466
|
+
charset=UTF-8
|
19467
|
+
Content-Transfer-Encoding: 7bit
|
19468
|
+
|
19469
|
+
<p>Welcome test+1404934504043@test.com!</p>
|
19470
|
+
|
19471
|
+
<p>You can confirm your account email through the link below:</p>
|
19472
|
+
|
19473
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=fxtQcHys2k29QQihy2B7">Confirm my account</a></p>
|
19474
|
+
|
19475
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
19476
|
+
Completed 200 OK in 100ms (Views: 0.4ms | ActiveRecord: 2.4ms)
|
19477
|
+
|
19478
|
+
|
19479
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:35:06 -0500
|
19480
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19481
|
+
Parameters: {"email"=>"test-dup+1404934505996@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404934505996@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19482
|
+
Unpermitted parameters: registration
|
19483
|
+
Unpermitted parameters: registration
|
19484
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19485
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404934505996@test.com'[0m
|
19486
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'eadbfc405f20f7ae7fd015f649b1ae337a7d8cdeb4c9b0063898cfe970fea352' ORDER BY "users"."id" ASC LIMIT 1
|
19487
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19488
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19489
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:35:06.924932"], ["confirmation_token", "eadbfc405f20f7ae7fd015f649b1ae337a7d8cdeb4c9b0063898cfe970fea352"], ["created_at", "2014-07-09 19:35:06.924362"], ["email", "test-dup+1404934505996@test.com"], ["encrypted_password", "$2a$10$NIJObTmzOnUd568lYybE.eLQjavnA7lRJjar/liJhdPaKafNco4MG"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404934505996@test.com"], ["updated_at", "2014-07-09 19:35:06.924362"]]
|
19490
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19491
|
+
|
19492
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.4ms
|
19493
|
+
|
19494
|
+
Sent mail to test-dup+1404934505996@test.com (17.5ms)
|
19495
|
+
Date: Wed, 09 Jul 2014 14:35:06 -0500
|
19496
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19497
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19498
|
+
To: test-dup+1404934505996@test.com
|
19499
|
+
Message-ID: <53bd996ae58d9_f1503fd161c2dbf8937da@lynns-mbp.mail>
|
19500
|
+
Subject: Confirmation instructions
|
19501
|
+
Mime-Version: 1.0
|
19502
|
+
Content-Type: text/html;
|
19503
|
+
charset=UTF-8
|
19504
|
+
Content-Transfer-Encoding: 7bit
|
19505
|
+
|
19506
|
+
<p>Welcome test-dup+1404934505996@test.com!</p>
|
19507
|
+
|
19508
|
+
<p>You can confirm your account email through the link below:</p>
|
19509
|
+
|
19510
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=cbhzeekJ4Y_peqc-zQXZ">Confirm my account</a></p>
|
19511
|
+
|
19512
|
+
[1m[35m (2.1ms)[0m commit transaction
|
19513
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.6ms)
|
19514
|
+
|
19515
|
+
|
19516
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:35:07 -0500
|
19517
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19518
|
+
Parameters: {"email"=>"test-dup+1404934505996@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404934505996@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19519
|
+
Unpermitted parameters: registration
|
19520
|
+
Unpermitted parameters: registration
|
19521
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19522
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404934505996@test.com'
|
19523
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
19524
|
+
Completed 403 Forbidden in 63ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19525
|
+
|
19526
|
+
|
19527
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:35:54 -0500
|
19528
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19529
|
+
Parameters: {"email"=>"test+211@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test+211@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19530
|
+
Unpermitted parameters: registration
|
19531
|
+
Unpermitted parameters: registration
|
19532
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19533
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+211@test.com'[0m
|
19534
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19535
|
+
Completed 403 Forbidden in 65ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19536
|
+
|
19537
|
+
|
19538
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:36:07 -0500
|
19539
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19540
|
+
Parameters: {"email"=>"test+222@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test+222@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19541
|
+
Unpermitted parameters: registration
|
19542
|
+
Unpermitted parameters: registration
|
19543
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19544
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+222@test.com'
|
19545
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
19546
|
+
Completed 403 Forbidden in 67ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19547
|
+
|
19548
|
+
|
19549
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:41:31 -0500
|
19550
|
+
|
19551
|
+
|
19552
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:41:31 -0500
|
19553
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19554
|
+
Parameters: {"email"=>"ttt@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"ttt@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19555
|
+
Unpermitted parameters: registration
|
19556
|
+
Unpermitted parameters: registration
|
19557
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19558
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'ttt@test.com'[0m
|
19559
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'b0ee3bc51241be63d0042f92fdb965743ea32c2096f865ae904f810a3ebccd14' ORDER BY "users"."id" ASC LIMIT 1
|
19560
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19561
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19562
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-09 19:41:32.056142"], ["confirmation_token", "b0ee3bc51241be63d0042f92fdb965743ea32c2096f865ae904f810a3ebccd14"], ["created_at", "2014-07-09 19:41:32.055585"], ["email", "ttt@test.com"], ["encrypted_password", "$2a$10$uvD27Avlsktfvthryamo2uuawhN1YUF6zYCTV2SfGjrLl2mV0gJqG"], ["provider", "email"], ["tokens", "{}"], ["uid", "ttt@test.com"], ["updated_at", "2014-07-09 19:41:32.055585"]]
|
19563
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19564
|
+
|
19565
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.0ms
|
19566
|
+
|
19567
|
+
Sent mail to ttt@test.com (17.3ms)
|
19568
|
+
Date: Wed, 09 Jul 2014 14:41:32 -0500
|
19569
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19570
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19571
|
+
To: ttt@test.com
|
19572
|
+
Message-ID: <53bd9aec11140_f1503fd161c2dbf893883@lynns-mbp.mail>
|
19573
|
+
Subject: Confirmation instructions
|
19574
|
+
Mime-Version: 1.0
|
19575
|
+
Content-Type: text/html;
|
19576
|
+
charset=UTF-8
|
19577
|
+
Content-Transfer-Encoding: 7bit
|
19578
|
+
|
19579
|
+
<p>Welcome ttt@test.com!</p>
|
19580
|
+
|
19581
|
+
<p>You can confirm your account email through the link below:</p>
|
19582
|
+
|
19583
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=Y9nsarNGQAX12RZrwxf6">Confirm my account</a></p>
|
19584
|
+
|
19585
|
+
[1m[35m (2.1ms)[0m commit transaction
|
19586
|
+
Completed 200 OK in 96ms (Views: 0.3ms | ActiveRecord: 2.7ms)
|
19587
|
+
|
19588
|
+
|
19589
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:41:59 -0500
|
19590
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19591
|
+
Parameters: {"email"=>"xxx@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"xxx@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19592
|
+
Unpermitted parameters: registration
|
19593
|
+
Unpermitted parameters: registration
|
19594
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19595
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'xxx@test.com'
|
19596
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
19597
|
+
Completed 403 Forbidden in 65ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19598
|
+
|
19599
|
+
|
19600
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:43:48 -0500
|
19601
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19602
|
+
Parameters: {"email"=>"xxx@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"xxx@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19603
|
+
Unpermitted parameters: registration
|
19604
|
+
Unpermitted parameters: registration
|
19605
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19606
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'xxx@test.com'[0m
|
19607
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19608
|
+
Completed 403 Forbidden in 76ms (Views: 0.4ms | ActiveRecord: 0.7ms)
|
19609
|
+
|
19610
|
+
|
19611
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:45:58 -0500
|
19612
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19613
|
+
Parameters: {"email"=>"zzz@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"zzz@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19614
|
+
Unpermitted parameters: registration
|
19615
|
+
Unpermitted parameters: registration
|
19616
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19617
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'zzz@test.com'
|
19618
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
19619
|
+
Completed 403 Forbidden in 66ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19620
|
+
|
19621
|
+
|
19622
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:48:30 -0500
|
19623
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19624
|
+
Parameters: {"email"=>"xxxx@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"xxxx@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
|
19625
|
+
Unpermitted parameters: registration
|
19626
|
+
Unpermitted parameters: registration
|
19627
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19628
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'xxxx@test.com'[0m
|
19629
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19630
|
+
Completed 403 Forbidden in 64ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19631
|
+
|
19632
|
+
|
19633
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:51:07 -0500
|
19634
|
+
|
19635
|
+
|
19636
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:51:07 -0500
|
19637
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19638
|
+
Parameters: {"email"=>"test+1404935465916@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404935465916@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19639
|
+
Unpermitted parameters: registration
|
19640
|
+
Unpermitted parameters: registration
|
19641
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19642
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404935465916@test.com'
|
19643
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '381a8c9c84f8dd89fe243bb7ce3a1d4f3c4980c9edd3441e1548052ae40c6f4e' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19644
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19645
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19646
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:51:07.243389"], ["confirmation_token", "381a8c9c84f8dd89fe243bb7ce3a1d4f3c4980c9edd3441e1548052ae40c6f4e"], ["created_at", "2014-07-09 19:51:07.242447"], ["email", "test+1404935465916@test.com"], ["encrypted_password", "$2a$10$Z/Ob5Jk6DMukbh6pUJ8qK.tiJcCZrxJB2tKH01I5AbLutRQlfkONq"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404935465916@test.com"], ["updated_at", "2014-07-09 19:51:07.242447"]]
|
19647
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19648
|
+
|
19649
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.9ms
|
19650
|
+
|
19651
|
+
Sent mail to test+1404935465916@test.com (17.3ms)
|
19652
|
+
Date: Wed, 09 Jul 2014 14:51:07 -0500
|
19653
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19654
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19655
|
+
To: test+1404935465916@test.com
|
19656
|
+
Message-ID: <53bd9d2b3fa14_f1503fd161c2dbf89399d@lynns-mbp.mail>
|
19657
|
+
Subject: Confirmation instructions
|
19658
|
+
Mime-Version: 1.0
|
19659
|
+
Content-Type: text/html;
|
19660
|
+
charset=UTF-8
|
19661
|
+
Content-Transfer-Encoding: 7bit
|
19662
|
+
|
19663
|
+
<p>Welcome test+1404935465916@test.com!</p>
|
19664
|
+
|
19665
|
+
<p>You can confirm your account email through the link below:</p>
|
19666
|
+
|
19667
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=2_npWQiEeEdXEg1Wqpqz">Confirm my account</a></p>
|
19668
|
+
|
19669
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
19670
|
+
Completed 200 OK in 99ms (Views: 0.3ms | ActiveRecord: 2.4ms)
|
19671
|
+
|
19672
|
+
|
19673
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:51:08 -0500
|
19674
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19675
|
+
Parameters: {"email"=>"test-dup+1404935467796@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404935467796@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19676
|
+
Unpermitted parameters: registration
|
19677
|
+
Unpermitted parameters: registration
|
19678
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19679
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404935467796@test.com'[0m
|
19680
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'f3905f4e042e69dc9251b4d15ab5a350225ab2eb3e81d0d6673e4596e83eed26' ORDER BY "users"."id" ASC LIMIT 1
|
19681
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19682
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19683
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:51:08.713886"], ["confirmation_token", "f3905f4e042e69dc9251b4d15ab5a350225ab2eb3e81d0d6673e4596e83eed26"], ["created_at", "2014-07-09 19:51:08.713313"], ["email", "test-dup+1404935467796@test.com"], ["encrypted_password", "$2a$10$8xuCGBxqEoCHSFy6WbuBi.4ZB.aLwhg4Uj3us85p6uXMH2yvp/QKO"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404935467796@test.com"], ["updated_at", "2014-07-09 19:51:08.713313"]]
|
19684
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
|
19685
|
+
|
19686
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 12.5ms
|
19687
|
+
|
19688
|
+
Sent mail to test-dup+1404935467796@test.com (18.6ms)
|
19689
|
+
Date: Wed, 09 Jul 2014 14:51:08 -0500
|
19690
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19691
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19692
|
+
To: test-dup+1404935467796@test.com
|
19693
|
+
Message-ID: <53bd9d2cb1c89_f1503fd161c2dbf894080@lynns-mbp.mail>
|
19694
|
+
Subject: Confirmation instructions
|
19695
|
+
Mime-Version: 1.0
|
19696
|
+
Content-Type: text/html;
|
19697
|
+
charset=UTF-8
|
19698
|
+
Content-Transfer-Encoding: 7bit
|
19699
|
+
|
19700
|
+
<p>Welcome test-dup+1404935467796@test.com!</p>
|
19701
|
+
|
19702
|
+
<p>You can confirm your account email through the link below:</p>
|
19703
|
+
|
19704
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=iVPArG92zJZgr82A4Wax">Confirm my account</a></p>
|
19705
|
+
|
19706
|
+
[1m[35m (1.8ms)[0m commit transaction
|
19707
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
19708
|
+
|
19709
|
+
|
19710
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:51:09 -0500
|
19711
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19712
|
+
Parameters: {"email"=>"test-dup+1404935467796@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404935467796@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19713
|
+
Unpermitted parameters: registration
|
19714
|
+
Unpermitted parameters: registration
|
19715
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
19716
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404935467796@test.com'
|
19717
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
19718
|
+
Completed 403 Forbidden in 63ms (Views: 0.4ms | ActiveRecord: 0.5ms)
|
19719
|
+
|
19720
|
+
|
19721
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:51:11 -0500
|
19722
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19723
|
+
Parameters: {"email"=>"test-dup+1404935470348@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404935470348@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19724
|
+
Unpermitted parameters: registration
|
19725
|
+
Unpermitted parameters: registration
|
19726
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19727
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404935470348@test.com'[0m
|
19728
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19729
|
+
Completed 403 Forbidden in 64ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19730
|
+
|
19731
|
+
|
19732
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 14:53:58 -0500
|
19733
|
+
|
19734
|
+
|
19735
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:53:58 -0500
|
19736
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19737
|
+
Parameters: {"email"=>"test+1404935636565@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test+1404935636565@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19738
|
+
Unpermitted parameters: registration
|
19739
|
+
Unpermitted parameters: registration
|
19740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19741
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404935636565@test.com'
|
19742
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '2e608cbb7487f5f275ef41c3ae1ed8d378a7fae9fe53cd3b2750554e0323e028' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19743
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19744
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19745
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:53:58.374151"], ["confirmation_token", "2e608cbb7487f5f275ef41c3ae1ed8d378a7fae9fe53cd3b2750554e0323e028"], ["created_at", "2014-07-09 19:53:58.373594"], ["email", "test+1404935636565@test.com"], ["encrypted_password", "$2a$10$CmyBHugf3bNZWMwOBjLiQef8W1QynTZdNeL7sWd7GM6BJL.t.YnjO"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404935636565@test.com"], ["updated_at", "2014-07-09 19:53:58.373594"]]
|
19746
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19747
|
+
|
19748
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.7ms
|
19749
|
+
|
19750
|
+
Sent mail to test+1404935636565@test.com (17.7ms)
|
19751
|
+
Date: Wed, 09 Jul 2014 14:53:58 -0500
|
19752
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19753
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19754
|
+
To: test+1404935636565@test.com
|
19755
|
+
Message-ID: <53bd9dd65f206_f1503fd161c2dbf89416e@lynns-mbp.mail>
|
19756
|
+
Subject: Confirmation instructions
|
19757
|
+
Mime-Version: 1.0
|
19758
|
+
Content-Type: text/html;
|
19759
|
+
charset=UTF-8
|
19760
|
+
Content-Transfer-Encoding: 7bit
|
19761
|
+
|
19762
|
+
<p>Welcome test+1404935636565@test.com!</p>
|
19763
|
+
|
19764
|
+
<p>You can confirm your account email through the link below:</p>
|
19765
|
+
|
19766
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=ayTV51JsoQeq1jguMcAF">Confirm my account</a></p>
|
19767
|
+
|
19768
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
19769
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
19770
|
+
|
19771
|
+
|
19772
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:53:59 -0500
|
19773
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19774
|
+
Parameters: {"email"=>"test-dup+1404935638523@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404935638523@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19775
|
+
Unpermitted parameters: registration
|
19776
|
+
Unpermitted parameters: registration
|
19777
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19778
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404935638523@test.com'[0m
|
19779
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '43884b2b8c954fdb4af937e67af18fb531bb20b48c5f354afb03d17e8fdbe26c' ORDER BY "users"."id" ASC LIMIT 1
|
19780
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19781
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19782
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://localhost:7777/#/"], ["confirmation_sent_at", "2014-07-09 19:53:59.865712"], ["confirmation_token", "43884b2b8c954fdb4af937e67af18fb531bb20b48c5f354afb03d17e8fdbe26c"], ["created_at", "2014-07-09 19:53:59.865073"], ["email", "test-dup+1404935638523@test.com"], ["encrypted_password", "$2a$10$jqvY7zaN8x/YhMtX9aG.C.sIjdByRQkNTaJJT9i3hXY0RzVIs0Jmu"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404935638523@test.com"], ["updated_at", "2014-07-09 19:53:59.865073"]]
|
19783
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
|
19784
|
+
|
19785
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 13.1ms
|
19786
|
+
|
19787
|
+
Sent mail to test-dup+1404935638523@test.com (18.6ms)
|
19788
|
+
Date: Wed, 09 Jul 2014 14:53:59 -0500
|
19789
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19790
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19791
|
+
To: test-dup+1404935638523@test.com
|
19792
|
+
Message-ID: <53bd9dd7d6ff4_f1503fd161c2dbf8942c1@lynns-mbp.mail>
|
19793
|
+
Subject: Confirmation instructions
|
19794
|
+
Mime-Version: 1.0
|
19795
|
+
Content-Type: text/html;
|
19796
|
+
charset=UTF-8
|
19797
|
+
Content-Transfer-Encoding: 7bit
|
19798
|
+
|
19799
|
+
<p>Welcome test-dup+1404935638523@test.com!</p>
|
19800
|
+
|
19801
|
+
<p>You can confirm your account email through the link below:</p>
|
19802
|
+
|
19803
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=QFzshM7fQERemDoRyAwv">Confirm my account</a></p>
|
19804
|
+
|
19805
|
+
[1m[35m (1.8ms)[0m commit transaction
|
19806
|
+
Completed 200 OK in 98ms (Views: 0.3ms | ActiveRecord: 2.3ms)
|
19807
|
+
|
19808
|
+
|
19809
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:54:00 -0500
|
19810
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19811
|
+
Parameters: {"email"=>"test-dup+1404935638523@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404935638523@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19812
|
+
Unpermitted parameters: registration
|
19813
|
+
Unpermitted parameters: registration
|
19814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19815
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404935638523@test.com'
|
19816
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
19817
|
+
Completed 403 Forbidden in 63ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19818
|
+
|
19819
|
+
|
19820
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 14:54:02 -0500
|
19821
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19822
|
+
Parameters: {"email"=>"test-dup+1404935641051@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/", "registration"=>{"email"=>"test-dup+1404935641051@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/#/"}}
|
19823
|
+
Unpermitted parameters: registration
|
19824
|
+
Unpermitted parameters: registration
|
19825
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19826
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404935641051@test.com'[0m
|
19827
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
19828
|
+
Completed 403 Forbidden in 69ms (Views: 5.3ms | ActiveRecord: 0.3ms)
|
19829
|
+
|
19830
|
+
|
19831
|
+
Started OPTIONS "//auth" for 127.0.0.1 at 2014-07-09 15:50:36 -0500
|
19832
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19833
|
+
|
19834
|
+
|
19835
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 15:50:36 -0500
|
19836
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19837
|
+
Parameters: {"email"=>"test+1404939032773@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/", "registration"=>{"email"=>"test+1404939032773@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/"}}
|
19838
|
+
Unpermitted parameters: registration
|
19839
|
+
Unpermitted parameters: registration
|
19840
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19841
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+1404939032773@test.com'[0m
|
19842
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '1e2eaae537b4fcf23484b5156e1471ff77ae5c1b239a419ffbb70b914380cc26' ORDER BY "users"."id" ASC LIMIT 1
|
19843
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19844
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19845
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)[0m [["confirm_success_url", "http://lynns-mbp:7777/#/"], ["confirmation_sent_at", "2014-07-09 20:50:37.228073"], ["confirmation_token", "1e2eaae537b4fcf23484b5156e1471ff77ae5c1b239a419ffbb70b914380cc26"], ["created_at", "2014-07-09 20:50:37.049339"], ["email", "test+1404939032773@test.com"], ["encrypted_password", "$2a$10$esA.8Z0wWH9WwggVpxfzQuBz4RKkWjLw9GTCa9KrQViz1liAyONpO"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+1404939032773@test.com"], ["updated_at", "2014-07-09 20:50:37.049339"]]
|
19846
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (1.7ms)
|
19847
|
+
|
19848
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 329.8ms
|
19849
|
+
|
19850
|
+
Sent mail to test+1404939032773@test.com (21.8ms)
|
19851
|
+
Date: Wed, 09 Jul 2014 15:50:37 -0500
|
19852
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19853
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19854
|
+
To: test+1404939032773@test.com
|
19855
|
+
Message-ID: <53bdab1d8a6e8_1631d3fd17042dbec9268@lynns-mbp.mail>
|
19856
|
+
Subject: Confirmation instructions
|
19857
|
+
Mime-Version: 1.0
|
19858
|
+
Content-Type: text/html;
|
19859
|
+
charset=UTF-8
|
19860
|
+
Content-Transfer-Encoding: 7bit
|
19861
|
+
|
19862
|
+
<p>Welcome test+1404939032773@test.com!</p>
|
19863
|
+
|
19864
|
+
<p>You can confirm your account email through the link below:</p>
|
19865
|
+
|
19866
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=FsW3NNRBLs8x2V8xWeeU">Confirm my account</a></p>
|
19867
|
+
|
19868
|
+
[1m[35m (1.7ms)[0m commit transaction
|
19869
|
+
Completed 200 OK in 629ms (Views: 0.4ms | ActiveRecord: 2.8ms)
|
19870
|
+
|
19871
|
+
|
19872
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 15:50:38 -0500
|
19873
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19874
|
+
Parameters: {"email"=>"test-dup+1404939037699@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/", "registration"=>{"email"=>"test-dup+1404939037699@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/"}}
|
19875
|
+
Unpermitted parameters: registration
|
19876
|
+
Unpermitted parameters: registration
|
19877
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19878
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404939037699@test.com'
|
19879
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'aaa1ac8c7667049247ea30a3535f612bc3d4d8f7e0e0bd15b25176f6fa2ecdd9' ORDER BY "users"."id" ASC LIMIT 1[0m
|
19880
|
+
Binary data inserted for `string` type on column `confirmation_token`
|
19881
|
+
Binary data inserted for `string` type on column `encrypted_password`
|
19882
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://lynns-mbp:7777/#/"], ["confirmation_sent_at", "2014-07-09 20:50:39.038790"], ["confirmation_token", "aaa1ac8c7667049247ea30a3535f612bc3d4d8f7e0e0bd15b25176f6fa2ecdd9"], ["created_at", "2014-07-09 20:50:39.038166"], ["email", "test-dup+1404939037699@test.com"], ["encrypted_password", "$2a$10$yhS4cHMl0Hh6yWAx8TJsa.GJCkIJ35/tKpJs3xQUWLBG/o9jU6J3G"], ["provider", "email"], ["tokens", "{}"], ["uid", "test-dup+1404939037699@test.com"], ["updated_at", "2014-07-09 20:50:39.038166"]]
|
19883
|
+
Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
|
19884
|
+
|
19885
|
+
Devise::Mailer#confirmation_instructions: processed outbound mail in 15.2ms
|
19886
|
+
|
19887
|
+
Sent mail to test-dup+1404939037699@test.com (18.1ms)
|
19888
|
+
Date: Wed, 09 Jul 2014 15:50:39 -0500
|
19889
|
+
From: please-change-me-at-config-initializers-devise@example.com
|
19890
|
+
Reply-To: please-change-me-at-config-initializers-devise@example.com
|
19891
|
+
To: test-dup+1404939037699@test.com
|
19892
|
+
Message-ID: <53bdab1fdad0_1631d3fd17042dbec927fe@lynns-mbp.mail>
|
19893
|
+
Subject: Confirmation instructions
|
19894
|
+
Mime-Version: 1.0
|
19895
|
+
Content-Type: text/html;
|
19896
|
+
charset=UTF-8
|
19897
|
+
Content-Transfer-Encoding: 7bit
|
19898
|
+
|
19899
|
+
<p>Welcome test-dup+1404939037699@test.com!</p>
|
19900
|
+
|
19901
|
+
<p>You can confirm your account email through the link below:</p>
|
19902
|
+
|
19903
|
+
<p><a href="http://localhost:3000/auth/confirmation?confirmation_token=vc9ZA7jB7mrMcCJJip_1">Confirm my account</a></p>
|
19904
|
+
|
19905
|
+
[1m[36m (1.8ms)[0m [1mcommit transaction[0m
|
19906
|
+
Completed 200 OK in 101ms (Views: 0.3ms | ActiveRecord: 2.4ms)
|
19907
|
+
|
19908
|
+
|
19909
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 15:50:40 -0500
|
19910
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19911
|
+
Parameters: {"email"=>"test-dup+1404939037699@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/", "registration"=>{"email"=>"test-dup+1404939037699@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/"}}
|
19912
|
+
Unpermitted parameters: registration
|
19913
|
+
Unpermitted parameters: registration
|
19914
|
+
[1m[35m (0.1ms)[0m begin transaction
|
19915
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404939037699@test.com'[0m
|
19916
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
19917
|
+
Completed 403 Forbidden in 64ms (Views: 0.5ms | ActiveRecord: 0.2ms)
|
19918
|
+
|
19919
|
+
|
19920
|
+
Started POST "//auth" for 127.0.0.1 at 2014-07-09 15:50:41 -0500
|
19921
|
+
Processing by DeviseTokenAuth::RegistrationsController#create as HTML
|
19922
|
+
Parameters: {"email"=>"test-dup+1404939040246@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/", "registration"=>{"email"=>"test-dup+1404939040246@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://lynns-mbp:7777/#/"}}
|
19923
|
+
Unpermitted parameters: registration
|
19924
|
+
Unpermitted parameters: registration
|
19925
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
19926
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test-dup+1404939040246@test.com'
|
19927
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
19928
|
+
Completed 403 Forbidden in 65ms (Views: 0.4ms | ActiveRecord: 0.2ms)
|
19929
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
19930
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
19931
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19932
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
19933
|
+
Migrating to DeviseTokenAuthCreateUsers (20140712225932)
|
19934
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
19935
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "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(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "unconfirmed_email" varchar(255), "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "tokens" text DEFAULT '{}', "created_at" datetime, "updated_at" datetime)
|
19936
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_email" ON "users" ("email")[0m
|
19937
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
19938
|
+
FROM sqlite_master
|
19939
|
+
WHERE name='index_users_on_email' AND type='index'
|
19940
|
+
UNION ALL
|
19941
|
+
SELECT sql
|
19942
|
+
FROM sqlite_temp_master
|
19943
|
+
WHERE name='index_users_on_email' AND type='index'
|
19944
|
+
|
19945
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")[0m
|
19946
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
19947
|
+
FROM sqlite_master
|
19948
|
+
WHERE name='index_users_on_uid' AND type='index'
|
19949
|
+
UNION ALL
|
19950
|
+
SELECT sql
|
19951
|
+
FROM sqlite_temp_master
|
19952
|
+
WHERE name='index_users_on_uid' AND type='index'
|
19953
|
+
|
19954
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
19955
|
+
FROM sqlite_master
|
19956
|
+
WHERE name='index_users_on_email' AND type='index'
|
19957
|
+
UNION ALL
|
19958
|
+
SELECT sql
|
19959
|
+
FROM sqlite_temp_master
|
19960
|
+
WHERE name='index_users_on_email' AND type='index'
|
19961
|
+
[0m
|
19962
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
19963
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140712225932"]]
|
19964
|
+
[1m[35m (0.7ms)[0m commit transaction
|
19965
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
19966
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
19967
|
+
FROM sqlite_master
|
19968
|
+
WHERE name='index_users_on_reset_password_token' AND type='index'
|
19969
|
+
UNION ALL
|
19970
|
+
SELECT sql
|
19971
|
+
FROM sqlite_temp_master
|
19972
|
+
WHERE name='index_users_on_reset_password_token' AND type='index'
|
19973
|
+
|
19974
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
19975
|
+
FROM sqlite_master
|
19976
|
+
WHERE name='index_users_on_uid' AND type='index'
|
19977
|
+
UNION ALL
|
19978
|
+
SELECT sql
|
19979
|
+
FROM sqlite_temp_master
|
19980
|
+
WHERE name='index_users_on_uid' AND type='index'
|
19981
|
+
[0m
|
19982
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
19983
|
+
FROM sqlite_master
|
19984
|
+
WHERE name='index_users_on_email' AND type='index'
|
19985
|
+
UNION ALL
|
19986
|
+
SELECT sql
|
19987
|
+
FROM sqlite_temp_master
|
19988
|
+
WHERE name='index_users_on_email' AND type='index'
|
19989
|
+
|
19990
|
+
[1m[36m (1.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
19991
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
19992
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
19993
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
19994
|
+
Migrating to DeviseTokenAuthCreateUsers (20140712225932)
|
19995
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
19996
|
+
[1m[35m (0.4ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "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(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "unconfirmed_email" varchar(255), "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "tokens" text DEFAULT '{}', "created_at" datetime, "updated_at" datetime)
|
19997
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_email" ON "users" ("email")[0m
|
19998
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
19999
|
+
FROM sqlite_master
|
20000
|
+
WHERE name='index_users_on_email' AND type='index'
|
20001
|
+
UNION ALL
|
20002
|
+
SELECT sql
|
20003
|
+
FROM sqlite_temp_master
|
20004
|
+
WHERE name='index_users_on_email' AND type='index'
|
20005
|
+
|
20006
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")[0m
|
20007
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
20008
|
+
FROM sqlite_master
|
20009
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20010
|
+
UNION ALL
|
20011
|
+
SELECT sql
|
20012
|
+
FROM sqlite_temp_master
|
20013
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20014
|
+
|
20015
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
20016
|
+
FROM sqlite_master
|
20017
|
+
WHERE name='index_users_on_email' AND type='index'
|
20018
|
+
UNION ALL
|
20019
|
+
SELECT sql
|
20020
|
+
FROM sqlite_temp_master
|
20021
|
+
WHERE name='index_users_on_email' AND type='index'
|
20022
|
+
[0m
|
20023
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
20024
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140712225932"]]
|
20025
|
+
[1m[35m (0.8ms)[0m commit transaction
|
20026
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20027
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
20028
|
+
FROM sqlite_master
|
20029
|
+
WHERE name='index_users_on_reset_password_token' AND type='index'
|
20030
|
+
UNION ALL
|
20031
|
+
SELECT sql
|
20032
|
+
FROM sqlite_temp_master
|
20033
|
+
WHERE name='index_users_on_reset_password_token' AND type='index'
|
20034
|
+
|
20035
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
20036
|
+
FROM sqlite_master
|
20037
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20038
|
+
UNION ALL
|
20039
|
+
SELECT sql
|
20040
|
+
FROM sqlite_temp_master
|
20041
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20042
|
+
[0m
|
20043
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
20044
|
+
FROM sqlite_master
|
20045
|
+
WHERE name='index_users_on_email' AND type='index'
|
20046
|
+
UNION ALL
|
20047
|
+
SELECT sql
|
20048
|
+
FROM sqlite_temp_master
|
20049
|
+
WHERE name='index_users_on_email' AND type='index'
|
20050
|
+
|
20051
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying(255) NOT NULL) [0m
|
20052
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
20053
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20054
|
+
Migrating to DeviseTokenAuthCreateUsers (20140712225932)
|
20055
|
+
[1m[35m (0.2ms)[0m BEGIN
|
20056
|
+
[1m[36m (4.2ms)[0m [1mCREATE TABLE "users" ("id" serial primary key, "email" character varying(255), "encrypted_password" character varying(255) DEFAULT '' NOT NULL, "reset_password_token" character varying(255), "reset_password_sent_at" timestamp, "remember_created_at" timestamp, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" timestamp, "last_sign_in_at" timestamp, "current_sign_in_ip" character varying(255), "last_sign_in_ip" character varying(255), "confirmation_token" character varying(255), "confirmed_at" timestamp, "confirmation_sent_at" timestamp, "confirm_success_url" character varying(255), "unconfirmed_email" character varying(255), "name" character varying(255), "nickname" character varying(255), "image" character varying(255), "provider" character varying(255), "uid" character varying(255) DEFAULT '' NOT NULL, "tokens" text DEFAULT '{}', "created_at" timestamp, "updated_at" timestamp) [0m
|
20057
|
+
[1m[35m (0.7ms)[0m CREATE INDEX "index_users_on_email" ON "users" ("email")
|
20058
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")[0m
|
20059
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
20060
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20140712225932"]]
|
20061
|
+
[1m[35m (0.4ms)[0m COMMIT
|
20062
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20063
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20064
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
20065
|
+
[1m[36m (2.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
20066
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
20067
|
+
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
20068
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
20069
|
+
Migrating to DeviseTokenAuthCreateUsers (20140713060258)
|
20070
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
20071
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "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(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "unconfirmed_email" varchar(255), "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "tokens" text, "created_at" datetime, "updated_at" datetime)
|
20072
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "index_users_on_email" ON "users" ("email")[0m
|
20073
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
20074
|
+
FROM sqlite_master
|
20075
|
+
WHERE name='index_users_on_email' AND type='index'
|
20076
|
+
UNION ALL
|
20077
|
+
SELECT sql
|
20078
|
+
FROM sqlite_temp_master
|
20079
|
+
WHERE name='index_users_on_email' AND type='index'
|
20080
|
+
|
20081
|
+
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")[0m
|
20082
|
+
[1m[35m (0.0ms)[0m SELECT sql
|
20083
|
+
FROM sqlite_master
|
20084
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20085
|
+
UNION ALL
|
20086
|
+
SELECT sql
|
20087
|
+
FROM sqlite_temp_master
|
20088
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20089
|
+
|
20090
|
+
[1m[36m (0.0ms)[0m [1m SELECT sql
|
20091
|
+
FROM sqlite_master
|
20092
|
+
WHERE name='index_users_on_email' AND type='index'
|
20093
|
+
UNION ALL
|
20094
|
+
SELECT sql
|
20095
|
+
FROM sqlite_temp_master
|
20096
|
+
WHERE name='index_users_on_email' AND type='index'
|
20097
|
+
[0m
|
20098
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
|
20099
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20140713060258"]]
|
20100
|
+
[1m[35m (0.8ms)[0m commit transaction
|
20101
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
20102
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
20103
|
+
FROM sqlite_master
|
20104
|
+
WHERE name='index_users_on_reset_password_token' AND type='index'
|
20105
|
+
UNION ALL
|
20106
|
+
SELECT sql
|
20107
|
+
FROM sqlite_temp_master
|
20108
|
+
WHERE name='index_users_on_reset_password_token' AND type='index'
|
20109
|
+
|
20110
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
20111
|
+
FROM sqlite_master
|
20112
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20113
|
+
UNION ALL
|
20114
|
+
SELECT sql
|
20115
|
+
FROM sqlite_temp_master
|
20116
|
+
WHERE name='index_users_on_uid' AND type='index'
|
20117
|
+
[0m
|
20118
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
20119
|
+
FROM sqlite_master
|
20120
|
+
WHERE name='index_users_on_email' AND type='index'
|
20121
|
+
UNION ALL
|
20122
|
+
SELECT sql
|
20123
|
+
FROM sqlite_temp_master
|
20124
|
+
WHERE name='index_users_on_email' AND type='index'
|
20125
|
+
|
20126
|
+
[1m[36m (22.6ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
20127
|
+
[1m[35m (27.0ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
20128
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
20129
|
+
Migrating to DeviseTokenAuthCreateUsers (20140713062503)
|
20130
|
+
[1m[35m (16.4ms)[0m CREATE TABLE `users` (`id` int(11) auto_increment PRIMARY KEY, `email` varchar(255), `encrypted_password` varchar(255) DEFAULT '' NOT NULL, `reset_password_token` varchar(255), `reset_password_sent_at` datetime, `remember_created_at` datetime, `sign_in_count` int(11) DEFAULT 0 NOT NULL, `current_sign_in_at` datetime, `last_sign_in_at` datetime, `current_sign_in_ip` varchar(255), `last_sign_in_ip` varchar(255), `confirmation_token` varchar(255), `confirmed_at` datetime, `confirmation_sent_at` datetime, `confirm_success_url` varchar(255), `unconfirmed_email` varchar(255), `name` varchar(255), `nickname` varchar(255), `image` varchar(255), `provider` varchar(255), `uid` varchar(255) DEFAULT '' NOT NULL, `tokens` varchar(255) DEFAULT '{}', `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
|
20131
|
+
[1m[36m (24.1ms)[0m [1mCREATE INDEX `index_users_on_email` ON `users` (`email`) [0m
|
20132
|
+
[1m[35m (12.7ms)[0m CREATE UNIQUE INDEX `index_users_on_uid` ON `users` (`uid`)
|
20133
|
+
[1m[36m (16.6ms)[0m [1mCREATE UNIQUE INDEX `index_users_on_reset_password_token` ON `users` (`reset_password_token`) [0m
|
20134
|
+
[1m[35m (0.1ms)[0m BEGIN
|
20135
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20140713062503')[0m
|
20136
|
+
[1m[35m (0.3ms)[0m COMMIT
|
20137
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
20138
|
+
[1m[36m (180.1ms)[0m [1mCREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL) ENGINE=InnoDB[0m
|
20139
|
+
[1m[35m (37.9ms)[0m CREATE UNIQUE INDEX `unique_schema_migrations` ON `schema_migrations` (`version`)
|
20140
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|
20141
|
+
Migrating to DeviseTokenAuthCreateUsers (20140713062503)
|
20142
|
+
[1m[35m (25.1ms)[0m CREATE TABLE `users` (`id` int(11) auto_increment PRIMARY KEY, `email` varchar(255), `encrypted_password` varchar(255) DEFAULT '' NOT NULL, `reset_password_token` varchar(255), `reset_password_sent_at` datetime, `remember_created_at` datetime, `sign_in_count` int(11) DEFAULT 0 NOT NULL, `current_sign_in_at` datetime, `last_sign_in_at` datetime, `current_sign_in_ip` varchar(255), `last_sign_in_ip` varchar(255), `confirmation_token` varchar(255), `confirmed_at` datetime, `confirmation_sent_at` datetime, `confirm_success_url` varchar(255), `unconfirmed_email` varchar(255), `name` varchar(255), `nickname` varchar(255), `image` varchar(255), `provider` varchar(255), `uid` varchar(255) DEFAULT '' NOT NULL, `tokens` varchar(255) DEFAULT '{}', `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
|
20143
|
+
[1m[36m (18.9ms)[0m [1mCREATE INDEX `index_users_on_email` ON `users` (`email`) [0m
|
20144
|
+
[1m[35m (17.3ms)[0m CREATE UNIQUE INDEX `index_users_on_uid` ON `users` (`uid`)
|
20145
|
+
[1m[36m (24.0ms)[0m [1mCREATE UNIQUE INDEX `index_users_on_reset_password_token` ON `users` (`reset_password_token`) [0m
|
20146
|
+
[1m[35m (0.1ms)[0m BEGIN
|
20147
|
+
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO `schema_migrations` (`version`) VALUES ('20140713062503')[0m
|
20148
|
+
[1m[35m (0.2ms)[0m COMMIT
|
20149
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
|