(13.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL)   (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePushTypeUsers (20150429164637)  (0.1ms) BEGIN SQL (1.7ms) CREATE EXTENSION IF NOT EXISTS "uuid-ossp"  (2.5ms) 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) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164637"]]  (0.7ms) COMMIT Migrating to CreatePushTypeNodes (20150429164638)  (0.1ms) BEGIN  (2.1ms) 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) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164638"]]  (0.4ms) COMMIT Migrating to CreatePushTypeNodeHierarchies (20150429164639)  (0.1ms) BEGIN  (0.4ms) CREATE TABLE "push_type_node_hierarchies" ("ancestor_id" uuid NOT NULL, "descendant_id" uuid NOT NULL, "generations" integer NOT NULL)  (0.6ms) CREATE UNIQUE INDEX "node_anc_desc_idx" ON "push_type_node_hierarchies" ("ancestor_id", "descendant_id", "generations")  (0.5ms) CREATE INDEX "node_desc_idx" ON "push_type_node_hierarchies" ("descendant_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164639"]]  (0.4ms) COMMIT Migrating to CreatePushTypeAssets (20150429164640)  (0.1ms) BEGIN  (1.8ms) 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) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164640"]]  (0.5ms) COMMIT Migrating to CreatePushTypeTaxonomies (20150429164641)  (0.1ms) BEGIN  (1.8ms) 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)  (0.2ms) ALTER TABLE "push_type_assets" ADD "tags" character varying[] SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164641"]]  (0.4ms) COMMIT Migrating to CreatePushTypeTaxonomyHierarchies (20150429164642)  (0.1ms) BEGIN  (0.4ms) CREATE TABLE "push_type_taxonomy_hierarchies" ("ancestor_id" uuid NOT NULL, "descendant_id" uuid NOT NULL, "generations" integer NOT NULL)   (0.6ms) CREATE UNIQUE INDEX "taxonomy_anc_desc_idx" ON "push_type_taxonomy_hierarchies" ("ancestor_id", "descendant_id", "generations")  (0.5ms) CREATE INDEX "taxonomy_desc_idx" ON "push_type_taxonomy_hierarchies" ("descendant_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164642"]]  (0.6ms) COMMIT Migrating to DeviseExtendPushTypeUsers (20150429164643)  (0.1ms) BEGIN  (2.4ms) ALTER TABLE "push_type_users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL  (0.2ms) ALTER TABLE "push_type_users" ADD "reset_password_token" character varying  (0.1ms) ALTER TABLE "push_type_users" ADD "reset_password_sent_at" timestamp  (0.1ms) ALTER TABLE "push_type_users" ADD "remember_created_at" timestamp  (2.3ms) ALTER TABLE "push_type_users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL  (0.2ms) ALTER TABLE "push_type_users" ADD "current_sign_in_at" timestamp  (0.2ms) ALTER TABLE "push_type_users" ADD "last_sign_in_at" timestamp  (0.1ms) ALTER TABLE "push_type_users" ADD "current_sign_in_ip" character varying  (0.1ms) ALTER TABLE "push_type_users" ADD "last_sign_in_ip" character varying  (0.2ms) ALTER TABLE "push_type_users" ADD "confirmation_token" character varying  (0.1ms) ALTER TABLE "push_type_users" ADD "confirmed_at" timestamp  (0.1ms) ALTER TABLE "push_type_users" ADD "confirmation_sent_at" timestamp  (1.1ms) CREATE UNIQUE INDEX "index_push_type_users_on_email" ON "push_type_users" ("email")  (0.7ms) CREATE UNIQUE INDEX "index_push_type_users_on_reset_password_token" ON "push_type_users" ("reset_password_token") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150429164643"]]  (0.9ms) COMMIT ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (1.7ms) 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  (1.2ms) 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_node_hierarchies' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.2ms) 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  (1.2ms) 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_taxonomies' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname   (1.3ms) 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  (1.2ms) 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_users' AND t3.nspname = ANY (current_schemas(false)) ORDER BY c.conname  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.4ms) 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  (0.9ms)  SELECT schemaname || '.' || tablename FROM pg_tables WHERE tablename !~ '_prt_' AND schemaname = ANY (current_schemas(false))   (1.0ms) select table_name from information_schema.views where table_schema = 'dummy_test'  (11.1ms) TRUNCATE 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;  (0.4ms) 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  (0.1ms) BEGIN -------------------------------------------------------------------------------------- PushType::ConfirmationsController::PUT #update::with invalid user: test_0003_anonymous --------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.5ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-1@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-1@example.com' LIMIT 1 PushType::User Load (0.2ms) 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"]] SQL (0.7ms) 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-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:

Confirm my account

----==_mimepart_55410af334747_26233fd5ed465bec784db--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"rKNvLxg4vs6yHtn-zimS", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.2ms) 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"]] PushType::User Exists (0.2ms) 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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.2ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------------------------------------- PushType::ConfirmationsController::PUT #update::with invalid user: test_0002_anonymous --------------------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.3ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-2@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-2@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afc675d6_26233fd5ed465bec787e0--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"9-gQQNgv6SyNy92MKJ4y", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.2ms) 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"]] PushType::User Exists (0.2ms) 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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.2ms) BEGIN -------------------------------------------------------------------------------------- PushType::ConfirmationsController::PUT #update::with invalid user: test_0001_anonymous --------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-3@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-3@example.com' LIMIT 1 PushType::User Load (0.2ms) 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"]] SQL (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afc72603_26233fd5ed465bec79072--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"Vrbwh4fr5J7G5x1FfZCq", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.2ms) 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"]] PushType::User Exists (0.2ms) 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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ----------------------------------------------------------- PushType::UsersController::PUT #invite: test_0001_anonymous -----------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-4@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-4@example.com' LIMIT 1 SQL (0.1ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-5@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-5@example.com' LIMIT 1 PushType::User Load (0.1ms) 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", "0df947bcb6b9e88aa140380eec0259d1cce7021a7a0246f381054cb0a083c02a"]] SQL (0.2ms) 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:

Confirm my account

----==_mimepart_55410afc86ff6_26233fd5ed465bec79354--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::UsersController#invite as HTML Parameters: {"id"=>"6c4d034b-4954-41a5-bf35-040a981d272b"} PushType::User Load (0.2ms) 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"]] PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "6c4d034b-4954-41a5-bf35-040a981d272b"]] PushType::User Load (0.1ms) 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"]]  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) 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"]]  (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afc90613_26233fd5ed465bec796ce-- Redirected to /push_type/users Completed 302 Found in 36ms (ActiveRecord: 0.8ms)  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ----------------------------------------------------------- PushType::UsersController::PUT #invite: test_0002_anonymous -----------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-6@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-6@example.com' LIMIT 1 SQL (0.3ms) 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-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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-7@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-7@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afc99d77_26233fd5ed465bec79977--  (0.2ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::UsersController#invite as HTML Parameters: {"id"=>"ecf75404-1f64-487b-bfac-9cd81ebcb6d8"} PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "edc5cdfe-858b-450e-8db9-1ad52fbf6b7e"]] PushType::User Load (0.1ms) 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"]] PushType::User Load (0.1ms) 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", "b42cc393f51abc617a87ec63b6db8ba9569e528f8222c06effb50e03cc8c874d"]]  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) UPDATE "push_type_users" SET "confirmation_token" = $1, "confirmation_sent_at" = $2, "updated_at" = $3 WHERE "push_type_users"."id" = $4 [["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"]]  (0.1ms) 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:

Confirm my account

----==_mimepart_55410afca29d2_26233fd5ed465bec802f9-- Redirected to /push_type/users Completed 302 Found in 35ms (ActiveRecord: 0.8ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ----------------------------------------------------------- PushType::UsersController::PUT #invite: test_0003_anonymous -----------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-8@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-8@example.com' LIMIT 1 SQL (0.1ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-9@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-9@example.com' LIMIT 1 PushType::User Load (0.1ms) 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", "bc8be33a80ab27a346eab0c4cb093d4e018b1628c27e49b69b4fd33c19494e0a"]] SQL (0.1ms) 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:

Confirm my account

----==_mimepart_55410afcac100_26233fd5ed465bec805e8--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::UsersController#invite as HTML Parameters: {"id"=>"377b7399-b149-4416-a01c-6a538bd471c5"} PushType::User Load (0.2ms) 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"]] PushType::User Load (0.2ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "377b7399-b149-4416-a01c-6a538bd471c5"]] PushType::User Load (0.1ms) 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"]]  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) 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"]]  (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afcb4c21_26233fd5ed465bec808a9-- Redirected to /push_type/users Completed 302 Found in 35ms (ActiveRecord: 0.8ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------- PushType::ProfilesController::PUT #update::with valid user: test_0003_anonymous -------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-10@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-10@example.com' LIMIT 1 SQL (0.1ms) 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-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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>"Test user ABC"}} PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "f752b0d4-161e-40ba-959f-f4c2ed90d7f2"]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 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 SQL (0.1ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/profile/edit Completed 302 Found in 3ms (ActiveRecord: 0.6ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------- PushType::ProfilesController::PUT #update::with valid user: test_0002_anonymous -------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-11@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-11@example.com' LIMIT 1 SQL (0.1ms) 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-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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>"Test user ABC"}} PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "f0935bcd-3e4a-4f02-abcb-56a85665b34c"]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 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 SQL (0.1ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/profile/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------- PushType::ProfilesController::PUT #update::with valid user: test_0001_anonymous -------------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-12@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-12@example.com' LIMIT 1 SQL (0.1ms) 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-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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>"Test user ABC"}} PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "770f6a0f-7010-4579-9ae9-a44fd94cfcf5"]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 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 SQL (0.1ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/profile/edit Completed 302 Found in 3ms (ActiveRecord: 0.5ms) PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 LIMIT 1 [["id", "770f6a0f-7010-4579-9ae9-a44fd94cfcf5"]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------ PushType::ConfirmationsController::GET #show::with valid confirmation token: test_0001_anonymous ------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-13@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-13@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afcc4cb0_26233fd5ed465bec8116e--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"ko2-zJbMG4gzev-E7FbR"} PushType::User Load (0.2ms) 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"]] 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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------------------ PushType::ConfirmationsController::GET #show::with valid confirmation token: test_0002_anonymous ------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-14@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-14@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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:

Confirm my account

----==_mimepart_55410afccf77a_26233fd5ed465bec81412--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"TAXKir-oZXwtyPcsdCjQ"} PushType::User Load (0.1ms) 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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-15@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-15@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afcd9f33_26233fd5ed465bec8171a--  (0.6ms) COMMIT  (0.1ms) BEGIN PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-16@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-16@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afce3494_26233fd5ed465bec82014--  (0.7ms) COMMIT  (0.1ms) BEGIN ------------------------------------------------------------------------------------ PushType::ConfirmationsController::PUT #update::with valid user: test_0001_anonymous ------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-17@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-17@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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-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:

Confirm my account

----==_mimepart_55410afcec6e2_26233fd5ed465bec8233f--  (0.2ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"nHkQvvkBLYt2uDWEzzbk", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.1ms) 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"]] PushType::User Exists (0.2ms) 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  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) 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: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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/ Completed 302 Found in 6ms (ActiveRecord: 1.0ms) PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 LIMIT 1 [["id", "cb224078-8fa3-494d-afc9-ac4a4f60bfa2"]]  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------------------------------ PushType::ConfirmationsController::PUT #update::with valid user: test_0002_anonymous ------------------------------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-18@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-18@example.com' LIMIT 1 PushType::User Load (0.1ms) 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"]] SQL (0.1ms) 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:

Confirm my account

----==_mimepart_55410afd2db3_26233fd5ed465bec826fd--  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ConfirmationsController#update as HTML Parameters: {"user"=>{"confirmation_token"=>"YjEoSFtGyYgAAwyaMR1t", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}} PushType::User Load (0.1ms) 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"]] PushType::User Exists (0.2ms) SELECT 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  (0.1ms) SAVEPOINT active_record_2 SQL (0.2ms) 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$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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2  (0.1ms) SAVEPOINT active_record_2 SQL (0.1ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Redirected to http://test.host/push_type/ Completed 302 Found in 6ms (ActiveRecord: 1.0ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------------------------- PushType::ProfilesController::PUT #update::with invalid user: test_0001_anonymous ---------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-19@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-19@example.com' LIMIT 1 SQL (0.1ms) 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-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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>""}} PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["id", "71d8612d-0f1e-4709-8d98-cea7afa5773d"]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 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  (0.1ms) 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)  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN --------------------------------------------------------------------------------- PushType::ProfilesController::PUT #update::with invalid user: test_0002_anonymous ---------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-20@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-20@example.com' LIMIT 1 SQL (0.1ms) 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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#update as HTML Parameters: {"user"=>{"name"=>""}} PushType::User Load (0.1ms) 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"]]  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) 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  (0.1ms) 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 (1.8ms) Completed 200 OK in 9ms (Views: 6.7ms | ActiveRecord: 0.5ms)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------ PushType::ProfilesController::GET #edit: test_0001_anonymous ------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.1ms) RELEASE SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-21@example.com' LIMIT 1 PushType::User Exists (0.1ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-21@example.com' LIMIT 1 SQL (0.2ms) 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-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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#edit as HTML PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN ------------------------------------------------------------ PushType::ProfilesController::GET #edit: test_0002_anonymous ------------------------------------------------------------  (0.0ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1  (0.1ms) SAVEPOINT active_record_2 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-22@example.com' LIMIT 1 PushType::User Exists (0.2ms) SELECT 1 AS one FROM "push_type_users" WHERE "push_type_users"."email" = 'joe-22@example.com' LIMIT 1 SQL (0.1ms) 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-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"]]  (0.1ms) RELEASE SAVEPOINT active_record_2 Processing by PushType::ProfilesController#edit as HTML PushType::User Load (0.1ms) SELECT "push_type_users".* FROM "push_type_users" WHERE "push_type_users"."id" = $1 ORDER BY "push_type_users"."name" ASC LIMIT 1 [["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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------- PushType::ConfirmationsController::GET #show::with invalid confirmation token: test_0001_anonymous --------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"invalid"} PushType::User Load (0.1ms) 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"]] PushType::User Load (0.1ms) 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"]] 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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK  (0.1ms) BEGIN -------------------------------------------------------------------------------------------------- PushType::ConfirmationsController::GET #show::with invalid confirmation token: test_0002_anonymous --------------------------------------------------------------------------------------------------  (0.1ms) SAVEPOINT active_record_1  (0.0ms) RELEASE SAVEPOINT active_record_1  (0.0ms) SAVEPOINT active_record_1 Processing by PushType::ConfirmationsController#show as HTML Parameters: {"confirmation_token"=>"invalid"} PushType::User Load (0.1ms) 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"]] PushType::User Load (0.1ms) 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"]] 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)  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1  (0.1ms) ROLLBACK