think_feel_do_dashboard 1.1.11 → 1.1.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4bf5728c5a9df450ae129c254a23c30f0ec281c2
4
- data.tar.gz: d012a44b1f4557932ea6cbf9af80e5d3a1231bcb
3
+ metadata.gz: 75b3f6765d060d1666e03a510f0711c1460b494f
4
+ data.tar.gz: d84938e2453a439aa8e3ef13152572c8520a2c13
5
5
  SHA512:
6
- metadata.gz: f43672ab1ae2d80a6a8aa71573565c0770103ca0f90a6217fca39198d2535874bc3ec9c42a40d68bc00ddc4139bddd00dfa861aeb921ee89f209f7c1838e1d9e
7
- data.tar.gz: 6a6bb8414e58b61c2233aef4d0559ffb9e28c0d5146b3d456eac0392395e192ed668b16de8a787f10a7793dc6e830566d9f330484d09ee253fcdcf77c915198c
6
+ metadata.gz: 8f62a9075eb1aeae3aa9c6b62e0c44170d66be856acab7b249d9a80c6c82069b6454ddccdb8b691e2044f012391f9499ef654a2ce0525fdce869e18285c00153
7
+ data.tar.gz: 716d5eb2b8603a625087edac24ec727c38d08495c3fc9986b89a1c239d704017ac50c0e9122101fbf79a5c2667f6ad8319e6082e3c1c3ebc21b9ccdd7ee30614
@@ -4,7 +4,8 @@ module ThinkFeelDoDashboard
4
4
  # Top level engine controller
5
5
  # inherits from host application's ApplicationController.
6
6
  class ApplicationController < ::ApplicationController
7
- include ThinkFeelDoDashboard::Concerns::BrowserDetective
7
+ include Concerns::BrowserDetective
8
+ include Concerns::InvalidAuthToken
8
9
 
9
10
  before_action :authenticate_user!, :detect_browser
10
11
  check_authorization
@@ -0,0 +1,20 @@
1
+ module ThinkFeelDoDashboard
2
+ module Concerns
3
+ # Rescues exception when authenticity token has expired
4
+ module InvalidAuthToken
5
+ extend ActiveSupport::Concern
6
+
7
+ included do
8
+ rescue_from ActionController::InvalidAuthenticityToken,
9
+ with: :invalid_auth_token_redirect
10
+ end
11
+
12
+ private
13
+
14
+ def invalid_auth_token_redirect
15
+ redirect_to root_path,
16
+ alert: "Your authenticity token expired. Please try again."
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,25 @@
1
+ {
2
+ "ignored_warnings": [
3
+ {
4
+ "warning_type": "File Access",
5
+ "warning_code": 16,
6
+ "fingerprint": "9549fb654ae55ba517ae6afb033c6fe4a731ddb1d74bd0fd1e39bb2253bbd141",
7
+ "message": "Parameter value used in file name",
8
+ "file": "app/controllers/think_feel_do_dashboard/reports_controller.rb",
9
+ "line": 17,
10
+ "link": "http://brakemanscanner.org/docs/warning_types/file_access/",
11
+ "code": "send_file((reporter.file_path(params[:id]) or {}), :type => \"text/csv\")",
12
+ "render_path": null,
13
+ "location": {
14
+ "type": "method",
15
+ "class": "ThinkFeelDoDashboard::ReportsController",
16
+ "method": "show"
17
+ },
18
+ "user_input": "params[:id]",
19
+ "confidence": "Weak",
20
+ "note": ""
21
+ }
22
+ ],
23
+ "updated": "2016-02-15 11:19:07 -0600",
24
+ "brakeman_version": "3.1.4"
25
+ }
@@ -1,4 +1,4 @@
1
1
  # Version number of engine
2
2
  module ThinkFeelDoDashboard
3
- VERSION = "1.1.11".freeze
3
+ VERSION = "1.1.12".freeze
4
4
  end
@@ -0,0 +1,28 @@
1
+ require "rails_helper"
2
+
3
+ module ThinkFeelDoDashboard
4
+ RSpec.describe ArmsController, type: :controller do
5
+ routes { Engine.routes }
6
+
7
+ describe "GET new" do
8
+ context "for unauthenticated requests" do
9
+ before { get :new }
10
+ it_behaves_like "a rejected user action"
11
+ end
12
+ end
13
+
14
+ describe "POST create" do
15
+ describe "when InvalidAuthenticityToken is raised" do
16
+ before do
17
+ allow(request.env["warden"])
18
+ .to receive(:authenticate!)
19
+ .and_raise ActionController::InvalidAuthenticityToken
20
+
21
+ post :create, arm: {}
22
+ end
23
+
24
+ it_behaves_like "an untrusted action"
25
+ end
26
+ end
27
+ end
28
+ end
@@ -371976,3 +371976,332 @@ Migrating to CreateParticipants (20141020185953)
371976
371976
  DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020185953_create_participants.rb:8)
371977
371977
   (21.6ms) CREATE TABLE "participants" ("id" serial primary key, "email" character varying DEFAULT '' NOT NULL, "phone_number" character varying, "study_id" character varying, "created_at" timestamp, "updated_at" timestamp) 
371978
371978
   (0.3ms) ROLLBACK
371979
+  (18.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
371980
+  (18.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
371981
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
371982
+ Migrating to CreateParticipants (20141020185953)
371983
+  (0.3ms) BEGIN
371984
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020185953_create_participants.rb:8)
371985
+  (22.1ms) CREATE TABLE "participants" ("id" serial primary key, "email" character varying DEFAULT '' NOT NULL, "phone_number" character varying, "study_id" character varying, "created_at" timestamp, "updated_at" timestamp) 
371986
+  (0.9ms) CREATE UNIQUE INDEX "index_participants_on_email" ON "participants" ("email")
371987
+  (0.7ms) CREATE UNIQUE INDEX "index_participants_on_phone_number" ON "participants" ("phone_number")
371988
+  (0.9ms) CREATE UNIQUE INDEX "index_participants_on_study_id" ON "participants" ("study_id")
371989
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020185953"]]
371990
+  (5.4ms) COMMIT
371991
+ Migrating to CreateMemberships (20141020190822)
371992
+  (5.4ms) BEGIN
371993
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020190822_create_memberships.rb:9)
371994
+  (7.4ms) CREATE TABLE "memberships" ("id" serial primary key, "group_id" integer NOT NULL, "participant_id" integer NOT NULL, "end_date" date, "start_date" date, "created_at" timestamp, "updated_at" timestamp)
371995
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020190822"]]
371996
+  (10.5ms) COMMIT
371997
+ Migrating to CreateCoachAssignments (20141020190824)
371998
+  (6.0ms) BEGIN
371999
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020190824_create_coach_assignments.rb:7)
372000
+  (9.0ms) CREATE TABLE "coach_assignments" ("id" serial primary key, "coach_id" integer NOT NULL, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
372001
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020190824"]]
372002
+  (5.0ms) COMMIT
372003
+ Migrating to CreateUsers (20141020191622)
372004
+  (11.6ms) BEGIN
372005
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020191622_create_users.rb:6)
372006
+  (13.6ms) CREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp, "updated_at" timestamp)
372007
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020191622"]]
372008
+  (0.5ms) COMMIT
372009
+ Migrating to CreateGroups (20141020191754)
372010
+  (11.6ms) BEGIN
372011
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141020191754_create_groups.rb:6)
372012
+  (13.3ms) CREATE TABLE "groups" ("id" serial primary key, "title" character varying, "created_at" timestamp, "updated_at" timestamp)
372013
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020191754"]]
372014
+  (0.5ms) COMMIT
372015
+ Migrating to AddColumnIsAdminToUsers (20141104135632)
372016
+  (5.4ms) BEGIN
372017
+  (21.0ms) ALTER TABLE "users" ADD "is_admin" boolean DEFAULT 'f' NOT NULL
372018
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141104135632"]]
372019
+  (1.3ms) COMMIT
372020
+ Migrating to CreateUserRoles (20141104141420)
372021
+  (0.1ms) BEGIN
372022
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141104141420_create_user_roles.rb:7)
372023
+  (20.5ms) CREATE TABLE "user_roles" ("id" serial primary key, "user_id" integer, "role_class_name" character varying, "created_at" timestamp, "updated_at" timestamp)
372024
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141104141420"]]
372025
+  (5.1ms) COMMIT
372026
+ Migrating to CreateThinkFeelDoDashboardModerators (20141105203408)
372027
+  (5.5ms) BEGIN
372028
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/db/migrate/20141105203408_create_think_feel_do_dashboard_moderators.rb:7)
372029
+  (13.1ms) CREATE TABLE "think_feel_do_dashboard_moderators" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
372030
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141105203408"]]
372031
+  (5.1ms) COMMIT
372032
+ Migrating to AddColumnDisplayNameToParticipants (20141106202954)
372033
+  (6.1ms) BEGIN
372034
+  (22.4ms) ALTER TABLE "participants" ADD "display_name" character varying DEFAULT '' NOT NULL
372035
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141106202954"]]
372036
+  (1.1ms) COMMIT
372037
+ Migrating to AddColumnContactPreferenceToParticipant (20141106211650)
372038
+  (0.2ms) BEGIN
372039
+  (26.8ms) ALTER TABLE "participants" ADD "contact_preference" character varying DEFAULT ''
372040
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141106211650"]]
372041
+  (1.1ms) COMMIT
372042
+ Migrating to AddColumnsToUser (20141107170701)
372043
+  (0.2ms) BEGIN
372044
+  (0.3ms) ALTER TABLE "users" ADD "password" character varying
372045
+  (0.2ms) ALTER TABLE "users" ADD "password_confirmation" character varying
372046
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141107170701"]]
372047
+  (5.9ms) COMMIT
372048
+ Migrating to AddColumnsPasswordAndPasswordConfirmationToParticipants (20141111140835)
372049
+  (0.1ms) BEGIN
372050
+  (0.3ms) ALTER TABLE "participants" ADD "password" character varying
372051
+  (0.2ms) ALTER TABLE "participants" ADD "password_confirmation" character varying
372052
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141111140835"]]
372053
+  (11.0ms) COMMIT
372054
+ Migrating to CreateArms (20141120202053)
372055
+  (0.2ms) BEGIN
372056
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141120202053_create_arms.rb:7)
372057
+  (15.1ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying DEFAULT '', "is_social" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)
372058
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141120202053"]]
372059
+  (5.3ms) COMMIT
372060
+ Migrating to AddArmIdToGroups (20141121201134)
372061
+  (6.4ms) BEGIN
372062
+  (0.4ms) ALTER TABLE "groups" ADD "arm_id" integer
372063
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141121201134"]]
372064
+  (5.9ms) COMMIT
372065
+ Migrating to AddDeviseToUsers (20141125225148)
372066
+  (0.1ms) BEGIN
372067
+  (19.3ms) ALTER TABLE "users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL
372068
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_token" character varying
372069
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_sent_at" timestamp
372070
+  (0.2ms) ALTER TABLE "users" ADD "remember_created_at" timestamp
372071
+  (7.4ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
372072
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_at" timestamp
372073
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_at" timestamp
372074
+  (0.3ms) ALTER TABLE "users" ADD "current_sign_in_ip" inet
372075
+  (0.3ms) ALTER TABLE "users" ADD "last_sign_in_ip" inet
372076
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
372077
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
372078
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141125225148"]]
372079
+  (1.3ms) COMMIT
372080
+ Migrating to CreateSlideshowAnchors (20141125230628)
372081
+  (0.2ms) BEGIN
372082
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141125230628_create_slideshow_anchors.rb:7)
372083
+  (8.5ms) CREATE TABLE "slideshow_anchors" ("id" serial primary key, "bit_core_slideshow_id" integer, "target_name" character varying, "created_at" timestamp, "updated_at" timestamp)
372084
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141125230628"]]
372085
+  (6.3ms) COMMIT
372086
+ Migrating to RemoveColumnsPasswordAndPasswordConfirmationFromUsers (20141126151510)
372087
+  (5.6ms) BEGIN
372088
+  (0.4ms) ALTER TABLE "users" DROP "password"
372089
+  (0.2ms) ALTER TABLE "users" DROP "password_confirmation"
372090
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141126151510"]]
372091
+  (11.5ms) COMMIT
372092
+ Migrating to AddDeviseToParticipants (20141203195016)
372093
+  (0.1ms) BEGIN
372094
+  (26.1ms) ALTER TABLE "participants" ADD "encrypted_password" character varying DEFAULT '' NOT NULL
372095
+  (0.2ms) ALTER TABLE "participants" ADD "reset_password_token" character varying
372096
+  (0.3ms) ALTER TABLE "participants" ADD "reset_password_sent_at" timestamp
372097
+  (0.2ms) ALTER TABLE "participants" ADD "remember_created_at" timestamp
372098
+  (5.4ms) ALTER TABLE "participants" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
372099
+  (0.2ms) ALTER TABLE "participants" ADD "current_sign_in_at" timestamp
372100
+  (0.2ms) ALTER TABLE "participants" ADD "last_sign_in_at" timestamp
372101
+  (0.2ms) ALTER TABLE "participants" ADD "current_sign_in_ip" inet
372102
+  (0.2ms) ALTER TABLE "participants" ADD "last_sign_in_ip" inet
372103
+  (0.8ms) CREATE UNIQUE INDEX "index_participants_on_reset_password_token" ON "participants" ("reset_password_token")
372104
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141203195016"]]
372105
+  (1.8ms) COMMIT
372106
+ Migrating to RemovePasswordFromParticipants (20141203201524)
372107
+  (0.2ms) BEGIN
372108
+  (0.3ms) ALTER TABLE "participants" DROP "password"
372109
+  (0.2ms) ALTER TABLE "participants" DROP "password_confirmation"
372110
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141203201524"]]
372111
+  (5.6ms) COMMIT
372112
+ Migrating to ChangeDisplayNameNotNullTrue (20141211143757)
372113
+  (0.2ms) BEGIN
372114
+  (0.3ms) ALTER TABLE "participants" ALTER "display_name" DROP NOT NULL
372115
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141211143757"]]
372116
+  (11.5ms) COMMIT
372117
+ Migrating to AddHasWozToArm (20141214203919)
372118
+  (0.1ms) BEGIN
372119
+  (15.3ms) ALTER TABLE "arms" ADD "has_woz" boolean DEFAULT 'f'
372120
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141214203919"]]
372121
+  (6.8ms) COMMIT
372122
+ Migrating to AddColumnModeratorIdToGroup (20141215203425)
372123
+  (0.2ms) BEGIN
372124
+  (0.4ms) ALTER TABLE "groups" ADD "moderator_id" integer
372125
+ Group Load (0.4ms) SELECT "groups".* FROM "groups"
372126
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141215203425"]]
372127
+  (6.2ms) COMMIT
372128
+ Migrating to AddIsAdminToParticipant (20141216165853)
372129
+  (0.3ms) BEGIN
372130
+  (0.6ms) ALTER TABLE "participants" ADD "is_admin" boolean
372131
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141216165853"]]
372132
+  (11.7ms) COMMIT
372133
+ Migrating to CreateSocialNetworkingProfiles (20141217180455)
372134
+  (0.1ms) BEGIN
372135
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141217180455_create_social_networking_profiles.rb:8)
372136
+  (15.2ms) CREATE TABLE "social_networking_profiles" ("id" serial primary key, "participant_id" integer, "icon_name" character varying, "active" boolean, "created_at" timestamp, "updated_at" timestamp)
372137
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141217180455"]]
372138
+  (11.7ms) COMMIT
372139
+ Migrating to CreateGroupReferenceToProfileQuestion (20141217200114)
372140
+  (6.0ms) BEGIN
372141
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141217200114_create_group_reference_to_profile_question.rb:7)
372142
+  (14.2ms) CREATE TABLE "social_networking_profile_questions" ("id" serial primary key, "group_id" integer, "question_text" text, "created_at" timestamp, "updated_at" timestamp)
372143
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141217200114"]]
372144
+  (2.8ms) COMMIT
372145
+ Migrating to DropThinkFeelDoDashboardModerator (20141219032108)
372146
+  (11.5ms) BEGIN
372147
+  (0.7ms) DROP TABLE "think_feel_do_dashboard_moderators"
372148
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141219032108"]]
372149
+  (5.9ms) COMMIT
372150
+ Migrating to CreateSocialNetworkingSharedItems (20141229160455)
372151
+  (0.1ms) BEGIN
372152
+ DEPRECATION WARNING: `#timestamps` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/db/migrate/20141229160455_create_social_networking_shared_items.rb:7)
372153
+  (7.8ms) CREATE TABLE "social_networking_shared_items" ("id" serial primary key, "participant_id" integer, "is_public" boolean, "created_at" timestamp, "updated_at" timestamp)
372154
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141229160455"]]
372155
+  (11.8ms) COMMIT
372156
+ Migrating to AddIsCompleteToMembership (20150127204928)
372157
+  (6.0ms) BEGIN
372158
+  (7.5ms) ALTER TABLE "memberships" ADD "is_complete" boolean DEFAULT 'f'
372159
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150127204928"]]
372160
+  (12.0ms) COMMIT
372161
+ Migrating to DropThinkFeelDoDashboardModerators (20150213215118)
372162
+  (0.2ms) BEGIN
372163
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150213215118"]]
372164
+  (5.8ms) COMMIT
372165
+ Migrating to AddCanMessageAfterMembershipCompleteToArms (20150410174157)
372166
+  (0.2ms) BEGIN
372167
+  (16.1ms) ALTER TABLE "arms" ADD "can_message_after_membership_complete" boolean DEFAULT 't' NOT NULL
372168
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410174157"]]
372169
+  (5.1ms) COMMIT
372170
+ Migrating to PopulateArmMessageFlag (20150410175659)
372171
+  (0.2ms) BEGIN
372172
+ Arm Load (0.4ms) SELECT "arms".* FROM "arms"
372173
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410175659"]]
372174
+  (5.5ms) COMMIT
372175
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
372176
+  (2.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
372177
+ FROM pg_constraint c
372178
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372179
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372180
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372181
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372182
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372183
+ WHERE c.contype = 'f'
372184
+ AND t1.relname = 'arms'
372185
+ AND t3.nspname = ANY (current_schemas(false))
372186
+ ORDER BY c.conname
372187
+ 
372188
+  (1.6ms) 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
372189
+ FROM pg_constraint c
372190
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372191
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372192
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372193
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372194
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372195
+ WHERE c.contype = 'f'
372196
+ AND t1.relname = 'coach_assignments'
372197
+ AND t3.nspname = ANY (current_schemas(false))
372198
+ ORDER BY c.conname
372199
+
372200
+  (2.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
372201
+ FROM pg_constraint c
372202
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372203
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372204
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372205
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372206
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372207
+ WHERE c.contype = 'f'
372208
+ AND t1.relname = 'groups'
372209
+ AND t3.nspname = ANY (current_schemas(false))
372210
+ ORDER BY c.conname
372211
+ 
372212
+  (3.4ms) 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
372213
+ FROM pg_constraint c
372214
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372215
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372216
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372217
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372218
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372219
+ WHERE c.contype = 'f'
372220
+ AND t1.relname = 'memberships'
372221
+ AND t3.nspname = ANY (current_schemas(false))
372222
+ ORDER BY c.conname
372223
+
372224
+  (2.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
372225
+ FROM pg_constraint c
372226
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372227
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372228
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372229
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372230
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372231
+ WHERE c.contype = 'f'
372232
+ AND t1.relname = 'participants'
372233
+ AND t3.nspname = ANY (current_schemas(false))
372234
+ ORDER BY c.conname
372235
+ 
372236
+  (2.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
372237
+ FROM pg_constraint c
372238
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372239
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372240
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372241
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372242
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372243
+ WHERE c.contype = 'f'
372244
+ AND t1.relname = 'slideshow_anchors'
372245
+ AND t3.nspname = ANY (current_schemas(false))
372246
+ ORDER BY c.conname
372247
+
372248
+  (1.8ms) 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
372249
+ FROM pg_constraint c
372250
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372251
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372252
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372253
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372254
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372255
+ WHERE c.contype = 'f'
372256
+ AND t1.relname = 'social_networking_profile_questions'
372257
+ AND t3.nspname = ANY (current_schemas(false))
372258
+ ORDER BY c.conname
372259
+ 
372260
+  (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
372261
+ FROM pg_constraint c
372262
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372263
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372264
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372265
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372266
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372267
+ WHERE c.contype = 'f'
372268
+ AND t1.relname = 'social_networking_profiles'
372269
+ AND t3.nspname = ANY (current_schemas(false))
372270
+ ORDER BY c.conname
372271
+
372272
+  (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
372273
+ FROM pg_constraint c
372274
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372275
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372276
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372277
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372278
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372279
+ WHERE c.contype = 'f'
372280
+ AND t1.relname = 'social_networking_shared_items'
372281
+ AND t3.nspname = ANY (current_schemas(false))
372282
+ ORDER BY c.conname
372283
+ 
372284
+  (1.8ms) 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
372285
+ FROM pg_constraint c
372286
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372287
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372288
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372289
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372290
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372291
+ WHERE c.contype = 'f'
372292
+ AND t1.relname = 'user_roles'
372293
+ AND t3.nspname = ANY (current_schemas(false))
372294
+ ORDER BY c.conname
372295
+
372296
+  (3.8ms) 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
372297
+ FROM pg_constraint c
372298
+ JOIN pg_class t1 ON c.conrelid = t1.oid
372299
+ JOIN pg_class t2 ON c.confrelid = t2.oid
372300
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
372301
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
372302
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
372303
+ WHERE c.contype = 'f'
372304
+ AND t1.relname = 'users'
372305
+ AND t3.nspname = ANY (current_schemas(false))
372306
+ ORDER BY c.conname
372307
+ 
@@ -3254365,3 +3254365,1036 @@ Redirected to http://test.host/think_feel_do_dashboard/
3254365
3254365
  Filter chain halted as :set_group rendered or redirected
3254366
3254366
  Completed 302 Found in 5ms (ActiveRecord: 0.4ms)
3254367
3254367
   (0.3ms) ROLLBACK
3254368
+  (0.2ms) BEGIN
3254369
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254370
+ Completed 401 Unauthorized in 15ms (ActiveRecord: 0.0ms)
3254371
+ Rendered text template (0.1ms)
3254372
+  (0.2ms) ROLLBACK
3254373
+  (0.3ms) BEGIN
3254374
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254375
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254376
+ Rendered text template (0.1ms)
3254377
+  (0.2ms) ROLLBACK
3254378
+  (0.2ms) BEGIN
3254379
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254380
+ Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
3254381
+ Rendered text template (0.1ms)
3254382
+  (0.4ms) ROLLBACK
3254383
+  (0.2ms) BEGIN
3254384
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254385
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254386
+ Rendered text template (0.3ms)
3254387
+  (0.2ms) ROLLBACK
3254388
+  (0.2ms) BEGIN
3254389
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254390
+ Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
3254391
+ Rendered text template (0.1ms)
3254392
+  (0.3ms) ROLLBACK
3254393
+  (0.2ms) BEGIN
3254394
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254395
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
3254396
+ Rendered text template (0.1ms)
3254397
+  (0.4ms) ROLLBACK
3254398
+  (0.2ms) BEGIN
3254399
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254400
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3254401
+ Rendered text template (0.1ms)
3254402
+  (0.3ms) ROLLBACK
3254403
+  (0.1ms) BEGIN
3254404
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254405
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254406
+ Rendered text template (0.3ms)
3254407
+  (0.2ms) ROLLBACK
3254408
+  (0.4ms) BEGIN
3254409
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254410
+ Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
3254411
+ Rendered text template (0.1ms)
3254412
+  (0.2ms) ROLLBACK
3254413
+  (0.2ms) BEGIN
3254414
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254415
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254416
+ Rendered text template (0.2ms)
3254417
+  (0.4ms) ROLLBACK
3254418
+  (0.2ms) BEGIN
3254419
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254420
+ Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
3254421
+ Rendered text template (0.1ms)
3254422
+  (0.2ms) ROLLBACK
3254423
+  (0.4ms) BEGIN
3254424
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254425
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254426
+ Rendered text template (0.2ms)
3254427
+  (0.2ms) ROLLBACK
3254428
+  (0.1ms) BEGIN
3254429
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254430
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3254431
+ Rendered text template (0.1ms)
3254432
+  (0.2ms) ROLLBACK
3254433
+  (0.3ms) BEGIN
3254434
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254435
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254436
+ Rendered text template (0.1ms)
3254437
+  (0.2ms) ROLLBACK
3254438
+  (0.4ms) BEGIN
3254439
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254440
+ Completed 401 Unauthorized in 16ms (ActiveRecord: 0.0ms)
3254441
+ Rendered text template (0.1ms)
3254442
+  (0.2ms) ROLLBACK
3254443
+  (0.1ms) BEGIN
3254444
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254445
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254446
+ Rendered text template (0.1ms)
3254447
+  (0.3ms) ROLLBACK
3254448
+  (0.3ms) BEGIN
3254449
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254450
+ Rendered /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/app/views/think_feel_do_dashboard/arms/new.html.erb within layouts/application (0.8ms)
3254451
+ Completed 500 Internal Server Error in 26ms (Views: 19.8ms | ActiveRecord: 0.0ms)
3254452
+  (0.3ms) ROLLBACK
3254453
+  (0.2ms) BEGIN
3254454
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254455
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3254456
+ Rendered text template (0.1ms)
3254457
+  (0.2ms) ROLLBACK
3254458
+  (0.3ms) BEGIN
3254459
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254460
+ Redirected to http://test.host/think_feel_do_dashboard/
3254461
+ Completed 302 Found in 89ms (ActiveRecord: 4.4ms)
3254462
+  (0.3ms) ROLLBACK
3254463
+  (0.3ms) BEGIN
3254464
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254465
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3254466
+ Rendered text template (0.1ms)
3254467
+  (0.2ms) ROLLBACK
3254468
+  (0.2ms) BEGIN
3254469
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254470
+ Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
3254471
+ Rendered text template (0.2ms)
3254472
+  (0.3ms) ROLLBACK
3254473
+  (0.2ms) BEGIN
3254474
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254475
+ Redirected to http://test.host/
3254476
+ Completed 302 Found in 15ms (ActiveRecord: 0.0ms)
3254477
+  (0.3ms) ROLLBACK
3254478
+  (0.3ms) BEGIN
3254479
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254480
+ Completed 401 Unauthorized in 15ms (ActiveRecord: 0.0ms)
3254481
+ Rendered text template (0.1ms)
3254482
+  (0.2ms) ROLLBACK
3254483
+  (0.1ms) BEGIN
3254484
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254485
+ Redirected to http://test.host/
3254486
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
3254487
+  (0.4ms) ROLLBACK
3254488
+  (0.2ms) BEGIN
3254489
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254490
+ Redirected to http://test.host/
3254491
+ Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
3254492
+  (0.2ms) ROLLBACK
3254493
+  (0.1ms) BEGIN
3254494
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254495
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3254496
+ Rendered text template (0.1ms)
3254497
+  (0.2ms) ROLLBACK
3254498
+  (0.2ms) BEGIN
3254499
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254500
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3254501
+ Rendered text template (0.1ms)
3254502
+  (0.2ms) ROLLBACK
3254503
+  (0.1ms) BEGIN
3254504
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254505
+ Redirected to http://test.host/
3254506
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
3254507
+  (0.4ms) ROLLBACK
3254508
+  (0.1ms) BEGIN
3254509
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254510
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3254511
+ Rendered text template (0.1ms)
3254512
+  (0.2ms) ROLLBACK
3254513
+  (0.1ms) BEGIN
3254514
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254515
+ Redirected to http://test.host/
3254516
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
3254517
+  (0.2ms) ROLLBACK
3254518
+  (0.2ms) BEGIN
3254519
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254520
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3254521
+ Rendered text template (0.1ms)
3254522
+  (0.2ms) ROLLBACK
3254523
+  (0.1ms) BEGIN
3254524
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254525
+ Redirected to http://test.host/
3254526
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
3254527
+  (0.2ms) ROLLBACK
3254528
+  (0.2ms) BEGIN
3254529
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254530
+ Redirected to http://test.host/
3254531
+ Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
3254532
+  (0.2ms) ROLLBACK
3254533
+  (0.1ms) BEGIN
3254534
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254535
+ Completed 401 Unauthorized in 5ms (ActiveRecord: 0.0ms)
3254536
+ Rendered text template (0.3ms)
3254537
+  (0.2ms) ROLLBACK
3254538
+  (0.1ms) BEGIN
3254539
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254540
+ Redirected to http://test.host/
3254541
+ Completed 302 Found in 18ms (ActiveRecord: 0.0ms)
3254542
+  (0.3ms) ROLLBACK
3254543
+  (0.2ms) BEGIN
3254544
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254545
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3254546
+ Rendered text template (0.1ms)
3254547
+  (0.2ms) ROLLBACK
3254548
+  (0.2ms) BEGIN
3254549
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254550
+ Redirected to http://test.host/
3254551
+ Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
3254552
+  (0.4ms) ROLLBACK
3254553
+  (0.3ms) BEGIN
3254554
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254555
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3254556
+ Rendered text template (0.1ms)
3254557
+  (0.2ms) ROLLBACK
3254558
+  (0.2ms) BEGIN
3254559
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254560
+ Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
3254561
+ Rendered text template (0.1ms)
3254562
+  (0.2ms) ROLLBACK
3254563
+  (0.1ms) BEGIN
3254564
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254565
+ Redirected to http://test.host/
3254566
+ Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
3254567
+  (0.4ms) ROLLBACK
3254568
+  (0.2ms) BEGIN
3254569
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254570
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3254571
+ Rendered text template (0.1ms)
3254572
+  (0.2ms) ROLLBACK
3254573
+  (0.1ms) BEGIN
3254574
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254575
+ Redirected to http://test.host/
3254576
+ Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
3254577
+  (0.2ms) ROLLBACK
3254578
+  (0.2ms) BEGIN
3254579
+  (0.5ms) ROLLBACK
3254580
+  (0.1ms) BEGIN
3254581
+  (0.3ms) ROLLBACK
3254582
+  (19.3ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
3254583
+  (18.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3254584
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3254585
+ Migrating to CreateParticipants (20141020185953)
3254586
+  (0.2ms) BEGIN
3254587
+  (24.4ms) CREATE TABLE "participants" ("id" serial primary key, "email" character varying DEFAULT '' NOT NULL, "phone_number" character varying, "study_id" character varying, "created_at" timestamp, "updated_at" timestamp) 
3254588
+  (0.9ms) CREATE UNIQUE INDEX "index_participants_on_email" ON "participants" ("email")
3254589
+  (0.8ms) CREATE UNIQUE INDEX "index_participants_on_phone_number" ON "participants" ("phone_number")
3254590
+  (0.8ms) CREATE UNIQUE INDEX "index_participants_on_study_id" ON "participants" ("study_id")
3254591
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020185953"]]
3254592
+  (6.4ms) COMMIT
3254593
+ Migrating to CreateMemberships (20141020190822)
3254594
+  (5.6ms) BEGIN
3254595
+  (7.6ms) CREATE TABLE "memberships" ("id" serial primary key, "group_id" integer NOT NULL, "participant_id" integer NOT NULL, "end_date" date, "start_date" date, "created_at" timestamp, "updated_at" timestamp)
3254596
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020190822"]]
3254597
+  (10.6ms) COMMIT
3254598
+ Migrating to CreateCoachAssignments (20141020190824)
3254599
+  (5.9ms) BEGIN
3254600
+  (7.2ms) CREATE TABLE "coach_assignments" ("id" serial primary key, "coach_id" integer NOT NULL, "participant_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
3254601
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020190824"]]
3254602
+  (10.4ms) COMMIT
3254603
+ Migrating to CreateUsers (20141020191622)
3254604
+  (5.9ms) BEGIN
3254605
+  (19.1ms) CREATE TABLE "users" ("id" serial primary key, "email" character varying, "created_at" timestamp, "updated_at" timestamp)
3254606
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020191622"]]
3254607
+  (0.4ms) COMMIT
3254608
+ Migrating to CreateGroups (20141020191754)
3254609
+  (5.8ms) BEGIN
3254610
+  (18.4ms) CREATE TABLE "groups" ("id" serial primary key, "title" character varying, "created_at" timestamp, "updated_at" timestamp)
3254611
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141020191754"]]
3254612
+  (0.5ms) COMMIT
3254613
+ Migrating to AddColumnIsAdminToUsers (20141104135632)
3254614
+  (5.8ms) BEGIN
3254615
+  (15.0ms) ALTER TABLE "users" ADD "is_admin" boolean DEFAULT 'f' NOT NULL
3254616
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141104135632"]]
3254617
+  (2.2ms) COMMIT
3254618
+ Migrating to CreateUserRoles (20141104141420)
3254619
+  (0.1ms) BEGIN
3254620
+  (19.6ms) CREATE TABLE "user_roles" ("id" serial primary key, "user_id" integer, "role_class_name" character varying, "created_at" timestamp, "updated_at" timestamp)
3254621
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141104141420"]]
3254622
+  (4.8ms) COMMIT
3254623
+ Migrating to CreateThinkFeelDoDashboardModerators (20141105203408)
3254624
+  (5.7ms) BEGIN
3254625
+  (13.9ms) CREATE TABLE "think_feel_do_dashboard_moderators" ("id" serial primary key, "group_id" integer NOT NULL, "user_id" integer NOT NULL, "created_at" timestamp, "updated_at" timestamp)
3254626
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141105203408"]]
3254627
+  (5.2ms) COMMIT
3254628
+ Migrating to AddColumnDisplayNameToParticipants (20141106202954)
3254629
+  (5.9ms) BEGIN
3254630
+  (20.5ms) ALTER TABLE "participants" ADD "display_name" character varying DEFAULT '' NOT NULL
3254631
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141106202954"]]
3254632
+  (1.1ms) COMMIT
3254633
+ Migrating to AddColumnContactPreferenceToParticipant (20141106211650)
3254634
+  (0.1ms) BEGIN
3254635
+  (50.3ms) ALTER TABLE "participants" ADD "contact_preference" character varying DEFAULT ''
3254636
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141106211650"]]
3254637
+  (1.2ms) COMMIT
3254638
+ Migrating to AddColumnsToUser (20141107170701)
3254639
+  (0.2ms) BEGIN
3254640
+  (0.3ms) ALTER TABLE "users" ADD "password" character varying
3254641
+  (0.3ms) ALTER TABLE "users" ADD "password_confirmation" character varying
3254642
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141107170701"]]
3254643
+  (5.5ms) COMMIT
3254644
+ Migrating to AddColumnsPasswordAndPasswordConfirmationToParticipants (20141111140835)
3254645
+  (0.2ms) BEGIN
3254646
+  (0.4ms) ALTER TABLE "participants" ADD "password" character varying
3254647
+  (0.3ms) ALTER TABLE "participants" ADD "password_confirmation" character varying
3254648
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141111140835"]]
3254649
+  (5.6ms) COMMIT
3254650
+ Migrating to CreateArms (20141120202053)
3254651
+  (0.1ms) BEGIN
3254652
+  (20.0ms) CREATE TABLE "arms" ("id" serial primary key, "title" character varying DEFAULT '', "is_social" boolean DEFAULT 'f', "created_at" timestamp, "updated_at" timestamp)
3254653
+ SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141120202053"]]
3254654
+  (5.3ms) COMMIT
3254655
+ Migrating to AddArmIdToGroups (20141121201134)
3254656
+  (5.7ms) BEGIN
3254657
+  (0.3ms) ALTER TABLE "groups" ADD "arm_id" integer
3254658
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141121201134"]]
3254659
+  (11.7ms) COMMIT
3254660
+ Migrating to AddDeviseToUsers (20141125225148)
3254661
+  (0.1ms) BEGIN
3254662
+  (14.7ms) ALTER TABLE "users" ADD "encrypted_password" character varying DEFAULT '' NOT NULL
3254663
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_token" character varying
3254664
+  (0.2ms) ALTER TABLE "users" ADD "reset_password_sent_at" timestamp
3254665
+  (0.2ms) ALTER TABLE "users" ADD "remember_created_at" timestamp
3254666
+  (9.0ms) ALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
3254667
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_at" timestamp
3254668
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_at" timestamp
3254669
+  (0.2ms) ALTER TABLE "users" ADD "current_sign_in_ip" inet
3254670
+  (0.2ms) ALTER TABLE "users" ADD "last_sign_in_ip" inet
3254671
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
3254672
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
3254673
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141125225148"]]
3254674
+  (1.4ms) COMMIT
3254675
+ Migrating to CreateSlideshowAnchors (20141125230628)
3254676
+  (0.2ms) BEGIN
3254677
+  (20.3ms) CREATE TABLE "slideshow_anchors" ("id" serial primary key, "bit_core_slideshow_id" integer, "target_name" character varying, "created_at" timestamp, "updated_at" timestamp)
3254678
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141125230628"]]
3254679
+  (5.3ms) COMMIT
3254680
+ Migrating to RemoveColumnsPasswordAndPasswordConfirmationFromUsers (20141126151510)
3254681
+  (5.9ms) BEGIN
3254682
+  (0.4ms) ALTER TABLE "users" DROP "password"
3254683
+  (0.2ms) ALTER TABLE "users" DROP "password_confirmation"
3254684
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141126151510"]]
3254685
+  (11.4ms) COMMIT
3254686
+ Migrating to AddDeviseToParticipants (20141203195016)
3254687
+  (0.1ms) BEGIN
3254688
+  (37.3ms) ALTER TABLE "participants" ADD "encrypted_password" character varying DEFAULT '' NOT NULL
3254689
+  (0.2ms) ALTER TABLE "participants" ADD "reset_password_token" character varying
3254690
+  (0.3ms) ALTER TABLE "participants" ADD "reset_password_sent_at" timestamp
3254691
+  (0.2ms) ALTER TABLE "participants" ADD "remember_created_at" timestamp
3254692
+  (16.3ms) ALTER TABLE "participants" ADD "sign_in_count" integer DEFAULT 0 NOT NULL
3254693
+  (0.2ms) ALTER TABLE "participants" ADD "current_sign_in_at" timestamp
3254694
+  (0.2ms) ALTER TABLE "participants" ADD "last_sign_in_at" timestamp
3254695
+  (0.2ms) ALTER TABLE "participants" ADD "current_sign_in_ip" inet
3254696
+  (0.2ms) ALTER TABLE "participants" ADD "last_sign_in_ip" inet
3254697
+  (1.0ms) CREATE UNIQUE INDEX "index_participants_on_reset_password_token" ON "participants" ("reset_password_token")
3254698
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141203195016"]]
3254699
+  (1.9ms) COMMIT
3254700
+ Migrating to RemovePasswordFromParticipants (20141203201524)
3254701
+  (0.2ms) BEGIN
3254702
+  (0.3ms) ALTER TABLE "participants" DROP "password"
3254703
+  (0.3ms) ALTER TABLE "participants" DROP "password_confirmation"
3254704
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141203201524"]]
3254705
+  (6.3ms) COMMIT
3254706
+ Migrating to ChangeDisplayNameNotNullTrue (20141211143757)
3254707
+  (0.3ms) BEGIN
3254708
+  (0.6ms) ALTER TABLE "participants" ALTER "display_name" DROP NOT NULL
3254709
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141211143757"]]
3254710
+  (11.8ms) COMMIT
3254711
+ Migrating to AddHasWozToArm (20141214203919)
3254712
+  (0.3ms) BEGIN
3254713
+  (15.5ms) ALTER TABLE "arms" ADD "has_woz" boolean DEFAULT 'f'
3254714
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141214203919"]]
3254715
+  (5.9ms) COMMIT
3254716
+ Migrating to AddColumnModeratorIdToGroup (20141215203425)
3254717
+  (0.2ms) BEGIN
3254718
+  (0.3ms) ALTER TABLE "groups" ADD "moderator_id" integer
3254719
+ Group Load (0.4ms) SELECT "groups".* FROM "groups"
3254720
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141215203425"]]
3254721
+  (5.5ms) COMMIT
3254722
+ Migrating to AddIsAdminToParticipant (20141216165853)
3254723
+  (0.1ms) BEGIN
3254724
+  (0.3ms) ALTER TABLE "participants" ADD "is_admin" boolean
3254725
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141216165853"]]
3254726
+  (11.6ms) COMMIT
3254727
+ Migrating to CreateSocialNetworkingProfiles (20141217180455)
3254728
+  (0.1ms) BEGIN
3254729
+  (14.0ms) CREATE TABLE "social_networking_profiles" ("id" serial primary key, "participant_id" integer, "icon_name" character varying, "active" boolean, "created_at" timestamp, "updated_at" timestamp)
3254730
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141217180455"]]
3254731
+  (9.2ms) COMMIT
3254732
+ Migrating to CreateGroupReferenceToProfileQuestion (20141217200114)
3254733
+  (5.3ms) BEGIN
3254734
+  (19.0ms) CREATE TABLE "social_networking_profile_questions" ("id" serial primary key, "group_id" integer, "question_text" text, "created_at" timestamp, "updated_at" timestamp)
3254735
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141217200114"]]
3254736
+  (0.4ms) COMMIT
3254737
+ Migrating to DropThinkFeelDoDashboardModerator (20141219032108)
3254738
+  (5.7ms) BEGIN
3254739
+  (0.7ms) DROP TABLE "think_feel_do_dashboard_moderators"
3254740
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141219032108"]]
3254741
+  (6.1ms) COMMIT
3254742
+ Migrating to CreateSocialNetworkingSharedItems (20141229160455)
3254743
+  (0.1ms) BEGIN
3254744
+  (14.3ms) CREATE TABLE "social_networking_shared_items" ("id" serial primary key, "participant_id" integer, "is_public" boolean, "created_at" timestamp, "updated_at" timestamp)
3254745
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20141229160455"]]
3254746
+  (6.0ms) COMMIT
3254747
+ Migrating to AddIsCompleteToMembership (20150127204928)
3254748
+  (5.6ms) BEGIN
3254749
+  (13.5ms) ALTER TABLE "memberships" ADD "is_complete" boolean DEFAULT 'f'
3254750
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150127204928"]]
3254751
+  (5.8ms) COMMIT
3254752
+ Migrating to DropThinkFeelDoDashboardModerators (20150213215118)
3254753
+  (0.3ms) BEGIN
3254754
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150213215118"]]
3254755
+  (6.3ms) COMMIT
3254756
+ Migrating to AddCanMessageAfterMembershipCompleteToArms (20150410174157)
3254757
+  (0.1ms) BEGIN
3254758
+  (21.0ms) ALTER TABLE "arms" ADD "can_message_after_membership_complete" boolean DEFAULT 't' NOT NULL
3254759
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410174157"]]
3254760
+  (1.0ms) COMMIT
3254761
+ Migrating to PopulateArmMessageFlag (20150410175659)
3254762
+  (0.1ms) BEGIN
3254763
+ Arm Load (0.5ms) SELECT "arms".* FROM "arms"
3254764
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20150410175659"]]
3254765
+  (11.7ms) COMMIT
3254766
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3254767
+  (3.6ms) 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
3254768
+ FROM pg_constraint c
3254769
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254770
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254771
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254772
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254773
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254774
+ WHERE c.contype = 'f'
3254775
+ AND t1.relname = 'arms'
3254776
+ AND t3.nspname = ANY (current_schemas(false))
3254777
+ ORDER BY c.conname
3254778
+ 
3254779
+  (1.9ms) 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
3254780
+ FROM pg_constraint c
3254781
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254782
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254783
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254784
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254785
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254786
+ WHERE c.contype = 'f'
3254787
+ AND t1.relname = 'coach_assignments'
3254788
+ AND t3.nspname = ANY (current_schemas(false))
3254789
+ ORDER BY c.conname
3254790
+
3254791
+  (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
3254792
+ FROM pg_constraint c
3254793
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254794
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254795
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254796
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254797
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254798
+ WHERE c.contype = 'f'
3254799
+ AND t1.relname = 'groups'
3254800
+ AND t3.nspname = ANY (current_schemas(false))
3254801
+ ORDER BY c.conname
3254802
+ 
3254803
+  (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
3254804
+ FROM pg_constraint c
3254805
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254806
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254807
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254808
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254809
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254810
+ WHERE c.contype = 'f'
3254811
+ AND t1.relname = 'memberships'
3254812
+ AND t3.nspname = ANY (current_schemas(false))
3254813
+ ORDER BY c.conname
3254814
+
3254815
+  (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
3254816
+ FROM pg_constraint c
3254817
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254818
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254819
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254820
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254821
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254822
+ WHERE c.contype = 'f'
3254823
+ AND t1.relname = 'participants'
3254824
+ AND t3.nspname = ANY (current_schemas(false))
3254825
+ ORDER BY c.conname
3254826
+ 
3254827
+  (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
3254828
+ FROM pg_constraint c
3254829
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254830
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254831
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254832
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254833
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254834
+ WHERE c.contype = 'f'
3254835
+ AND t1.relname = 'slideshow_anchors'
3254836
+ AND t3.nspname = ANY (current_schemas(false))
3254837
+ ORDER BY c.conname
3254838
+
3254839
+  (1.8ms) 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
3254840
+ FROM pg_constraint c
3254841
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254842
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254843
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254844
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254845
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254846
+ WHERE c.contype = 'f'
3254847
+ AND t1.relname = 'social_networking_profile_questions'
3254848
+ AND t3.nspname = ANY (current_schemas(false))
3254849
+ ORDER BY c.conname
3254850
+ 
3254851
+  (2.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
3254852
+ FROM pg_constraint c
3254853
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254854
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254855
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254856
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254857
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254858
+ WHERE c.contype = 'f'
3254859
+ AND t1.relname = 'social_networking_profiles'
3254860
+ AND t3.nspname = ANY (current_schemas(false))
3254861
+ ORDER BY c.conname
3254862
+
3254863
+  (2.0ms) 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
3254864
+ FROM pg_constraint c
3254865
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254866
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254867
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254868
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254869
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254870
+ WHERE c.contype = 'f'
3254871
+ AND t1.relname = 'social_networking_shared_items'
3254872
+ AND t3.nspname = ANY (current_schemas(false))
3254873
+ ORDER BY c.conname
3254874
+ 
3254875
+  (2.1ms) 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
3254876
+ FROM pg_constraint c
3254877
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254878
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254879
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254880
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254881
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254882
+ WHERE c.contype = 'f'
3254883
+ AND t1.relname = 'user_roles'
3254884
+ AND t3.nspname = ANY (current_schemas(false))
3254885
+ ORDER BY c.conname
3254886
+
3254887
+  (2.1ms) 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
3254888
+ FROM pg_constraint c
3254889
+ JOIN pg_class t1 ON c.conrelid = t1.oid
3254890
+ JOIN pg_class t2 ON c.confrelid = t2.oid
3254891
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
3254892
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
3254893
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
3254894
+ WHERE c.contype = 'f'
3254895
+ AND t1.relname = 'users'
3254896
+ AND t3.nspname = ANY (current_schemas(false))
3254897
+ ORDER BY c.conname
3254898
+ 
3254899
+  (0.2ms) BEGIN
3254900
+ Processing by ThinkFeelDoDashboard::ReportsController#show as CSV
3254901
+ Parameters: {"id"=>"reports"}
3254902
+ Sent file /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/reports/{}.csv (0.3ms)
3254903
+ Redirected to http://test.host/think_feel_do_dashboard/reports
3254904
+ Completed 302 Found in 35ms (ActiveRecord: 0.0ms)
3254905
+  (0.3ms) ROLLBACK
3254906
+  (0.2ms) BEGIN
3254907
+ Processing by ThinkFeelDoDashboard::ReportsController#show as CSV
3254908
+ Parameters: {"id"=>"reports"}
3254909
+ Sent file /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/reports/{}.csv (0.2ms)
3254910
+ Redirected to http://test.host/think_feel_do_dashboard/reports
3254911
+ Completed 302 Found in 33ms (ActiveRecord: 0.0ms)
3254912
+  (0.3ms) ROLLBACK
3254913
+  (0.4ms) BEGIN
3254914
+ Processing by ThinkFeelDoDashboard::ReportsController#show as CSV
3254915
+ Parameters: {"id"=>"reports"}
3254916
+ Sent file /Users/usabilitymonitor/Desktop/Github/think_feel_do_dashboard/spec/dummy/reports/{}.csv (0.2ms)
3254917
+ Redirected to http://test.host/think_feel_do_dashboard/reports
3254918
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
3254919
+  (0.2ms) ROLLBACK
3254920
+  (0.2ms) BEGIN
3254921
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254922
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3254923
+ Rendered text template (0.1ms)
3254924
+  (0.2ms) ROLLBACK
3254925
+  (0.2ms) BEGIN
3254926
+ Processing by ThinkFeelDoDashboard::ArmsController#update as HTML
3254927
+ Parameters: {"id"=>"1"}
3254928
+ Redirected to http://test.host/
3254929
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3254930
+  (0.2ms) ROLLBACK
3254931
+  (0.1ms) BEGIN
3254932
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254933
+ Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
3254934
+ Rendered text template (0.1ms)
3254935
+  (0.2ms) ROLLBACK
3254936
+  (0.1ms) BEGIN
3254937
+ Processing by ThinkFeelDoDashboard::ArmsController#update as HTML
3254938
+ Parameters: {"id"=>"1"}
3254939
+ Redirected to http://test.host/
3254940
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3254941
+  (0.2ms) ROLLBACK
3254942
+  (0.1ms) BEGIN
3254943
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254944
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3254945
+ Rendered text template (0.1ms)
3254946
+  (0.2ms) ROLLBACK
3254947
+  (0.1ms) BEGIN
3254948
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254949
+ Redirected to http://test.host/
3254950
+ Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
3254951
+  (0.2ms) ROLLBACK
3254952
+  (0.1ms) BEGIN
3254953
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254954
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3254955
+ Rendered text template (0.1ms)
3254956
+  (0.3ms) ROLLBACK
3254957
+  (0.2ms) BEGIN
3254958
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254959
+ Redirected to http://test.host/
3254960
+ Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
3254961
+  (0.3ms) ROLLBACK
3254962
+  (0.1ms) BEGIN
3254963
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254964
+ Redirected to http://test.host/
3254965
+ Completed 302 Found in 14ms (ActiveRecord: 0.0ms)
3254966
+  (0.3ms) ROLLBACK
3254967
+  (0.1ms) BEGIN
3254968
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254969
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3254970
+ Rendered text template (0.1ms)
3254971
+  (0.2ms) ROLLBACK
3254972
+  (0.2ms) BEGIN
3254973
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254974
+ Redirected to http://test.host/think_feel_do_dashboard/
3254975
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
3254976
+  (0.2ms) ROLLBACK
3254977
+  (0.1ms) BEGIN
3254978
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254979
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3254980
+ Rendered text template (0.1ms)
3254981
+  (0.2ms) ROLLBACK
3254982
+  (0.2ms) BEGIN
3254983
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254984
+ Redirected to http://test.host/think_feel_do_dashboard/
3254985
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
3254986
+  (0.4ms) ROLLBACK
3254987
+  (0.2ms) BEGIN
3254988
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254989
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3254990
+ Rendered text template (0.3ms)
3254991
+  (0.2ms) ROLLBACK
3254992
+  (0.3ms) BEGIN
3254993
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254994
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3254995
+ Rendered text template (0.1ms)
3254996
+  (0.2ms) ROLLBACK
3254997
+  (0.2ms) BEGIN
3254998
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3254999
+ Redirected to http://test.host/think_feel_do_dashboard/
3255000
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255001
+  (0.2ms) ROLLBACK
3255002
+  (0.2ms) BEGIN
3255003
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255004
+ Redirected to http://test.host/think_feel_do_dashboard/
3255005
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255006
+  (0.3ms) ROLLBACK
3255007
+  (0.2ms) BEGIN
3255008
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255009
+ Completed 401 Unauthorized in 19ms (ActiveRecord: 0.0ms)
3255010
+ Rendered text template (0.1ms)
3255011
+  (0.2ms) ROLLBACK
3255012
+  (0.2ms) BEGIN
3255013
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255014
+ Redirected to http://test.host/think_feel_do_dashboard/
3255015
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255016
+  (0.2ms) ROLLBACK
3255017
+  (0.2ms) BEGIN
3255018
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255019
+ Redirected to http://test.host/think_feel_do_dashboard/
3255020
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255021
+  (0.2ms) ROLLBACK
3255022
+  (0.2ms) BEGIN
3255023
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255024
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3255025
+ Rendered text template (0.1ms)
3255026
+  (0.2ms) ROLLBACK
3255027
+  (0.7ms) BEGIN
3255028
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255029
+ Redirected to http://test.host/think_feel_do_dashboard/
3255030
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255031
+  (0.2ms) ROLLBACK
3255032
+  (0.2ms) BEGIN
3255033
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255034
+ Redirected to http://test.host/think_feel_do_dashboard/
3255035
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255036
+  (0.5ms) ROLLBACK
3255037
+  (0.2ms) BEGIN
3255038
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255039
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3255040
+ Rendered text template (0.1ms)
3255041
+  (0.2ms) ROLLBACK
3255042
+  (0.1ms) BEGIN
3255043
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255044
+ Redirected to http://test.host/think_feel_do_dashboard/
3255045
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255046
+  (0.2ms) ROLLBACK
3255047
+  (0.3ms) BEGIN
3255048
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255049
+ Redirected to http://test.host/think_feel_do_dashboard/
3255050
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255051
+  (0.2ms) ROLLBACK
3255052
+  (0.2ms) BEGIN
3255053
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255054
+ Redirected to http://test.host/think_feel_do_dashboard/
3255055
+ Completed 302 Found in 13ms (ActiveRecord: 0.0ms)
3255056
+  (0.2ms) ROLLBACK
3255057
+  (0.2ms) BEGIN
3255058
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255059
+ Redirected to http://test.host/think_feel_do_dashboard/
3255060
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255061
+  (0.2ms) ROLLBACK
3255062
+  (0.2ms) BEGIN
3255063
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255064
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3255065
+ Rendered text template (0.2ms)
3255066
+  (0.2ms) ROLLBACK
3255067
+  (0.2ms) BEGIN
3255068
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255069
+ Redirected to http://test.host/think_feel_do_dashboard/
3255070
+ Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
3255071
+  (0.2ms) ROLLBACK
3255072
+  (0.1ms) BEGIN
3255073
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255074
+ Redirected to http://test.host/think_feel_do_dashboard/
3255075
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255076
+  (0.2ms) ROLLBACK
3255077
+  (0.2ms) BEGIN
3255078
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255079
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3255080
+ Rendered text template (0.1ms)
3255081
+  (0.2ms) ROLLBACK
3255082
+  (0.4ms) BEGIN
3255083
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255084
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3255085
+ Rendered text template (0.1ms)
3255086
+  (0.3ms) ROLLBACK
3255087
+  (0.2ms) BEGIN
3255088
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255089
+ Redirected to http://test.host/think_feel_do_dashboard/
3255090
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255091
+  (0.2ms) ROLLBACK
3255092
+  (0.2ms) BEGIN
3255093
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255094
+ Redirected to http://test.host/think_feel_do_dashboard/
3255095
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255096
+  (0.3ms) ROLLBACK
3255097
+  (0.2ms) BEGIN
3255098
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255099
+ Redirected to http://test.host/think_feel_do_dashboard/
3255100
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
3255101
+  (0.2ms) ROLLBACK
3255102
+  (0.1ms) BEGIN
3255103
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255104
+ Redirected to http://test.host/think_feel_do_dashboard/
3255105
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255106
+  (0.2ms) ROLLBACK
3255107
+  (0.2ms) BEGIN
3255108
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255109
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3255110
+ Rendered text template (0.1ms)
3255111
+  (0.2ms) ROLLBACK
3255112
+  (0.2ms) BEGIN
3255113
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255114
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3255115
+ Rendered text template (0.1ms)
3255116
+  (0.2ms) ROLLBACK
3255117
+  (0.2ms) BEGIN
3255118
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255119
+ Redirected to http://test.host/think_feel_do_dashboard/
3255120
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255121
+  (0.2ms) ROLLBACK
3255122
+  (0.2ms) BEGIN
3255123
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255124
+ Redirected to http://test.host/think_feel_do_dashboard/
3255125
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255126
+  (0.2ms) ROLLBACK
3255127
+  (0.1ms) BEGIN
3255128
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255129
+ Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
3255130
+ Rendered text template (0.1ms)
3255131
+  (0.2ms) ROLLBACK
3255132
+  (0.1ms) BEGIN
3255133
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255134
+ Redirected to http://test.host/think_feel_do_dashboard/
3255135
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255136
+  (0.2ms) ROLLBACK
3255137
+  (0.1ms) BEGIN
3255138
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255139
+ Redirected to http://test.host/think_feel_do_dashboard/
3255140
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255141
+  (0.2ms) ROLLBACK
3255142
+  (0.2ms) BEGIN
3255143
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255144
+ Redirected to http://test.host/think_feel_do_dashboard/
3255145
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
3255146
+  (0.2ms) ROLLBACK
3255147
+  (0.1ms) BEGIN
3255148
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255149
+ Redirected to http://test.host/think_feel_do_dashboard/
3255150
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
3255151
+  (0.2ms) ROLLBACK
3255152
+  (0.2ms) BEGIN
3255153
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255154
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3255155
+ Rendered text template (0.1ms)
3255156
+  (0.3ms) ROLLBACK
3255157
+  (0.2ms) BEGIN
3255158
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255159
+ Redirected to http://test.host/think_feel_do_dashboard/
3255160
+ Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
3255161
+  (0.2ms) ROLLBACK
3255162
+  (0.2ms) BEGIN
3255163
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255164
+ Redirected to http://test.host/think_feel_do_dashboard/
3255165
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255166
+  (0.2ms) ROLLBACK
3255167
+  (0.2ms) BEGIN
3255168
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255169
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3255170
+ Rendered text template (0.1ms)
3255171
+  (0.4ms) ROLLBACK
3255172
+  (0.2ms) BEGIN
3255173
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255174
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3255175
+ Rendered text template (0.1ms)
3255176
+  (0.2ms) ROLLBACK
3255177
+  (0.1ms) BEGIN
3255178
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255179
+ Redirected to http://test.host/think_feel_do_dashboard/
3255180
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255181
+  (0.2ms) ROLLBACK
3255182
+  (0.2ms) BEGIN
3255183
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255184
+ Redirected to http://test.host/think_feel_do_dashboard/
3255185
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255186
+  (0.2ms) ROLLBACK
3255187
+  (0.3ms) BEGIN
3255188
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255189
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3255190
+ Rendered text template (0.1ms)
3255191
+  (0.2ms) ROLLBACK
3255192
+  (0.1ms) BEGIN
3255193
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255194
+ Redirected to http://test.host/think_feel_do_dashboard/
3255195
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255196
+  (0.2ms) ROLLBACK
3255197
+  (0.2ms) BEGIN
3255198
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255199
+ Redirected to http://test.host/think_feel_do_dashboard/
3255200
+ Completed 302 Found in 4ms (ActiveRecord: 0.0ms)
3255201
+  (0.2ms) ROLLBACK
3255202
+  (0.2ms) BEGIN
3255203
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255204
+ Redirected to http://test.host/think_feel_do_dashboard/
3255205
+ Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
3255206
+  (0.2ms) ROLLBACK
3255207
+  (0.2ms) BEGIN
3255208
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255209
+ Redirected to http://test.host/think_feel_do_dashboard/
3255210
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255211
+  (0.2ms) ROLLBACK
3255212
+  (0.2ms) BEGIN
3255213
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255214
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3255215
+ Rendered text template (0.1ms)
3255216
+  (0.2ms) ROLLBACK
3255217
+  (0.2ms) BEGIN
3255218
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255219
+ Redirected to http://test.host/think_feel_do_dashboard/
3255220
+ Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
3255221
+  (0.2ms) ROLLBACK
3255222
+  (0.2ms) BEGIN
3255223
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255224
+ Redirected to http://test.host/think_feel_do_dashboard/
3255225
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255226
+  (0.2ms) ROLLBACK
3255227
+  (0.1ms) BEGIN
3255228
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255229
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3255230
+ Rendered text template (0.1ms)
3255231
+  (0.2ms) ROLLBACK
3255232
+  (0.2ms) BEGIN
3255233
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255234
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3255235
+ Rendered text template (0.1ms)
3255236
+  (0.2ms) ROLLBACK
3255237
+  (0.2ms) BEGIN
3255238
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255239
+ Redirected to http://test.host/think_feel_do_dashboard/
3255240
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255241
+  (0.2ms) ROLLBACK
3255242
+  (0.2ms) BEGIN
3255243
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255244
+ Redirected to http://test.host/think_feel_do_dashboard/
3255245
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255246
+  (0.2ms) ROLLBACK
3255247
+  (0.2ms) BEGIN
3255248
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255249
+ Redirected to http://test.host/think_feel_do_dashboard/
3255250
+ Completed 302 Found in 9ms (ActiveRecord: 0.0ms)
3255251
+  (0.2ms) ROLLBACK
3255252
+  (0.2ms) BEGIN
3255253
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255254
+ Redirected to http://test.host/think_feel_do_dashboard/
3255255
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255256
+  (0.2ms) ROLLBACK
3255257
+  (0.2ms) BEGIN
3255258
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255259
+ Completed 401 Unauthorized in 7ms (ActiveRecord: 0.0ms)
3255260
+ Rendered text template (0.1ms)
3255261
+  (0.2ms) ROLLBACK
3255262
+  (0.2ms) BEGIN
3255263
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255264
+ Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
3255265
+ Rendered text template (0.3ms)
3255266
+  (0.2ms) ROLLBACK
3255267
+  (0.1ms) BEGIN
3255268
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255269
+ Redirected to http://test.host/think_feel_do_dashboard/
3255270
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255271
+  (0.2ms) ROLLBACK
3255272
+  (0.1ms) BEGIN
3255273
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255274
+ Redirected to http://test.host/think_feel_do_dashboard/
3255275
+ Completed 302 Found in 6ms (ActiveRecord: 0.0ms)
3255276
+  (0.6ms) ROLLBACK
3255277
+  (0.3ms) BEGIN
3255278
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255279
+ Redirected to http://test.host/think_feel_do_dashboard/
3255280
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
3255281
+  (0.2ms) ROLLBACK
3255282
+  (0.2ms) BEGIN
3255283
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255284
+ Redirected to http://test.host/think_feel_do_dashboard/
3255285
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255286
+  (0.2ms) ROLLBACK
3255287
+  (0.2ms) BEGIN
3255288
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255289
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3255290
+ Rendered text template (0.2ms)
3255291
+  (0.2ms) ROLLBACK
3255292
+  (0.3ms) BEGIN
3255293
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255294
+ Redirected to http://test.host/think_feel_do_dashboard/
3255295
+ Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
3255296
+  (0.2ms) ROLLBACK
3255297
+  (0.1ms) BEGIN
3255298
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255299
+ Redirected to http://test.host/think_feel_do_dashboard/
3255300
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255301
+  (0.3ms) ROLLBACK
3255302
+  (0.1ms) BEGIN
3255303
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255304
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3255305
+ Rendered text template (0.1ms)
3255306
+  (0.2ms) ROLLBACK
3255307
+  (0.2ms) BEGIN
3255308
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255309
+ Completed 401 Unauthorized in 12ms (ActiveRecord: 0.0ms)
3255310
+ Rendered text template (0.1ms)
3255311
+  (0.2ms) ROLLBACK
3255312
+  (0.2ms) BEGIN
3255313
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255314
+ Redirected to http://test.host/think_feel_do_dashboard/
3255315
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255316
+  (0.2ms) ROLLBACK
3255317
+  (0.4ms) BEGIN
3255318
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255319
+ Redirected to http://test.host/think_feel_do_dashboard/
3255320
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255321
+  (0.3ms) ROLLBACK
3255322
+  (0.3ms) BEGIN
3255323
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255324
+ Completed 401 Unauthorized in 13ms (ActiveRecord: 0.0ms)
3255325
+ Rendered text template (0.1ms)
3255326
+  (0.3ms) ROLLBACK
3255327
+  (0.2ms) BEGIN
3255328
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255329
+ Redirected to http://test.host/think_feel_do_dashboard/
3255330
+ Completed 302 Found in 3ms (ActiveRecord: 0.0ms)
3255331
+  (0.2ms) ROLLBACK
3255332
+  (0.2ms) BEGIN
3255333
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255334
+ Redirected to http://test.host/think_feel_do_dashboard/
3255335
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255336
+  (0.2ms) ROLLBACK
3255337
+  (0.2ms) BEGIN
3255338
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255339
+ Completed 401 Unauthorized in 14ms (ActiveRecord: 0.0ms)
3255340
+ Rendered text template (0.1ms)
3255341
+  (0.2ms) ROLLBACK
3255342
+  (0.4ms) BEGIN
3255343
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255344
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3255345
+ Rendered text template (0.1ms)
3255346
+  (0.3ms) ROLLBACK
3255347
+  (0.1ms) BEGIN
3255348
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255349
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3255350
+ Rendered text template (0.2ms)
3255351
+  (0.3ms) ROLLBACK
3255352
+  (0.5ms) BEGIN
3255353
+ Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
3255354
+ Completed 401 Unauthorized in 10ms (ActiveRecord: 0.0ms)
3255355
+ Rendered text template (0.2ms)
3255356
+  (0.3ms) ROLLBACK
3255357
+  (0.4ms) BEGIN
3255358
+ Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
3255359
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
3255360
+ Rendered text template (0.1ms)
3255361
+  (0.2ms) ROLLBACK
3255362
+  (0.1ms) BEGIN
3255363
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255364
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3255365
+ Rendered text template (0.1ms)
3255366
+  (0.2ms) ROLLBACK
3255367
+  (0.1ms) BEGIN
3255368
+ Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
3255369
+ Parameters: {"arm"=>{}}
3255370
+ Completed 401 Unauthorized in 11ms (ActiveRecord: 0.0ms)
3255371
+ Rendered text template (0.1ms)
3255372
+  (0.2ms) ROLLBACK
3255373
+  (0.3ms) BEGIN
3255374
+ Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
3255375
+ Parameters: {"arm"=>{}}
3255376
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
3255377
+ Rendered text template (0.1ms)
3255378
+  (0.2ms) ROLLBACK
3255379
+  (0.1ms) BEGIN
3255380
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255381
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
3255382
+ Rendered text template (0.1ms)
3255383
+  (0.2ms) ROLLBACK
3255384
+  (0.1ms) BEGIN
3255385
+ Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
3255386
+ Parameters: {"arm"=>{}}
3255387
+ Redirected to http://test.host/think_feel_do_dashboard/
3255388
+ Completed 302 Found in 7ms (ActiveRecord: 0.0ms)
3255389
+  (0.3ms) ROLLBACK
3255390
+  (0.1ms) BEGIN
3255391
+ Processing by ThinkFeelDoDashboard::ArmsController#create as HTML
3255392
+ Parameters: {"arm"=>{}}
3255393
+ Redirected to http://test.host/think_feel_do_dashboard/
3255394
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
3255395
+  (0.4ms) ROLLBACK
3255396
+  (0.2ms) BEGIN
3255397
+ Processing by ThinkFeelDoDashboard::ArmsController#new as HTML
3255398
+ Completed 401 Unauthorized in 6ms (ActiveRecord: 0.0ms)
3255399
+ Rendered text template (0.4ms)
3255400
+  (0.2ms) ROLLBACK