[1m[36m (13.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" character varying NOT NULL) [0m
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to CreatePushTypeUsers (20150429164637)
[1m[35m (0.1ms)[0m BEGIN
[1m[36mSQL (1.7ms)[0m [1mCREATE EXTENSION IF NOT EXISTS "uuid-ossp"[0m
[1m[35m (2.5ms)[0m CREATE TABLE "push_type_users" ("id" uuid PRIMARY KEY DEFAULT uuid_generate_v4(), "name" character varying, "email" character varying, "field_store" jsonb, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150429164637"]]
[1m[35m (0.7ms)[0m COMMIT
Migrating to CreatePushTypeNodes (20150429164638)
[1m[36m (0.1ms)[0m [1mBEGIN[0m
[1m[35m (2.1ms)[0m CREATE TABLE "push_type_nodes" ("id" uuid PRIMARY KEY DEFAULT uuid_generate_v4(), "type" character varying, "title" character varying, "slug" character varying, "field_store" jsonb, "parent_id" uuid, "sort_order" integer, "status" integer, "published_at" timestamp, "published_to" timestamp, "creator_id" uuid, "updater_id" uuid, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "deleted_at" timestamp)
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150429164638"]]
[1m[35m (0.4ms)[0m COMMIT
Migrating to CreatePushTypeNodeHierarchies (20150429164639)
[1m[36m (0.1ms)[0m [1mBEGIN[0m
[1m[35m (0.4ms)[0m CREATE TABLE "push_type_node_hierarchies" ("ancestor_id" uuid NOT NULL, "descendant_id" uuid NOT NULL, "generations" integer NOT NULL)
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "node_anc_desc_idx" ON "push_type_node_hierarchies" ("ancestor_id", "descendant_id", "generations")[0m
[1m[35m (0.5ms)[0m CREATE INDEX "node_desc_idx" ON "push_type_node_hierarchies" ("descendant_id")
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150429164639"]]
[1m[35m (0.4ms)[0m COMMIT
Migrating to CreatePushTypeAssets (20150429164640)
[1m[36m (0.1ms)[0m [1mBEGIN[0m
[1m[35m (1.8ms)[0m CREATE TABLE "push_type_assets" ("id" uuid PRIMARY KEY DEFAULT uuid_generate_v4(), "file_uid" character varying, "file_name" character varying, "file_size" integer, "file_ext" character varying, "mime_type" character varying, "description" character varying, "uploader_id" uuid, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL, "deleted_at" timestamp)
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150429164640"]]
[1m[35m (0.5ms)[0m COMMIT
Migrating to CreatePushTypeTaxonomies (20150429164641)
[1m[36m (0.1ms)[0m [1mBEGIN[0m
[1m[35m (1.8ms)[0m CREATE TABLE "push_type_taxonomies" ("id" uuid PRIMARY KEY DEFAULT uuid_generate_v4(), "type" character varying, "title" character varying, "slug" character varying, "parent_id" uuid, "sort_order" integer, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
[1m[36m (0.2ms)[0m [1mALTER TABLE "push_type_assets" ADD "tags" character varying[][0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164641"]]
[1m[36m (0.4ms)[0m [1mCOMMIT[0m
Migrating to CreatePushTypeTaxonomyHierarchies (20150429164642)
[1m[35m (0.1ms)[0m BEGIN
[1m[36m (0.4ms)[0m [1mCREATE TABLE "push_type_taxonomy_hierarchies" ("ancestor_id" uuid NOT NULL, "descendant_id" uuid NOT NULL, "generations" integer NOT NULL) [0m
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "taxonomy_anc_desc_idx" ON "push_type_taxonomy_hierarchies" ("ancestor_id", "descendant_id", "generations")
[1m[36m (0.5ms)[0m [1mCREATE INDEX "taxonomy_desc_idx" ON "push_type_taxonomy_hierarchies" ("descendant_id")[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164642"]]
[1m[36m (0.6ms)[0m [1mCOMMIT[0m
Migrating to DeviseExtendPushTypeUsers (20150429164643)
[1m[35m (0.1ms)[0m BEGIN
[1m[36m (2.4ms)[0m [1mALTER TABLE "push_type_users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL[0m
[1m[35m (0.2ms)[0m ALTER TABLE "push_type_users" ADD "reset_password_token" character varying
[1m[36m (0.1ms)[0m [1mALTER TABLE "push_type_users" ADD "reset_password_sent_at" timestamp[0m
[1m[35m (0.1ms)[0m ALTER TABLE "push_type_users" ADD "remember_created_at" timestamp
[1m[36m (2.3ms)[0m [1mALTER TABLE "push_type_users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL[0m
[1m[35m (0.2ms)[0m ALTER TABLE "push_type_users" ADD "current_sign_in_at" timestamp
[1m[36m (0.2ms)[0m [1mALTER TABLE "push_type_users" ADD "last_sign_in_at" timestamp[0m
[1m[35m (0.1ms)[0m ALTER TABLE "push_type_users" ADD "current_sign_in_ip" character varying
[1m[36m (0.1ms)[0m [1mALTER TABLE "push_type_users" ADD "last_sign_in_ip" character varying[0m
[1m[35m (0.2ms)[0m ALTER TABLE "push_type_users" ADD "confirmation_token" character varying
[1m[36m (0.1ms)[0m [1mALTER TABLE "push_type_users" ADD "confirmed_at" timestamp[0m
[1m[35m (0.1ms)[0m ALTER TABLE "push_type_users" ADD "confirmation_sent_at" timestamp
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "index_push_type_users_on_email" ON "push_type_users" ("email")[0m
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "index_push_type_users_on_reset_password_token" ON "push_type_users" ("reset_password_token")
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ($1)[0m [["version", "20150429164643"]]
[1m[35m (0.9ms)[0m COMMIT
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
[1m[35m (1.7ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
FROM pg_constraint c
JOIN pg_class t1 ON c.conrelid = t1.oid
JOIN pg_class t2 ON c.confrelid = t2.oid
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
JOIN pg_namespace t3 ON c.connamespace = t3.oid
WHERE c.contype = 'f'
AND t1.relname = 'push_type_assets'
AND t3.nspname = ANY (current_schemas(false))
ORDER BY c.conname
[1m[36m (1.2ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
FROM pg_constraint c
JOIN pg_class t1 ON c.conrelid = t1.oid
JOIN pg_class t2 ON c.confrelid = t2.oid
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
JOIN pg_namespace t3 ON c.connamespace = t3.oid
WHERE c.contype = 'f'
AND t1.relname = 'push_type_node_hierarchies'
AND t3.nspname = ANY (current_schemas(false))
ORDER BY c.conname
[0m
[1m[35m (1.2ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
FROM pg_constraint c
JOIN pg_class t1 ON c.conrelid = t1.oid
JOIN pg_class t2 ON c.confrelid = t2.oid
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
JOIN pg_namespace t3 ON c.connamespace = t3.oid
WHERE c.contype = 'f'
AND t1.relname = 'push_type_nodes'
AND t3.nspname = ANY (current_schemas(false))
ORDER BY c.conname
[1m[36m (1.2ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
FROM pg_constraint c
JOIN pg_class t1 ON c.conrelid = t1.oid
JOIN pg_class t2 ON c.confrelid = t2.oid
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
JOIN pg_namespace t3 ON c.connamespace = t3.oid
WHERE c.contype = 'f'
AND t1.relname = 'push_type_taxonomies'
AND t3.nspname = ANY (current_schemas(false))
ORDER BY c.conname
[0m
[1m[35m (1.3ms)[0m SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
FROM pg_constraint c
JOIN pg_class t1 ON c.conrelid = t1.oid
JOIN pg_class t2 ON c.confrelid = t2.oid
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
JOIN pg_namespace t3 ON c.connamespace = t3.oid
WHERE c.contype = 'f'
AND t1.relname = 'push_type_taxonomy_hierarchies'
AND t3.nspname = ANY (current_schemas(false))
ORDER BY c.conname
[1m[36m (1.2ms)[0m [1mSELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
FROM pg_constraint c
JOIN pg_class t1 ON c.conrelid = t1.oid
JOIN pg_class t2 ON c.confrelid = t2.oid
JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
JOIN pg_namespace t3 ON c.connamespace = t3.oid
WHERE c.contype = 'f'
AND t1.relname = 'push_type_users'
AND t3.nspname = ANY (current_schemas(false))
ORDER BY c.conname
[0m
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
[1m[35m (0.4ms)[0m ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "push_type_nodes" DISABLE TRIGGER ALL;ALTER TABLE "push_type_node_hierarchies" DISABLE TRIGGER ALL;ALTER TABLE "push_type_taxonomies" DISABLE TRIGGER ALL;ALTER TABLE "push_type_assets" DISABLE TRIGGER ALL;ALTER TABLE "push_type_taxonomy_hierarchies" DISABLE TRIGGER ALL;ALTER TABLE "push_type_users" DISABLE TRIGGER ALL
[1m[36m (0.9ms)[0m [1m SELECT schemaname || '.' || tablename
FROM pg_tables
WHERE tablename !~ '_prt_' AND schemaname = ANY (current_schemas(false))
[0m
[1m[35m (1.0ms)[0m select table_name from information_schema.views where table_schema = 'dummy_test'
[1m[36m (11.1ms)[0m [1mTRUNCATE TABLE "public"."schema_migrations", "public"."push_type_nodes", "public"."push_type_node_hierarchies", "public"."push_type_taxonomies", "public"."push_type_assets", "public"."push_type_taxonomy_hierarchies", "public"."push_type_users" RESTART IDENTITY CASCADE;[0m
[1m[35m (0.4ms)[0m ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "push_type_nodes" ENABLE TRIGGER ALL;ALTER TABLE "push_type_taxonomies" ENABLE TRIGGER ALL;ALTER TABLE "push_type_assets" ENABLE TRIGGER ALL;ALTER TABLE "push_type_users" ENABLE TRIGGER ALL;ALTER TABLE "push_type_node_hierarchies" ENABLE TRIGGER ALL;ALTER TABLE "push_type_taxonomy_hierarchies" ENABLE TRIGGER ALL
[1m[36m (0.1ms)[0m [1mBEGIN[0m
--------------------------------------------------------------------------------------
PushType::ConfirmationsController::PUT #update::with invalid user: test_0003_anonymous
--------------------------------------------------------------------------------------
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.5ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-1@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-1@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.2ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "04e411e6017d67f2baec2ed0a54d0ff2e7fd1192d8f75a4d551c781f2f0000ff"]]
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-1@example.com"], ["created_at", "2015-04-29 16:46:42.674341"], ["updated_at", "2015-04-29 16:46:42.674341"], ["confirmation_token", "04e411e6017d67f2baec2ed0a54d0ff2e7fd1192d8f75a4d551c781f2f0000ff"], ["confirmation_sent_at", "2015-04-29 16:46:42.847193"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (1.5ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 299.2ms
Sent mail to joe-1@example.com (9.1ms)
Date: Wed, 29 Apr 2015 17:46:43 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-1@example.com
Message-ID: <55410af335d22_26233fd5ed465bec785d7@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410af334747_26233fd5ed465bec784db";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410af334747_26233fd5ed465bec784db
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=rKNvLxg4vs6yHtn-zimS )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410af334747_26233fd5ed465bec784db
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410af334747_26233fd5ed465bec784db--
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ConfirmationsController#update as HTML
Parameters: {"user"=>{"confirmation_token"=>"rKNvLxg4vs6yHtn-zimS", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
[1m[36mPushType::User Load (0.2ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "04e411e6017d67f2baec2ed0a54d0ff2e7fd1192d8f75a4d551c781f2f0000ff"]]
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-1@example.com' AND "push_type_users"."id" != '75a75372-1033-4fa7-9e1c-1733eb1b891b') LIMIT 1
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.9ms)
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (10.1ms)
Completed 200 OK in 9161ms (Views: 9158.1ms | ActiveRecord: 0.5ms)
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
[1m[35m (0.2ms)[0m ROLLBACK
[1m[36m (0.1ms)[0m [1mBEGIN[0m
--------------------------------------------------------------------------------------
PushType::ConfirmationsController::PUT #update::with invalid user: test_0002_anonymous
--------------------------------------------------------------------------------------
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.3ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-2@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-2@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "302c6885ce675f84860c00c314f296b137b9ee926c2529572b94da728b6704bb"]]
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-2@example.com"], ["created_at", "2015-04-29 16:46:52.393350"], ["updated_at", "2015-04-29 16:46:52.393350"], ["confirmation_token", "302c6885ce675f84860c00c314f296b137b9ee926c2529572b94da728b6704bb"], ["confirmation_sent_at", "2015-04-29 16:46:52.394226"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.3ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.6ms
Sent mail to joe-2@example.com (3.2ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-2@example.com
Message-ID: <55410afc67c16_26233fd5ed465bec78836@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afc675d6_26233fd5ed465bec787e0";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afc675d6_26233fd5ed465bec787e0
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=9-gQQNgv6SyNy92MKJ4y )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afc675d6_26233fd5ed465bec787e0
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afc675d6_26233fd5ed465bec787e0--
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ConfirmationsController#update as HTML
Parameters: {"user"=>{"confirmation_token"=>"9-gQQNgv6SyNy92MKJ4y", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
[1m[36mPushType::User Load (0.2ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "302c6885ce675f84860c00c314f296b137b9ee926c2529572b94da728b6704bb"]]
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-2@example.com' AND "push_type_users"."id" != 'd2c276c3-be89-4dc6-9be8-37deed6dca8d') LIMIT 1
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.3ms)
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (1.6ms)
Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.4ms)
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m ROLLBACK
[1m[36m (0.2ms)[0m [1mBEGIN[0m
--------------------------------------------------------------------------------------
PushType::ConfirmationsController::PUT #update::with invalid user: test_0001_anonymous
--------------------------------------------------------------------------------------
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-3@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-3@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.2ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "098789e2d0215e58b7f5e12ef779db2c084ac216a8a8f9c99de18d48c011f11d"]]
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-3@example.com"], ["created_at", "2015-04-29 16:46:52.439093"], ["updated_at", "2015-04-29 16:46:52.439093"], ["confirmation_token", "098789e2d0215e58b7f5e12ef779db2c084ac216a8a8f9c99de18d48c011f11d"], ["confirmation_sent_at", "2015-04-29 16:46:52.439885"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.3ms
Sent mail to joe-3@example.com (2.9ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-3@example.com
Message-ID: <55410afc72b32_26233fd5ed465bec7919@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afc72603_26233fd5ed465bec79072";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afc72603_26233fd5ed465bec79072
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=Vrbwh4fr5J7G5x1FfZCq )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afc72603_26233fd5ed465bec79072
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afc72603_26233fd5ed465bec79072--
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ConfirmationsController#update as HTML
Parameters: {"user"=>{"confirmation_token"=>"Vrbwh4fr5J7G5x1FfZCq", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
[1m[36mPushType::User Load (0.2ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "098789e2d0215e58b7f5e12ef779db2c084ac216a8a8f9c99de18d48c011f11d"]]
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-3@example.com' AND "push_type_users"."id" != 'df7a692d-2f4e-43bb-a574-d09fc26fba0b') LIMIT 1
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.2ms)
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (1.6ms)
Completed 200 OK in 7ms (Views: 4.8ms | ActiveRecord: 0.5ms)
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m ROLLBACK
[1m[36m (0.1ms)[0m [1mBEGIN[0m
-----------------------------------------------------------
PushType::UsersController::PUT #invite: test_0001_anonymous
-----------------------------------------------------------
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-4@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-4@example.com' LIMIT 1[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-4@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:52.483003"], ["confirmed_at", "2015-04-29 16:46:52.483066"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:52.484371"], ["updated_at", "2015-04-29 16:46:52.484371"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-5@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-5@example.com' LIMIT 1
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "0df947bcb6b9e88aa140380eec0259d1cce7021a7a0246f381054cb0a083c02a"]]
[1m[35mSQL (0.2ms)[0m INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-5@example.com"], ["created_at", "2015-04-29 16:46:52.486877"], ["updated_at", "2015-04-29 16:46:52.486877"], ["confirmation_token", "0df947bcb6b9e88aa140380eec0259d1cce7021a7a0246f381054cb0a083c02a"], ["confirmation_sent_at", "2015-04-29 16:46:52.487526"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.3ms
Sent mail to joe-5@example.com (3.1ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-5@example.com
Message-ID: <55410afc8755b_26233fd5ed465bec79424@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afc86ff6_26233fd5ed465bec79354";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afc86ff6_26233fd5ed465bec79354
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=gqyHqZFtL5zMY4foz_FN )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afc86ff6_26233fd5ed465bec79354
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afc86ff6_26233fd5ed465bec79354--
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Processing by PushType::UsersController#invite as HTML
Parameters: {"id"=>"6c4d034b-4954-41a5-bf35-040a981d272b"}
[1m[35mPushType::User Load (0.2ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "d990672a-99d0-48c2-9d37-2ea9d6a4b8fa"]]
[1m[36mPushType::User Load (0.2ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "6c4d034b-4954-41a5-bf35-040a981d272b"]]
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "db20ab04f069aa55238bfdfc782144108e0ac5dc9dbbff9aac1eba7349a28d8a"]]
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mSQL (0.2ms)[0m UPDATE "push_type_users" SET "confirmation_token" = $1, "confirmation_sent_at" = $2, "updated_at" = $3 WHERE "push_type_users"."id" = $4 [["confirmation_token", "db20ab04f069aa55238bfdfc782144108e0ac5dc9dbbff9aac1eba7349a28d8a"], ["confirmation_sent_at", "2015-04-29 16:46:52.561397"], ["updated_at", "2015-04-29 16:46:52.561790"], ["id", "6c4d034b-4954-41a5-bf35-040a981d272b"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-5@example.com (2.9ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-5@example.com
Message-ID: <55410afc90b23_26233fd5ed465bec7979b@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afc90613_26233fd5ed465bec796ce";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afc90613_26233fd5ed465bec796ce
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=pBaEyNUwPho5Dg-PpfZz )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afc90613_26233fd5ed465bec796ce
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afc90613_26233fd5ed465bec796ce--
Redirected to /push_type/users
Completed 302 Found in 36ms (ActiveRecord: 0.8ms)
[1m[35m (0.2ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
-----------------------------------------------------------
PushType::UsersController::PUT #invite: test_0002_anonymous
-----------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-6@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-6@example.com' LIMIT 1
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-6@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:52.596826"], ["confirmed_at", "2015-04-29 16:46:52.596884"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:52.598199"], ["updated_at", "2015-04-29 16:46:52.598199"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-7@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-7@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "53b84522a4cb215ae6070015a63918533c62ed5377f102939cb02adc4b2145a2"]]
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-7@example.com"], ["created_at", "2015-04-29 16:46:52.600754"], ["updated_at", "2015-04-29 16:46:52.600754"], ["confirmation_token", "53b84522a4cb215ae6070015a63918533c62ed5377f102939cb02adc4b2145a2"], ["confirmation_sent_at", "2015-04-29 16:46:52.601399"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-7@example.com (3.0ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-7@example.com
Message-ID: <55410afc9a2d6_26233fd5ed465bec80068@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afc99d77_26233fd5ed465bec79977";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afc99d77_26233fd5ed465bec79977
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=WBSBbfwJiDyCE1cXtLBh )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afc99d77_26233fd5ed465bec79977
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afc99d77_26233fd5ed465bec79977--
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::UsersController#invite as HTML
Parameters: {"id"=>"ecf75404-1f64-487b-bfac-9cd81ebcb6d8"}
[1m[36mPushType::User Load (0.2ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "edc5cdfe-858b-450e-8db9-1ad52fbf6b7e"]]
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "ecf75404-1f64-487b-bfac-9cd81ebcb6d8"]]
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "b42cc393f51abc617a87ec63b6db8ba9569e528f8222c06effb50e03cc8c874d"]]
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mSQL (0.2ms)[0m [1mUPDATE "push_type_users" SET "confirmation_token" = $1, "confirmation_sent_at" = $2, "updated_at" = $3 WHERE "push_type_users"."id" = $4[0m [["confirmation_token", "b42cc393f51abc617a87ec63b6db8ba9569e528f8222c06effb50e03cc8c874d"], ["confirmation_sent_at", "2015-04-29 16:46:52.636955"], ["updated_at", "2015-04-29 16:46:52.637318"], ["id", "ecf75404-1f64-487b-bfac-9cd81ebcb6d8"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-7@example.com (2.8ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-7@example.com
Message-ID: <55410afca2eeb_26233fd5ed465bec80342@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afca29d2_26233fd5ed465bec802f9";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afca29d2_26233fd5ed465bec802f9
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=gcuQe-Y_s_vwQPDsFsUG )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afca29d2_26233fd5ed465bec802f9
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afca29d2_26233fd5ed465bec802f9--
Redirected to /push_type/users
Completed 302 Found in 35ms (ActiveRecord: 0.8ms)
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m ROLLBACK
[1m[36m (0.1ms)[0m [1mBEGIN[0m
-----------------------------------------------------------
PushType::UsersController::PUT #invite: test_0003_anonymous
-----------------------------------------------------------
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-8@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-8@example.com' LIMIT 1[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-8@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:52.671725"], ["confirmed_at", "2015-04-29 16:46:52.671782"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:52.673219"], ["updated_at", "2015-04-29 16:46:52.673219"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-9@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-9@example.com' LIMIT 1
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "bc8be33a80ab27a346eab0c4cb093d4e018b1628c27e49b69b4fd33c19494e0a"]]
[1m[35mSQL (0.1ms)[0m INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-9@example.com"], ["created_at", "2015-04-29 16:46:52.675734"], ["updated_at", "2015-04-29 16:46:52.675734"], ["confirmation_token", "bc8be33a80ab27a346eab0c4cb093d4e018b1628c27e49b69b4fd33c19494e0a"], ["confirmation_sent_at", "2015-04-29 16:46:52.676466"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-9@example.com (2.9ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-9@example.com
Message-ID: <55410afcac63f_26233fd5ed465bec80643@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afcac100_26233fd5ed465bec805e8";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afcac100_26233fd5ed465bec805e8
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=nZXcsbZsVfBj6EBwE4za )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afcac100_26233fd5ed465bec805e8
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afcac100_26233fd5ed465bec805e8--
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Processing by PushType::UsersController#invite as HTML
Parameters: {"id"=>"377b7399-b149-4416-a01c-6a538bd471c5"}
[1m[35mPushType::User Load (0.2ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "ccd6c932-7cf7-43fe-97a9-9f52d2c83392"]]
[1m[36mPushType::User Load (0.2ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "377b7399-b149-4416-a01c-6a538bd471c5"]]
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "8571359036989ce57116f6b1dfff5d1d6e01c3276e28e8834a75a35a5d5a9773"]]
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mSQL (0.2ms)[0m UPDATE "push_type_users" SET "confirmation_token" = $1, "confirmation_sent_at" = $2, "updated_at" = $3 WHERE "push_type_users"."id" = $4 [["confirmation_token", "8571359036989ce57116f6b1dfff5d1d6e01c3276e28e8834a75a35a5d5a9773"], ["confirmation_sent_at", "2015-04-29 16:46:52.711384"], ["updated_at", "2015-04-29 16:46:52.711741"], ["id", "377b7399-b149-4416-a01c-6a538bd471c5"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-9@example.com (2.8ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-9@example.com
Message-ID: <55410afcb5132_26233fd5ed465bec809d1@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afcb4c21_26233fd5ed465bec808a9";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afcb4c21_26233fd5ed465bec808a9
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=sMRBRsf3PCYqcC-zfBvT )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afcb4c21_26233fd5ed465bec808a9
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afcb4c21_26233fd5ed465bec808a9--
Redirected to /push_type/users
Completed 302 Found in 35ms (ActiveRecord: 0.8ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
-------------------------------------------------------------------------------
PushType::ProfilesController::PUT #update::with valid user: test_0003_anonymous
-------------------------------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-10@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-10@example.com' LIMIT 1
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-10@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:52.746431"], ["confirmed_at", "2015-04-29 16:46:52.746489"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:52.747854"], ["updated_at", "2015-04-29 16:46:52.747854"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ProfilesController#update as HTML
Parameters: {"user"=>{"name"=>"Test user ABC"}}
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "f752b0d4-161e-40ba-959f-f4c2ed90d7f2"]]
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-10@example.com' AND "push_type_users"."id" != 'f752b0d4-161e-40ba-959f-f4c2ed90d7f2') LIMIT 1[0m
[1m[35mSQL (0.1ms)[0m UPDATE "push_type_users" SET "name" = $1, "updated_at" = $2 WHERE "push_type_users"."id" = $3 [["name", "Test user ABC"], ["updated_at", "2015-04-29 16:46:52.752523"], ["id", "f752b0d4-161e-40ba-959f-f4c2ed90d7f2"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Redirected to http://test.host/push_type/profile/edit
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
-------------------------------------------------------------------------------
PushType::ProfilesController::PUT #update::with valid user: test_0002_anonymous
-------------------------------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-11@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-11@example.com' LIMIT 1
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-11@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:52.755711"], ["confirmed_at", "2015-04-29 16:46:52.755753"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:52.756892"], ["updated_at", "2015-04-29 16:46:52.756892"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ProfilesController#update as HTML
Parameters: {"user"=>{"name"=>"Test user ABC"}}
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "f0935bcd-3e4a-4f02-abcb-56a85665b34c"]]
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-11@example.com' AND "push_type_users"."id" != 'f0935bcd-3e4a-4f02-abcb-56a85665b34c') LIMIT 1[0m
[1m[35mSQL (0.1ms)[0m UPDATE "push_type_users" SET "name" = $1, "updated_at" = $2 WHERE "push_type_users"."id" = $3 [["name", "Test user ABC"], ["updated_at", "2015-04-29 16:46:52.760429"], ["id", "f0935bcd-3e4a-4f02-abcb-56a85665b34c"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Redirected to http://test.host/push_type/profile/edit
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
-------------------------------------------------------------------------------
PushType::ProfilesController::PUT #update::with valid user: test_0001_anonymous
-------------------------------------------------------------------------------
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-12@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-12@example.com' LIMIT 1
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-12@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:52.763028"], ["confirmed_at", "2015-04-29 16:46:52.763070"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:52.764120"], ["updated_at", "2015-04-29 16:46:52.764120"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ProfilesController#update as HTML
Parameters: {"user"=>{"name"=>"Test user ABC"}}
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "770f6a0f-7010-4579-9ae9-a44fd94cfcf5"]]
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-12@example.com' AND "push_type_users"."id" != '770f6a0f-7010-4579-9ae9-a44fd94cfcf5') LIMIT 1[0m
[1m[35mSQL (0.1ms)[0m UPDATE "push_type_users" SET "name" = $1, "updated_at" = $2 WHERE "push_type_users"."id" = $3 [["name", "Test user ABC"], ["updated_at", "2015-04-29 16:46:52.767599"], ["id", "770f6a0f-7010-4579-9ae9-a44fd94cfcf5"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Redirected to http://test.host/push_type/profile/edit
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 LIMIT 1 [["id", "770f6a0f-7010-4579-9ae9-a44fd94cfcf5"]]
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m ROLLBACK
[1m[36m (0.1ms)[0m [1mBEGIN[0m
------------------------------------------------------------------------------------------------
PushType::ConfirmationsController::GET #show::with valid confirmation token: test_0001_anonymous
------------------------------------------------------------------------------------------------
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-13@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-13@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "5224240952e19034e139743f1ba64f6a3d7c82e073cfeca886c74d3ae17eca23"]]
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-13@example.com"], ["created_at", "2015-04-29 16:46:52.776846"], ["updated_at", "2015-04-29 16:46:52.776846"], ["confirmation_token", "5224240952e19034e139743f1ba64f6a3d7c82e073cfeca886c74d3ae17eca23"], ["confirmation_sent_at", "2015-04-29 16:46:52.777503"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.3ms
Sent mail to joe-13@example.com (2.8ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-13@example.com
Message-ID: <55410afcc51d1_26233fd5ed465bec81219@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afcc4cb0_26233fd5ed465bec8116e";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afcc4cb0_26233fd5ed465bec8116e
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=ko2-zJbMG4gzev-E7FbR )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afcc4cb0_26233fd5ed465bec8116e
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afcc4cb0_26233fd5ed465bec8116e--
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ConfirmationsController#show as HTML
Parameters: {"confirmation_token"=>"ko2-zJbMG4gzev-E7FbR"}
[1m[36mPushType::User Load (0.2ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "5224240952e19034e139743f1ba64f6a3d7c82e073cfeca886c74d3ae17eca23"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.2ms)
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (1.5ms)
Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
------------------------------------------------------------------------------------------------
PushType::ConfirmationsController::GET #show::with valid confirmation token: test_0002_anonymous
------------------------------------------------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-14@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-14@example.com' LIMIT 1
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "c9609f243db904476c5c926b5ad9274ca574634790114bb2cf792aae630695d7"]]
[1m[35mSQL (0.1ms)[0m INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-14@example.com"], ["created_at", "2015-04-29 16:46:52.819865"], ["updated_at", "2015-04-29 16:46:52.819865"], ["confirmation_token", "c9609f243db904476c5c926b5ad9274ca574634790114bb2cf792aae630695d7"], ["confirmation_sent_at", "2015-04-29 16:46:52.820581"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-14@example.com (3.0ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-14@example.com
Message-ID: <55410afccfcd1_26233fd5ed465bec815ab@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afccf77a_26233fd5ed465bec81412";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afccf77a_26233fd5ed465bec81412
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=TAXKir-oZXwtyPcsdCjQ )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afccf77a_26233fd5ed465bec81412
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afccf77a_26233fd5ed465bec81412--
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Processing by PushType::ConfirmationsController#show as HTML
Parameters: {"confirmation_token"=>"TAXKir-oZXwtyPcsdCjQ"}
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "c9609f243db904476c5c926b5ad9274ca574634790114bb2cf792aae630695d7"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.2ms)
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/show.html.haml within layouts/push_type/auth (1.6ms)
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m ROLLBACK
[1m[36m (0.1ms)[0m [1mBEGIN[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-15@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-15@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "392cba4ba8baab969dc33e0de1fd86424159d7abb74acf2e76f60afce2750293"]]
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-15@example.com"], ["created_at", "2015-04-29 16:46:52.863848"], ["updated_at", "2015-04-29 16:46:52.863848"], ["confirmation_token", "392cba4ba8baab969dc33e0de1fd86424159d7abb74acf2e76f60afce2750293"], ["confirmation_sent_at", "2015-04-29 16:46:52.864577"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-15@example.com (3.0ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-15@example.com
Message-ID: <55410afcda472_26233fd5ed465bec81872@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afcd9f33_26233fd5ed465bec8171a";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afcd9f33_26233fd5ed465bec8171a
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=aT7SE3xR-gwJJExYiFdA )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afcd9f33_26233fd5ed465bec8171a
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afcd9f33_26233fd5ed465bec8171a--
[1m[35m (0.6ms)[0m COMMIT
[1m[36m (0.1ms)[0m [1mBEGIN[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-16@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-16@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "df32fdedc946d25628976632944082f7b851e1b60bf8b38ba3ce453bb12195f9"]]
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-16@example.com"], ["created_at", "2015-04-29 16:46:52.901661"], ["updated_at", "2015-04-29 16:46:52.901661"], ["confirmation_token", "df32fdedc946d25628976632944082f7b851e1b60bf8b38ba3ce453bb12195f9"], ["confirmation_sent_at", "2015-04-29 16:46:52.902408"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-16@example.com (2.9ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-16@example.com
Message-ID: <55410afce39aa_26233fd5ed465bec8215c@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afce3494_26233fd5ed465bec82014";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afce3494_26233fd5ed465bec82014
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=PEyyiBVJMVywRpf9ZZ8x )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afce3494_26233fd5ed465bec82014
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afce3494_26233fd5ed465bec82014--
[1m[35m (0.7ms)[0m COMMIT
[1m[36m (0.1ms)[0m [1mBEGIN[0m
------------------------------------------------------------------------------------
PushType::ConfirmationsController::PUT #update::with valid user: test_0001_anonymous
------------------------------------------------------------------------------------
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-17@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-17@example.com' LIMIT 1[0m
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "b5039b947e560aaa8f2c82eac8d4c8ae1e613141ef75732a1894372094231ec7"]]
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-17@example.com"], ["created_at", "2015-04-29 16:46:52.938683"], ["updated_at", "2015-04-29 16:46:52.938683"], ["confirmation_token", "b5039b947e560aaa8f2c82eac8d4c8ae1e613141ef75732a1894372094231ec7"], ["confirmation_sent_at", "2015-04-29 16:46:52.939380"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-17@example.com (2.9ms)
Date: Wed, 29 Apr 2015 17:46:52 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-17@example.com
Message-ID: <55410afcecc06_26233fd5ed465bec824e7@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afcec6e2_26233fd5ed465bec8233f";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afcec6e2_26233fd5ed465bec8233f
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=nHkQvvkBLYt2uDWEzzbk )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afcec6e2_26233fd5ed465bec8233f
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afcec6e2_26233fd5ed465bec8233f--
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ConfirmationsController#update as HTML
Parameters: {"user"=>{"confirmation_token"=>"nHkQvvkBLYt2uDWEzzbk", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "b5039b947e560aaa8f2c82eac8d4c8ae1e613141ef75732a1894372094231ec7"]]
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-17@example.com' AND "push_type_users"."id" != 'cb224078-8fa3-494d-afc9-ac4a4f60bfa2') LIMIT 1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mSQL (0.2ms)[0m UPDATE "push_type_users" SET "confirmation_token" = $1, "encrypted_password" = $2, "confirmed_at" = $3, "updated_at" = $4 WHERE "push_type_users"."id" = $5 [["confirmation_token", nil], ["encrypted_password", "$2a$04$lcEbBdY.6pJ.Y49YrmwAduTuc7BKLfyA5jwgx8T4IENtkgPzne7ZS"], ["confirmed_at", "2015-04-29 16:46:52.975812"], ["updated_at", "2015-04-29 16:46:52.976076"], ["id", "cb224078-8fa3-494d-afc9-ac4a4f60bfa2"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mSQL (0.2ms)[0m [1mUPDATE "push_type_users" SET "last_sign_in_at" = $1, "current_sign_in_at" = $2, "last_sign_in_ip" = $3, "current_sign_in_ip" = $4, "sign_in_count" = $5, "updated_at" = $6 WHERE "push_type_users"."id" = $7[0m [["last_sign_in_at", "2015-04-29 16:46:52.977468"], ["current_sign_in_at", "2015-04-29 16:46:52.977468"], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", "2015-04-29 16:46:52.977909"], ["id", "cb224078-8fa3-494d-afc9-ac4a4f60bfa2"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Redirected to http://test.host/push_type/
Completed 302 Found in 6ms (ActiveRecord: 1.0ms)
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 LIMIT 1[0m [["id", "cb224078-8fa3-494d-afc9-ac4a4f60bfa2"]]
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
------------------------------------------------------------------------------------
PushType::ConfirmationsController::PUT #update::with valid user: test_0002_anonymous
------------------------------------------------------------------------------------
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.1ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-18@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-18@example.com' LIMIT 1
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "1492632f273db07817e6d3dfcc5bcce454046a35b28b6968e59bacfee4856f2a"]]
[1m[35mSQL (0.1ms)[0m INSERT INTO "push_type_users" ("name", "email", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES ($1, $2, $3, $4, $5, $6) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-18@example.com"], ["created_at", "2015-04-29 16:46:52.982720"], ["updated_at", "2015-04-29 16:46:52.982720"], ["confirmation_token", "1492632f273db07817e6d3dfcc5bcce454046a35b28b6968e59bacfee4856f2a"], ["confirmation_sent_at", "2015-04-29 16:46:52.983348"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/mailer/confirmation_instructions.html.erb within layouts/push_type/email (0.2ms)
Devise::Mailer#confirmation_instructions: processed outbound mail in 2.2ms
Sent mail to joe-18@example.com (2.9ms)
Date: Wed, 29 Apr 2015 17:46:53 +0100
From: pushtype@example.com
Reply-To: pushtype@example.com
To: joe-18@example.com
Message-ID: <55410afd32cb_26233fd5ed465bec8279b@Aarons-iMac.local.mail>
Subject: [PushType] Confirm your account
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_55410afd2db3_26233fd5ed465bec826fd";
charset=UTF-8
Content-Transfer-Encoding: 7bit
----==_mimepart_55410afd2db3_26233fd5ed465bec826fd
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit
PushType ( http://localhost:3000/push_type/ )
Hello Joe Bloggs
You're receiving this email because a PushType account has been
created for you.
To get started, confirm your account and set your own password by
clicking the link below:
Confirm my account ( http://localhost:3000/push_type/confirmation?confirmation_token=YjEoSFtGyYgAAwyaMR1t )
PushType is brought to you by Push Code:
type.pushcode.com ( http://type.pushcode.com ).
----==_mimepart_55410afd2db3_26233fd5ed465bec826fd
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit
[PushType] Confirm your account
|
 |
Hello Joe Bloggs
You're receiving this email because a PushType account has been created for you.
To get started, confirm your account and set your own password by clicking the link below:
|
|
|
----==_mimepart_55410afd2db3_26233fd5ed465bec826fd--
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Processing by PushType::ConfirmationsController#update as HTML
Parameters: {"user"=>{"confirmation_token"=>"YjEoSFtGyYgAAwyaMR1t", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}}
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "1492632f273db07817e6d3dfcc5bcce454046a35b28b6968e59bacfee4856f2a"]]
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-18@example.com' AND "push_type_users"."id" != '6a57405a-da54-476d-b937-a7c9f78b26e6') LIMIT 1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mSQL (0.2ms)[0m [1mUPDATE "push_type_users" SET "confirmation_token" = $1, "encrypted_password" = $2, "confirmed_at" = $3, "updated_at" = $4 WHERE "push_type_users"."id" = $5[0m [["confirmation_token", nil], ["encrypted_password", "$2a$04$bDBtRD6oLSMRhcJVTSSl2uvAoaiDQwnvEFywjTbJeTeNrCBTJwDLi"], ["confirmed_at", "2015-04-29 16:46:53.019263"], ["updated_at", "2015-04-29 16:46:53.019531"], ["id", "6a57405a-da54-476d-b937-a7c9f78b26e6"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mSQL (0.1ms)[0m UPDATE "push_type_users" SET "last_sign_in_at" = $1, "current_sign_in_at" = $2, "last_sign_in_ip" = $3, "current_sign_in_ip" = $4, "sign_in_count" = $5, "updated_at" = $6 WHERE "push_type_users"."id" = $7 [["last_sign_in_at", "2015-04-29 16:46:53.020717"], ["current_sign_in_at", "2015-04-29 16:46:53.020717"], ["last_sign_in_ip", "0.0.0.0"], ["current_sign_in_ip", "0.0.0.0"], ["sign_in_count", 1], ["updated_at", "2015-04-29 16:46:53.021162"], ["id", "6a57405a-da54-476d-b937-a7c9f78b26e6"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Redirected to http://test.host/push_type/
Completed 302 Found in 6ms (ActiveRecord: 1.0ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
---------------------------------------------------------------------------------
PushType::ProfilesController::PUT #update::with invalid user: test_0001_anonymous
---------------------------------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-19@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-19@example.com' LIMIT 1
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-19@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:53.026438"], ["confirmed_at", "2015-04-29 16:46:53.026490"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:53.027711"], ["updated_at", "2015-04-29 16:46:53.027711"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ProfilesController#update as HTML
Parameters: {"user"=>{"name"=>""}}
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "71d8612d-0f1e-4709-8d98-cea7afa5773d"]]
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-19@example.com' AND "push_type_users"."id" != '71d8612d-0f1e-4709-8d98-cea7afa5773d') LIMIT 1[0m
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_2
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (5.9ms)
Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.4ms)
[1m[36m (0.2ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m ROLLBACK
[1m[36m (0.1ms)[0m [1mBEGIN[0m
---------------------------------------------------------------------------------
PushType::ProfilesController::PUT #update::with invalid user: test_0002_anonymous
---------------------------------------------------------------------------------
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-20@example.com' LIMIT 1
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-20@example.com' LIMIT 1[0m
[1m[35mSQL (0.1ms)[0m INSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id" [["name", "Joe Bloggs"], ["email", "joe-20@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:53.056509"], ["confirmed_at", "2015-04-29 16:46:53.056588"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:53.058202"], ["updated_at", "2015-04-29 16:46:53.058202"]]
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_2[0m
Processing by PushType::ProfilesController#update as HTML
Parameters: {"user"=>{"name"=>""}}
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "185c579b-b2b6-46e1-8220-7b5e2da3df0e"]]
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_2[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE ("push_type_users"."email" = 'joe-20@example.com' AND "push_type_users"."id" != '185c579b-b2b6-46e1-8220-7b5e2da3df0e') LIMIT 1
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_2[0m
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (1.8ms)
Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.5ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
------------------------------------------------------------
PushType::ProfilesController::GET #edit: test_0001_anonymous
------------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-21@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.1ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-21@example.com' LIMIT 1
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-21@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:53.072407"], ["confirmed_at", "2015-04-29 16:46:53.072462"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:53.073756"], ["updated_at", "2015-04-29 16:46:53.073756"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ProfilesController#edit as HTML
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "82890053-a9a7-4820-ac60-948bea43a6b3"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (1.8ms)
Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
------------------------------------------------------------
PushType::ProfilesController::GET #edit: test_0002_anonymous
------------------------------------------------------------
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.1ms)[0m SAVEPOINT active_record_2
[1m[36mPushType::User Exists (0.2ms)[0m [1mSELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-22@example.com' LIMIT 1[0m
[1m[35mPushType::User Exists (0.2ms)[0m SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-22@example.com' LIMIT 1
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "push_type_users" ("name", "email", "confirmation_sent_at", "confirmed_at", "confirmation_token", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7) RETURNING "id"[0m [["name", "Joe Bloggs"], ["email", "joe-22@example.com"], ["confirmation_sent_at", "2015-04-29 16:46:53.085186"], ["confirmed_at", "2015-04-29 16:46:53.085237"], ["confirmation_token", "Generated account"], ["created_at", "2015-04-29 16:46:53.086594"], ["updated_at", "2015-04-29 16:46:53.086594"]]
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_2
Processing by PushType::ProfilesController#edit as HTML
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["id", "5e416c36-44cc-49a8-9522-dc47a80d406e"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/profiles/edit.html.haml within layouts/push_type/admin (1.7ms)
Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.1ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
--------------------------------------------------------------------------------------------------
PushType::ConfirmationsController::GET #show::with invalid confirmation token: test_0001_anonymous
--------------------------------------------------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
Processing by PushType::ConfirmationsController#show as HTML
Parameters: {"confirmation_token"=>"invalid"}
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "5773504c01a1e9b02a7c86d837eb5639d78683c949e9ef91b6d28cc9901c77a1"]]
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "5773504c01a1e9b02a7c86d837eb5639d78683c949e9ef91b6d28cc9901c77a1"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.3ms)
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/new.html.haml within layouts/push_type/auth (2.6ms)
Completed 200 OK in 10ms (Views: 6.9ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m
[1m[35m (0.1ms)[0m BEGIN
--------------------------------------------------------------------------------------------------
PushType::ConfirmationsController::GET #show::with invalid confirmation token: test_0002_anonymous
--------------------------------------------------------------------------------------------------
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
Processing by PushType::ConfirmationsController#show as HTML
Parameters: {"confirmation_token"=>"invalid"}
[1m[35mPushType::User Load (0.1ms)[0m SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["confirmation_token", "5773504c01a1e9b02a7c86d837eb5639d78683c949e9ef91b6d28cc9901c77a1"]]
[1m[36mPushType::User Load (0.1ms)[0m [1mSELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."confirmation_token" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1[0m [["confirmation_token", "5773504c01a1e9b02a7c86d837eb5639d78683c949e9ef91b6d28cc9901c77a1"]]
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/devise/shared/_links.html.erb (0.2ms)
Rendered /Users/aaron/dev/pushcode/push_type/auth/app/views/push_type/confirmations/new.html.haml within layouts/push_type/auth (1.3ms)
Completed 200 OK in 7ms (Views: 4.6ms | ActiveRecord: 0.2ms)
[1m[35m (0.1ms)[0m ROLLBACK TO SAVEPOINT active_record_1
[1m[36m (0.1ms)[0m [1mROLLBACK[0m