stenographer-rails 0.6.2 → 0.6.3

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
  SHA256:
3
- metadata.gz: 4fce3418fe20b306ce3c44b1dfc62bd14c956c12f91922558c5cac2c6af9d87f
4
- data.tar.gz: 8d4db192b4bb271c7ea7118b57ce296d864fc52cd181f5e26f22cd0e41733a44
3
+ metadata.gz: 72e97c4f3480006086232d35946652c6e4a4a80cd46ad29be7601adc09743a9d
4
+ data.tar.gz: ba8f45a2801439d46fa7f942a9a4ade60c6ad974b909c92f12589f00b615c020
5
5
  SHA512:
6
- metadata.gz: bbb4e71b73b408b11a2e4b334213176cdbe58d42ce39d4a38626330cd0a774e25b6cb701409f8ea90da5cfd121acd4c57ec5085b480ec20de2052cbb9ab3b8ae
7
- data.tar.gz: c62ed1f02b62428ba52c3410313e9b858111b35a6a2c991c085550fc559db05971b3ba7a84d26b20fae76efedb6337e45dd3406c26a6f472241d80693d7aa145
6
+ metadata.gz: 9811964db4624d5fa1590aea13728b965b48097f5208a5ac4386be58cd09250c273b01778e68a2f577097bc3c9ba92e3d793d5824b05d1eb520aa184e2d219cf
7
+ data.tar.gz: 8f3fe8639f3ea85af522e0a18b330a785b892535e7eba87058b08b60956e952cd2642f24a8658bed1ab84beb07b4c04802705ff1fc8e911d7f1db24366ceb89c
File without changes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stenographer
4
- VERSION = '0.6.2'
4
+ VERSION = '0.6.3'
5
5
  end
@@ -5,7 +5,7 @@ require_relative 'boot'
5
5
  require 'rails/all'
6
6
 
7
7
  Bundler.require(*Rails.groups)
8
- require 'stenographer'
8
+ require 'stenographer-rails'
9
9
 
10
10
  module Dummy
11
11
  class Application < Rails::Application
Binary file
@@ -26030,3 +26030,53 @@ Completed 200 OK in 85ms (Views: 72.5ms | ActiveRecord: 1.0ms)
26030
26030
  ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26031
26031
   (0.7ms) commit transaction
26032
26032
  ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26033
+  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
26034
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26035
+  (1.2ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
26036
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26037
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
26038
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26039
+  (0.6ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
26040
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26041
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
26042
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26043
+  (0.1ms) SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? [["key", "environment"]]
26044
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26045
+  (0.1ms) DROP TABLE IF EXISTS "stenographer_authentications"
26046
+ ↳ db/schema.rb:15
26047
+  (0.1ms) SELECT sqlite_version(*)
26048
+ ↳ db/schema.rb:15
26049
+  (2.3ms) CREATE TABLE "stenographer_authentications" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "provider" varchar NOT NULL, "uid" varchar NOT NULL, "credentials" varchar, "source" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26050
+ ↳ db/schema.rb:15
26051
+  (0.2ms) DROP TABLE IF EXISTS "stenographer_changes"
26052
+ ↳ db/schema.rb:24
26053
+  (1.6ms) CREATE TABLE "stenographer_changes" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar, "message" varchar NOT NULL, "source_id" varchar, "visible" boolean DEFAULT 1 NOT NULL, "change_type" varchar, "environments" varchar, "tracker_ids" varchar, "source" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26054
+ ↳ db/schema.rb:24
26055
+  (0.1ms) DROP TABLE IF EXISTS "stenographer_outputs"
26056
+ ↳ db/schema.rb:37
26057
+  (1.5ms) CREATE TABLE "stenographer_outputs" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "authentication_id" bigint NOT NULL, "configuration" text NOT NULL, "filters" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26058
+ ↳ db/schema.rb:37
26059
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
26060
+ ↳ db/schema.rb:13
26061
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
26062
+ ↳ db/schema.rb:13
26063
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES (20180502170621)
26064
+ ↳ db/schema.rb:13
26065
+  (1.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
26066
+ ↳ db/schema.rb:13
26067
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
26068
+ ↳ db/schema.rb:13
26069
+  (0.1ms) begin transaction
26070
+ ↳ db/schema.rb:13
26071
+ ActiveRecord::InternalMetadata Create (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2018-07-19 20:17:14.099496"], ["updated_at", "2018-07-19 20:17:14.099496"]]
26072
+ ↳ db/schema.rb:13
26073
+  (1.0ms) commit transaction
26074
+ ↳ db/schema.rb:13
26075
+ ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]
26076
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26077
+  (0.0ms) begin transaction
26078
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26079
+ ActiveRecord::InternalMetadata Update (0.3ms) UPDATE "ar_internal_metadata" SET "value" = ?, "updated_at" = ? WHERE "ar_internal_metadata"."key" = ? [["value", "test"], ["updated_at", "2018-07-19 20:17:14.104195"], ["key", "environment"]]
26080
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
26081
+  (1.0ms) commit transaction
26082
+ ↳ /Users/michaelcarey/.rvm/gems/ruby-2.5.1/bin/rake:23
@@ -95458,3 +95458,1639 @@ Redirected to http://test.host/stenographer/admin/authentications
95458
95458
  Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
95459
95459
   (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
95460
95460
   (0.4ms) rollback transaction
95461
+  (0.0ms) begin transaction
95462
+  (0.0ms) SAVEPOINT active_record_1
95463
+ Stenographer::Change Create (0.4ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.272640"], ["updated_at", "2018-07-19 20:17:17.284861"]]
95464
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95465
+  (0.0ms) SAVEPOINT active_record_1
95466
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.293252"], ["updated_at", "2018-07-19 20:17:17.293754"]]
95467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95468
+  (0.0ms) SAVEPOINT active_record_1
95469
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.294652"], ["updated_at", "2018-07-19 20:17:17.294652"]]
95470
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95471
+ Processing by Stenographer::Admin::ChangesController#index as HTML
95472
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/index.html.erb within layouts/stenographer/application
95473
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
95474
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/index.html.erb within layouts/stenographer/application (0.3ms)
95475
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
95476
+ Completed 200 OK in 20ms (Views: 14.6ms | ActiveRecord: 0.0ms)
95477
+ Stenographer::Change Load (0.2ms) SELECT "stenographer_changes".* FROM "stenographer_changes" ORDER BY "stenographer_changes"."created_at" DESC LIMIT ? OFFSET ? [["LIMIT", 100], ["OFFSET", 0]]
95478
+  (0.4ms) rollback transaction
95479
+  (0.0ms) begin transaction
95480
+  (0.0ms) SAVEPOINT active_record_1
95481
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.320750"], ["updated_at", "2018-07-19 20:17:17.321394"]]
95482
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95483
+  (0.0ms) SAVEPOINT active_record_1
95484
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.322382"], ["updated_at", "2018-07-19 20:17:17.322796"]]
95485
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95486
+  (0.0ms) SAVEPOINT active_record_1
95487
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.323887"], ["updated_at", "2018-07-19 20:17:17.323887"]]
95488
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95489
+ Processing by Stenographer::Admin::ChangesController#index as HTML
95490
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/index.html.erb within layouts/stenographer/application
95491
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/index.html.erb within layouts/stenographer/application (0.1ms)
95492
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
95493
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" ORDER BY "stenographer_changes"."created_at" DESC LIMIT ? OFFSET ? [["LIMIT", 100], ["OFFSET", 0]]
95494
+  (0.5ms) rollback transaction
95495
+  (0.1ms) begin transaction
95496
+  (0.0ms) SAVEPOINT active_record_1
95497
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.329593"], ["updated_at", "2018-07-19 20:17:17.330169"]]
95498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95499
+  (0.0ms) SAVEPOINT active_record_1
95500
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.331179"], ["updated_at", "2018-07-19 20:17:17.331621"]]
95501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95502
+  (0.0ms) SAVEPOINT active_record_1
95503
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.332627"], ["updated_at", "2018-07-19 20:17:17.332627"]]
95504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95505
+ Processing by Stenographer::Admin::ChangesController#index as HTML
95506
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/index.html.erb within layouts/stenographer/application
95507
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/index.html.erb within layouts/stenographer/application (0.0ms)
95508
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
95509
+  (0.4ms) rollback transaction
95510
+  (0.0ms) begin transaction
95511
+  (0.0ms) SAVEPOINT active_record_1
95512
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.336137"], ["updated_at", "2018-07-19 20:17:17.336771"]]
95513
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95514
+  (0.0ms) SAVEPOINT active_record_1
95515
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.337755"], ["updated_at", "2018-07-19 20:17:17.338179"]]
95516
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95517
+  (0.0ms) SAVEPOINT active_record_1
95518
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.339179"], ["updated_at", "2018-07-19 20:17:17.339179"]]
95519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95520
+ Processing by Stenographer::Admin::ChangesController#update as HTML
95521
+ Parameters: {"change"=>{"tracker_ids"=>"hummingbird"}, "id"=>"1"}
95522
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95523
+  (0.0ms) SAVEPOINT active_record_1
95524
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "tracker_ids" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["tracker_ids", "hummingbird"], ["updated_at", "2018-07-19 20:17:17.349219"], ["id", 1]]
95525
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95526
+ Redirected to http://test.host/stenographer/admin/changes/1
95527
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
95528
+  (0.4ms) rollback transaction
95529
+  (0.0ms) begin transaction
95530
+  (0.0ms) SAVEPOINT active_record_1
95531
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.353788"], ["updated_at", "2018-07-19 20:17:17.354410"]]
95532
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95533
+  (0.0ms) SAVEPOINT active_record_1
95534
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.355544"], ["updated_at", "2018-07-19 20:17:17.356228"]]
95535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95536
+  (0.0ms) SAVEPOINT active_record_1
95537
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.357517"], ["updated_at", "2018-07-19 20:17:17.357517"]]
95538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95539
+ Processing by Stenographer::Admin::ChangesController#update as HTML
95540
+ Parameters: {"change"=>{"tracker_ids"=>"hummingbird"}, "id"=>"1"}
95541
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95542
+  (0.0ms) SAVEPOINT active_record_1
95543
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "tracker_ids" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["tracker_ids", "hummingbird"], ["updated_at", "2018-07-19 20:17:17.359929"], ["id", 1]]
95544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95545
+ Redirected to http://test.host/stenographer/admin/changes/1
95546
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
95547
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95548
+  (0.4ms) rollback transaction
95549
+  (0.0ms) begin transaction
95550
+  (0.0ms) SAVEPOINT active_record_1
95551
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.364649"], ["updated_at", "2018-07-19 20:17:17.365275"]]
95552
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95553
+  (0.0ms) SAVEPOINT active_record_1
95554
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.366284"], ["updated_at", "2018-07-19 20:17:17.366692"]]
95555
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95556
+  (0.0ms) SAVEPOINT active_record_1
95557
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.367673"], ["updated_at", "2018-07-19 20:17:17.367673"]]
95558
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95559
+ Processing by Stenographer::Admin::ChangesController#edit as HTML
95560
+ Parameters: {"id"=>"1"}
95561
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95562
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/edit.html.erb within layouts/stenographer/application
95563
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
95564
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/edit.html.erb within layouts/stenographer/application (0.3ms)
95565
+ Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.1ms)
95566
+  (0.4ms) rollback transaction
95567
+  (0.0ms) begin transaction
95568
+  (0.0ms) SAVEPOINT active_record_1
95569
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.379700"], ["updated_at", "2018-07-19 20:17:17.380358"]]
95570
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95571
+  (0.0ms) SAVEPOINT active_record_1
95572
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.381425"], ["updated_at", "2018-07-19 20:17:17.381918"]]
95573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95574
+  (0.1ms) SAVEPOINT active_record_1
95575
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.383057"], ["updated_at", "2018-07-19 20:17:17.383057"]]
95576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95577
+ Processing by Stenographer::Admin::ChangesController#edit as HTML
95578
+ Parameters: {"id"=>"1"}
95579
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95580
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/edit.html.erb within layouts/stenographer/application
95581
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/edit.html.erb within layouts/stenographer/application (0.0ms)
95582
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
95583
+  (0.3ms) rollback transaction
95584
+  (0.0ms) begin transaction
95585
+  (0.0ms) SAVEPOINT active_record_1
95586
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.386480"], ["updated_at", "2018-07-19 20:17:17.387002"]]
95587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95588
+  (0.0ms) SAVEPOINT active_record_1
95589
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.387923"], ["updated_at", "2018-07-19 20:17:17.388309"]]
95590
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95591
+  (0.0ms) SAVEPOINT active_record_1
95592
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.389601"], ["updated_at", "2018-07-19 20:17:17.389601"]]
95593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95594
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
95595
+ Processing by Stenographer::Admin::ChangesController#destroy as HTML
95596
+ Parameters: {"id"=>"1"}
95597
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95598
+  (0.0ms) SAVEPOINT active_record_1
95599
+ Stenographer::Change Destroy (0.1ms) DELETE FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? [["id", 1]]
95600
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95601
+ Redirected to http://test.host/stenographer/admin/changes
95602
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
95603
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
95604
+  (0.4ms) rollback transaction
95605
+  (0.0ms) begin transaction
95606
+  (0.0ms) SAVEPOINT active_record_1
95607
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.397750"], ["updated_at", "2018-07-19 20:17:17.398387"]]
95608
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95609
+  (0.0ms) SAVEPOINT active_record_1
95610
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.399627"], ["updated_at", "2018-07-19 20:17:17.400133"]]
95611
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95612
+  (0.0ms) SAVEPOINT active_record_1
95613
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.401119"], ["updated_at", "2018-07-19 20:17:17.401119"]]
95614
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95615
+ Processing by Stenographer::Admin::ChangesController#destroy as HTML
95616
+ Parameters: {"id"=>"1"}
95617
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95618
+  (0.0ms) SAVEPOINT active_record_1
95619
+ Stenographer::Change Destroy (0.0ms) DELETE FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? [["id", 1]]
95620
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95621
+ Redirected to http://test.host/stenographer/admin/changes
95622
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
95623
+  (0.4ms) rollback transaction
95624
+  (0.0ms) begin transaction
95625
+  (0.0ms) SAVEPOINT active_record_1
95626
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.405276"], ["updated_at", "2018-07-19 20:17:17.405805"]]
95627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95628
+  (0.0ms) SAVEPOINT active_record_1
95629
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.406709"], ["updated_at", "2018-07-19 20:17:17.407114"]]
95630
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95631
+  (0.0ms) SAVEPOINT active_record_1
95632
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.408093"], ["updated_at", "2018-07-19 20:17:17.408093"]]
95633
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95634
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
95635
+ Processing by Stenographer::Admin::ChangesController#create as HTML
95636
+ Parameters: {"change"=>{"message"=>""}}
95637
+  (0.0ms) SAVEPOINT active_record_1
95638
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
95639
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application
95640
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
95641
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application (0.2ms)
95642
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.1ms)
95643
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
95644
+  (0.6ms) rollback transaction
95645
+  (0.0ms) begin transaction
95646
+  (0.0ms) SAVEPOINT active_record_1
95647
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.419264"], ["updated_at", "2018-07-19 20:17:17.419897"]]
95648
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95649
+  (0.0ms) SAVEPOINT active_record_1
95650
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.420889"], ["updated_at", "2018-07-19 20:17:17.421322"]]
95651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95652
+  (0.0ms) SAVEPOINT active_record_1
95653
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.422345"], ["updated_at", "2018-07-19 20:17:17.422345"]]
95654
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95655
+ Processing by Stenographer::Admin::ChangesController#create as HTML
95656
+ Parameters: {"change"=>{"message"=>""}}
95657
+  (0.0ms) SAVEPOINT active_record_1
95658
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
95659
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application
95660
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application (0.0ms)
95661
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms)
95662
+  (0.5ms) rollback transaction
95663
+  (0.0ms) begin transaction
95664
+  (0.0ms) SAVEPOINT active_record_1
95665
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.426923"], ["updated_at", "2018-07-19 20:17:17.427436"]]
95666
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95667
+  (0.0ms) SAVEPOINT active_record_1
95668
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.428385"], ["updated_at", "2018-07-19 20:17:17.428945"]]
95669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95670
+  (0.1ms) SAVEPOINT active_record_1
95671
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.430262"], ["updated_at", "2018-07-19 20:17:17.430262"]]
95672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95673
+ Processing by Stenographer::Admin::ChangesController#create as HTML
95674
+ Parameters: {"change"=>{"message"=>"snakes", "tracker_ids"=>"lego"}}
95675
+  (0.0ms) SAVEPOINT active_record_1
95676
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "environments", "tracker_ids", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["message", "snakes"], ["environments", "test"], ["tracker_ids", "lego"], ["created_at", "2018-07-19 20:17:17.432311"], ["updated_at", "2018-07-19 20:17:17.432311"]]
95677
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95678
+ Redirected to http://test.host/stenographer/admin/changes/4
95679
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
95680
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" ORDER BY "stenographer_changes"."id" DESC LIMIT ? [["LIMIT", 1]]
95681
+  (0.5ms) rollback transaction
95682
+  (0.0ms) begin transaction
95683
+  (0.0ms) SAVEPOINT active_record_1
95684
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.435488"], ["updated_at", "2018-07-19 20:17:17.436062"]]
95685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95686
+  (0.0ms) SAVEPOINT active_record_1
95687
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.437140"], ["updated_at", "2018-07-19 20:17:17.437617"]]
95688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95689
+  (0.0ms) SAVEPOINT active_record_1
95690
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.438686"], ["updated_at", "2018-07-19 20:17:17.438686"]]
95691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95692
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
95693
+ Processing by Stenographer::Admin::ChangesController#create as HTML
95694
+ Parameters: {"change"=>{"message"=>"snakes", "tracker_ids"=>"lego"}}
95695
+  (0.0ms) SAVEPOINT active_record_1
95696
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "environments", "tracker_ids", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["message", "snakes"], ["environments", "test"], ["tracker_ids", "lego"], ["created_at", "2018-07-19 20:17:17.441206"], ["updated_at", "2018-07-19 20:17:17.441206"]]
95697
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95698
+ Redirected to http://test.host/stenographer/admin/changes/4
95699
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
95700
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
95701
+  (0.5ms) rollback transaction
95702
+  (0.0ms) begin transaction
95703
+  (0.0ms) SAVEPOINT active_record_1
95704
+ Stenographer::Change Create (0.4ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.444044"], ["updated_at", "2018-07-19 20:17:17.444649"]]
95705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95706
+  (0.0ms) SAVEPOINT active_record_1
95707
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.445893"], ["updated_at", "2018-07-19 20:17:17.446475"]]
95708
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95709
+  (0.0ms) SAVEPOINT active_record_1
95710
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.447644"], ["updated_at", "2018-07-19 20:17:17.447644"]]
95711
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95712
+ Processing by Stenographer::Admin::ChangesController#create as HTML
95713
+ Parameters: {"change"=>{"message"=>"snakes", "tracker_ids"=>"lego"}}
95714
+  (0.0ms) SAVEPOINT active_record_1
95715
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "environments", "tracker_ids", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["message", "snakes"], ["environments", "test"], ["tracker_ids", "lego"], ["created_at", "2018-07-19 20:17:17.449621"], ["updated_at", "2018-07-19 20:17:17.449621"]]
95716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95717
+ Redirected to http://test.host/stenographer/admin/changes/4
95718
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
95719
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" ORDER BY "stenographer_changes"."id" DESC LIMIT ? [["LIMIT", 1]]
95720
+  (0.4ms) rollback transaction
95721
+  (0.0ms) begin transaction
95722
+  (0.0ms) SAVEPOINT active_record_1
95723
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.453091"], ["updated_at", "2018-07-19 20:17:17.453631"]]
95724
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95725
+  (0.0ms) SAVEPOINT active_record_1
95726
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.454604"], ["updated_at", "2018-07-19 20:17:17.455035"]]
95727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95728
+  (0.0ms) SAVEPOINT active_record_1
95729
+ Stenographer::Change Create (0.2ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.456073"], ["updated_at", "2018-07-19 20:17:17.456073"]]
95730
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95731
+ Processing by Stenographer::Admin::ChangesController#show as HTML
95732
+ Parameters: {"id"=>"1"}
95733
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95734
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/show.html.erb within layouts/stenographer/application
95735
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
95736
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/show.html.erb within layouts/stenographer/application (0.3ms)
95737
+ Completed 200 OK in 7ms (Views: 1.1ms | ActiveRecord: 0.0ms)
95738
+  (0.5ms) rollback transaction
95739
+  (0.0ms) begin transaction
95740
+  (0.0ms) SAVEPOINT active_record_1
95741
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.466609"], ["updated_at", "2018-07-19 20:17:17.467263"]]
95742
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95743
+  (0.0ms) SAVEPOINT active_record_1
95744
+ Stenographer::Change Create (0.2ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.468416"], ["updated_at", "2018-07-19 20:17:17.469002"]]
95745
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95746
+  (0.0ms) SAVEPOINT active_record_1
95747
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.470291"], ["updated_at", "2018-07-19 20:17:17.470291"]]
95748
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95749
+ Processing by Stenographer::Admin::ChangesController#show as HTML
95750
+ Parameters: {"id"=>"1"}
95751
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95752
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/show.html.erb within layouts/stenographer/application
95753
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/show.html.erb within layouts/stenographer/application (0.0ms)
95754
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
95755
+  (0.5ms) rollback transaction
95756
+  (0.0ms) begin transaction
95757
+  (0.1ms) SAVEPOINT active_record_1
95758
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.474260"], ["updated_at", "2018-07-19 20:17:17.474824"]]
95759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95760
+  (0.0ms) SAVEPOINT active_record_1
95761
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.475756"], ["updated_at", "2018-07-19 20:17:17.476261"]]
95762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95763
+  (0.0ms) SAVEPOINT active_record_1
95764
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.477418"], ["updated_at", "2018-07-19 20:17:17.477418"]]
95765
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95766
+ Processing by Stenographer::Admin::ChangesController#new as HTML
95767
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application
95768
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application (0.0ms)
95769
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
95770
+  (0.4ms) rollback transaction
95771
+  (0.0ms) begin transaction
95772
+  (0.0ms) SAVEPOINT active_record_1
95773
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.481121"], ["updated_at", "2018-07-19 20:17:17.481701"]]
95774
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95775
+  (0.0ms) SAVEPOINT active_record_1
95776
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.482696"], ["updated_at", "2018-07-19 20:17:17.483143"]]
95777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95778
+  (0.0ms) SAVEPOINT active_record_1
95779
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.484185"], ["updated_at", "2018-07-19 20:17:17.484185"]]
95780
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95781
+ Processing by Stenographer::Admin::ChangesController#new as HTML
95782
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application
95783
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/changes/new.html.erb within layouts/stenographer/application (0.0ms)
95784
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
95785
+  (0.4ms) rollback transaction
95786
+  (0.0ms) begin transaction
95787
+  (0.0ms) rollback transaction
95788
+  (0.0ms) begin transaction
95789
+  (0.0ms) SAVEPOINT active_record_1
95790
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.488697"], ["updated_at", "2018-07-19 20:17:17.488697"]]
95791
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95792
+  (0.5ms) rollback transaction
95793
+  (0.0ms) begin transaction
95794
+  (0.0ms) SAVEPOINT active_record_1
95795
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.492073"], ["updated_at", "2018-07-19 20:17:17.492073"]]
95796
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95797
+  (0.4ms) rollback transaction
95798
+  (0.0ms) begin transaction
95799
+  (0.0ms) SAVEPOINT active_record_1
95800
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "# hello"], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.495548"], ["updated_at", "2018-07-19 20:17:17.495548"]]
95801
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95802
+  (0.5ms) rollback transaction
95803
+  (0.0ms) begin transaction
95804
+  (0.0ms) SAVEPOINT active_record_1
95805
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.498435"], ["updated_at", "2018-07-19 20:17:17.498435"]]
95806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95807
+  (0.0ms) SAVEPOINT active_record_1
95808
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.510143"], ["updated_at", "2018-07-19 20:17:17.510143"]]
95809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95810
+  (0.1ms) SAVEPOINT active_record_1
95811
+ Stenographer::Output Create (0.2ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.519427"], ["updated_at", "2018-07-19 20:17:17.519427"]]
95812
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95813
+  (0.0ms) SAVEPOINT active_record_1
95814
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "florida, california"], ["updated_at", "2018-07-19 20:17:17.520718"], ["id", 1]]
95815
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95816
+  (0.0ms) SAVEPOINT active_record_1
95817
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["filters", "{\"environments\":\"california\"}"], ["updated_at", "2018-07-19 20:17:17.521891"], ["id", 1]]
95818
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95819
+  (0.4ms) rollback transaction
95820
+  (0.0ms) begin transaction
95821
+  (0.0ms) SAVEPOINT active_record_1
95822
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.524338"], ["updated_at", "2018-07-19 20:17:17.524338"]]
95823
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95824
+  (0.0ms) SAVEPOINT active_record_1
95825
+ Stenographer::Authentication Create (0.2ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.525897"], ["updated_at", "2018-07-19 20:17:17.525897"]]
95826
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95827
+  (0.0ms) SAVEPOINT active_record_1
95828
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.527343"], ["updated_at", "2018-07-19 20:17:17.527343"]]
95829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95830
+  (0.0ms) SAVEPOINT active_record_1
95831
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "california, florida"], ["updated_at", "2018-07-19 20:17:17.528465"], ["id", 1]]
95832
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95833
+  (0.0ms) SAVEPOINT active_record_1
95834
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["filters", "{\"environments\":\"california\"}"], ["updated_at", "2018-07-19 20:17:17.529673"], ["id", 1]]
95835
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95836
+  (0.4ms) rollback transaction
95837
+  (0.0ms) begin transaction
95838
+  (0.0ms) SAVEPOINT active_record_1
95839
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.532052"], ["updated_at", "2018-07-19 20:17:17.532052"]]
95840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95841
+  (0.0ms) SAVEPOINT active_record_1
95842
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.533612"], ["updated_at", "2018-07-19 20:17:17.533612"]]
95843
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95844
+  (0.0ms) SAVEPOINT active_record_1
95845
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.534714"], ["updated_at", "2018-07-19 20:17:17.534714"]]
95846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95847
+  (0.0ms) SAVEPOINT active_record_1
95848
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "change_type" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["change_type", "new"], ["updated_at", "2018-07-19 20:17:17.535682"], ["id", 1]]
95849
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95850
+  (0.1ms) SAVEPOINT active_record_1
95851
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["filters", "{\"change_type\":\"new\"}"], ["updated_at", "2018-07-19 20:17:17.536992"], ["id", 1]]
95852
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95853
+  (0.5ms) rollback transaction
95854
+  (0.0ms) begin transaction
95855
+  (0.0ms) SAVEPOINT active_record_1
95856
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.539599"], ["updated_at", "2018-07-19 20:17:17.539599"]]
95857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95858
+  (0.0ms) SAVEPOINT active_record_1
95859
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.541207"], ["updated_at", "2018-07-19 20:17:17.541207"]]
95860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95861
+  (0.0ms) SAVEPOINT active_record_1
95862
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.542236"], ["updated_at", "2018-07-19 20:17:17.542236"]]
95863
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95864
+  (0.5ms) rollback transaction
95865
+  (0.0ms) begin transaction
95866
+  (0.0ms) SAVEPOINT active_record_1
95867
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.544481"], ["updated_at", "2018-07-19 20:17:17.544481"]]
95868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95869
+  (0.0ms) SAVEPOINT active_record_1
95870
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.545991"], ["updated_at", "2018-07-19 20:17:17.545991"]]
95871
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95872
+  (0.0ms) SAVEPOINT active_record_1
95873
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.547030"], ["updated_at", "2018-07-19 20:17:17.547030"]]
95874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95875
+  (0.4ms) rollback transaction
95876
+  (0.0ms) begin transaction
95877
+  (0.0ms) SAVEPOINT active_record_1
95878
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.549323"], ["updated_at", "2018-07-19 20:17:17.549323"]]
95879
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95880
+  (0.0ms) SAVEPOINT active_record_1
95881
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.550804"], ["updated_at", "2018-07-19 20:17:17.550804"]]
95882
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95883
+  (0.0ms) SAVEPOINT active_record_1
95884
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.551744"], ["updated_at", "2018-07-19 20:17:17.551744"]]
95885
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95886
+  (0.0ms) SAVEPOINT active_record_1
95887
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "community"], ["updated_at", "2018-07-19 20:17:17.552639"], ["id", 1]]
95888
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95889
+  (0.0ms) SAVEPOINT active_record_1
95890
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["filters", "{\"environments\":\"the office\"}"], ["updated_at", "2018-07-19 20:17:17.553636"], ["id", 1]]
95891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95892
+  (0.4ms) rollback transaction
95893
+  (0.0ms) begin transaction
95894
+  (0.1ms) SAVEPOINT active_record_1
95895
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.555782"], ["updated_at", "2018-07-19 20:17:17.555782"]]
95896
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95897
+  (0.0ms) SAVEPOINT active_record_1
95898
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.557137"], ["updated_at", "2018-07-19 20:17:17.557137"]]
95899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95900
+  (0.0ms) SAVEPOINT active_record_1
95901
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.558057"], ["updated_at", "2018-07-19 20:17:17.558057"]]
95902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95903
+  (0.0ms) SAVEPOINT active_record_1
95904
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "staging"], ["updated_at", "2018-07-19 20:17:17.559051"], ["id", 1]]
95905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95906
+  (0.0ms) SAVEPOINT active_record_1
95907
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["filters", "{\"environments\":\"\"}"], ["updated_at", "2018-07-19 20:17:17.560216"], ["id", 1]]
95908
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95909
+  (0.5ms) rollback transaction
95910
+  (0.0ms) begin transaction
95911
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
95912
+  (0.0ms) SAVEPOINT active_record_1
95913
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("subject", "message", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["subject", "test"], ["message", "test1"], ["environments", "test"], ["tracker_ids", "1234"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.563387"], ["updated_at", "2018-07-19 20:17:17.563387"]]
95914
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95915
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
95916
+  (0.5ms) rollback transaction
95917
+  (0.0ms) begin transaction
95918
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
95919
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "#14983989"], ["LIMIT", 1]]
95920
+  (0.0ms) SAVEPOINT active_record_1
95921
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("subject", "message", "source_id", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["subject", "test"], ["message", "test1"], ["source_id", "#14983989"], ["environments", "test"], ["tracker_ids", "1234"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.567234"], ["updated_at", "2018-07-19 20:17:17.567234"]]
95922
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95923
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
95924
+  (0.4ms) rollback transaction
95925
+  (0.0ms) begin transaction
95926
+  (0.1ms) SAVEPOINT active_record_1
95927
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "source_id", "visible", "change_type", "environments", "tracker_ids", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["source_id", "#aol"], ["visible", 0], ["change_type", "improved"], ["environments", "england"], ["tracker_ids", "#56789"], ["created_at", "2018-07-19 20:17:17.570112"], ["updated_at", "2018-07-19 20:17:17.570112"]]
95928
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95929
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "#aol"], ["LIMIT", 1]]
95930
+  (0.0ms) SAVEPOINT active_record_1
95931
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "england, france"], ["updated_at", "2018-07-19 20:17:17.571934"], ["id", 1]]
95932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95933
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
95934
+  (0.5ms) rollback transaction
95935
+  (0.1ms) begin transaction
95936
+  (0.0ms) SAVEPOINT active_record_1
95937
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "source_id", "visible", "change_type", "environments", "tracker_ids", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["source_id", "#aol"], ["visible", 0], ["change_type", "improved"], ["environments", "england"], ["tracker_ids", "#56789"], ["created_at", "2018-07-19 20:17:17.580456"], ["updated_at", "2018-07-19 20:17:17.580456"]]
95938
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95939
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
95940
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "#aol"], ["LIMIT", 1]]
95941
+  (0.0ms) SAVEPOINT active_record_1
95942
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "england, france"], ["updated_at", "2018-07-19 20:17:17.582573"], ["id", 1]]
95943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95944
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
95945
+  (0.6ms) rollback transaction
95946
+  (0.0ms) begin transaction
95947
+  (0.0ms) rollback transaction
95948
+  (0.0ms) begin transaction
95949
+  (0.0ms) rollback transaction
95950
+  (0.0ms) begin transaction
95951
+  (0.0ms) rollback transaction
95952
+  (0.0ms) begin transaction
95953
+  (0.0ms) SAVEPOINT active_record_1
95954
+ Stenographer::Change Create (0.5ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.588901"], ["updated_at", "2018-07-19 20:17:17.588901"]]
95955
+  (0.1ms) RELEASE SAVEPOINT active_record_1
95956
+  (0.0ms) SAVEPOINT active_record_1
95957
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "staging, production"], ["updated_at", "2018-07-19 20:17:17.590654"], ["id", 1]]
95958
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95959
+  (0.5ms) rollback transaction
95960
+  (0.0ms) begin transaction
95961
+  (0.0ms) SAVEPOINT active_record_1
95962
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.593439"], ["updated_at", "2018-07-19 20:17:17.593439"]]
95963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95964
+  (0.4ms) rollback transaction
95965
+  (0.1ms) begin transaction
95966
+  (0.1ms) SAVEPOINT active_record_1
95967
+ Stenographer::Change Create (0.5ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.596081"], ["updated_at", "2018-07-19 20:17:17.596081"]]
95968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95969
+  (0.0ms) SAVEPOINT active_record_1
95970
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "cheese"], ["updated_at", "2018-07-19 20:17:17.597736"], ["id", 1]]
95971
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95972
+  (0.4ms) rollback transaction
95973
+  (0.0ms) begin transaction
95974
+  (0.0ms) SAVEPOINT active_record_1
95975
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.600054"], ["updated_at", "2018-07-19 20:17:17.600054"]]
95976
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95977
+  (0.0ms) SAVEPOINT active_record_1
95978
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "production"], ["updated_at", "2018-07-19 20:17:17.601336"], ["id", 1]]
95979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95980
+  (0.4ms) rollback transaction
95981
+  (0.0ms) begin transaction
95982
+  (0.1ms) SAVEPOINT active_record_1
95983
+ Stenographer::Change Create (0.4ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", " WOW "], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.617641"], ["updated_at", "2018-07-19 20:17:17.617641"]]
95984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95985
+  (0.4ms) rollback transaction
95986
+  (0.0ms) begin transaction
95987
+  (0.0ms) SAVEPOINT active_record_1
95988
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.621029"], ["updated_at", "2018-07-19 20:17:17.621029"]]
95989
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95990
+  (0.0ms) SAVEPOINT active_record_1
95991
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "change_type" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["change_type", "new"], ["updated_at", "2018-07-19 20:17:17.622695"], ["id", 1]]
95992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95993
+  (0.4ms) rollback transaction
95994
+  (0.0ms) begin transaction
95995
+  (0.0ms) SAVEPOINT active_record_1
95996
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.625037"], ["updated_at", "2018-07-19 20:17:17.625037"]]
95997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
95998
+  (0.0ms) SAVEPOINT active_record_1
95999
+ Stenographer::Change Update (0.1ms) UPDATE "stenographer_changes" SET "environments" = ?, "updated_at" = ? WHERE "stenographer_changes"."id" = ? [["environments", "tea"], ["updated_at", "2018-07-19 20:17:17.626506"], ["id", 1]]
96000
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96001
+  (0.4ms) rollback transaction
96002
+  (0.0ms) begin transaction
96003
+  (0.0ms) SAVEPOINT active_record_1
96004
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", " WOW "], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.628838"], ["updated_at", "2018-07-19 20:17:17.628838"]]
96005
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96006
+  (0.4ms) rollback transaction
96007
+  (0.0ms) begin transaction
96008
+  (0.0ms) SAVEPOINT active_record_1
96009
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.631477"], ["updated_at", "2018-07-19 20:17:17.632092"]]
96010
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96011
+  (0.0ms) SAVEPOINT active_record_1
96012
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.633026"], ["updated_at", "2018-07-19 20:17:17.633491"]]
96013
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96014
+  (0.0ms) SAVEPOINT active_record_1
96015
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.634529"], ["updated_at", "2018-07-19 20:17:17.634529"]]
96016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96017
+ Processing by Stenographer::ChangesController#show as HTML
96018
+ Parameters: {"id"=>"1"}
96019
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96020
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/show.html.erb within layouts/stenographer/application
96021
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96022
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/show.html.erb within layouts/stenographer/application (0.2ms)
96023
+ Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.0ms)
96024
+  (0.5ms) rollback transaction
96025
+  (0.0ms) begin transaction
96026
+  (0.0ms) SAVEPOINT active_record_1
96027
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.648850"], ["updated_at", "2018-07-19 20:17:17.649501"]]
96028
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96029
+  (0.0ms) SAVEPOINT active_record_1
96030
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.650452"], ["updated_at", "2018-07-19 20:17:17.650889"]]
96031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96032
+  (0.0ms) SAVEPOINT active_record_1
96033
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.651817"], ["updated_at", "2018-07-19 20:17:17.651817"]]
96034
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96035
+ Processing by Stenographer::ChangesController#show as HTML
96036
+ Parameters: {"id"=>"1"}
96037
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96038
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/show.html.erb within layouts/stenographer/application
96039
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/show.html.erb within layouts/stenographer/application (0.0ms)
96040
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
96041
+  (0.5ms) rollback transaction
96042
+  (0.0ms) begin transaction
96043
+  (0.0ms) SAVEPOINT active_record_1
96044
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.655453"], ["updated_at", "2018-07-19 20:17:17.656009"]]
96045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96046
+  (0.0ms) SAVEPOINT active_record_1
96047
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.657062"], ["updated_at", "2018-07-19 20:17:17.657545"]]
96048
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96049
+  (0.1ms) SAVEPOINT active_record_1
96050
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.658722"], ["updated_at", "2018-07-19 20:17:17.658722"]]
96051
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96052
+ Processing by Stenographer::ChangesController#create as HTML
96053
+ Parameters: {"payload"=>"{\n \"ref\": \"refs/heads/master\",\n \"before\": \"728fcfe4bbf8106191684b223d2681b0862bffd1\",\n \"after\": \"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"created\": false,\n \"deleted\": false,\n \"forced\": false,\n \"base_ref\": null,\n \"compare\": \"https://github.com/CatchRelease/catchandrelease/compare/728fcfe4bbf8...c942dbc827b4\",\n \"commits\": [{\n \"id\": \"70d502bb0b68c1b4f8f35a6797ead79b48185979\",\n \"tree_id\": \"54e081c63bd86e510faca9d600c87b82ed38421d\",\n \"distinct\": true,\n \"message\": \"seven commit.\\n\\n[finishes #999]\",\n \"timestamp\": \"2017-10-06T11:25:04-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/70d502bb0b68c1b4f8f35a6797ead79b48185979\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n }, {\n \"id\": \"3562f081b2da63eb6ef478ff266c5667e660c65a\",\n \"tree_id\": \"4bce3b9a1ffc3e7ae1076d1780cc7de0a91e8618\",\n \"distinct\": true,\n \"message\": \"eight commit.\\n\\n[finishes #666]\\n\\n[changelog it all starts somewhere]\",\n \"timestamp\": \"2017-10-06T11:25:32-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/3562f081b2da63eb6ef478ff266c5667e660c65a\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n }, {\n \"id\": \"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"tree_id\": \"00e5fb24d9d60e5ca7dd779d93bc3d3b7a676c55\",\n \"distinct\": true,\n \"message\": \"nine commit.\\n\\n[finished #534, finished #234]\\n\\n[changelog trapazoids are just fun]\",\n \"timestamp\": \"2017-10-06T11:25:49-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n }],\n \"head_commit\": {\n \"id\": \"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"tree_id\": \"00e5fb24d9d60e5ca7dd779d93bc3d3b7a676c55\",\n \"distinct\": true,\n \"message\": \"nine commit. [finishes #777]\",\n \"timestamp\": \"2017-10-06T11:25:49-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n },\n \"repository\": {\n \"id\": 36463678,\n \"name\": \"catchandrelease\",\n \"full_name\": \"CatchRelease/catchandrelease\",\n \"owner\": {\n \"name\": \"CatchRelease\",\n \"email\": \"engineering@catchandrelease.tv\",\n \"login\": \"CatchRelease\",\n \"id\": 12631517,\n \"avatar_url\": \"https://avatars0.githubusercontent.com/u/12631517?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/CatchRelease\",\n \"html_url\": \"https://github.com/CatchRelease\",\n \"followers_url\": \"https://api.github.com/users/CatchRelease/followers\",\n \"following_url\": \"https://api.github.com/users/CatchRelease/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/CatchRelease/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/CatchRelease/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/CatchRelease/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/CatchRelease/orgs\",\n \"repos_url\": \"https://api.github.com/users/CatchRelease/repos\",\n \"events_url\": \"https://api.github.com/users/CatchRelease/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/CatchRelease/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": true,\n \"html_url\": \"https://github.com/CatchRelease/catchandrelease\",\n \"description\": \"Main pillar of C&R Ecosystem\",\n \"fork\": false,\n \"url\": \"https://github.com/CatchRelease/catchandrelease\",\n \"forks_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/forks\",\n \"keys_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/teams\",\n \"hooks_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/events\",\n \"assignees_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/tags\",\n \"blobs_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/subscription\",\n \"commits_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/merges\",\n \"archive_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/downloads\",\n \"issues_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/deployments\",\n \"created_at\": 1432844172,\n \"updated_at\": \"2017-02-25T22:31:04Z\",\n \"pushed_at\": 1507314377,\n \"git_url\": \"git://github.com/CatchRelease/catchandrelease.git\",\n \"ssh_url\": \"git@github.com:CatchRelease/catchandrelease.git\",\n \"clone_url\": \"https://github.com/CatchRelease/catchandrelease.git\",\n \"svn_url\": \"https://github.com/CatchRelease/catchandrelease\",\n \"homepage\": \"http://catchandrelease.com\",\n \"size\": 546773,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": null,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"open_issues_count\": 2,\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 1,\n \"default_branch\": \"work\",\n \"stargazers\": 1,\n \"master_branch\": \"work\",\n \"organization\": \"CatchRelease\"\n },\n \"pusher\": {\n \"name\": \"mikecx\",\n \"email\": \"mikecx@gmail.com\"\n },\n \"organization\": {\n \"login\": \"CatchRelease\",\n \"id\": 12631517,\n \"url\": \"https://api.github.com/orgs/CatchRelease\",\n \"repos_url\": \"https://api.github.com/orgs/CatchRelease/repos\",\n \"events_url\": \"https://api.github.com/orgs/CatchRelease/events\",\n \"hooks_url\": \"https://api.github.com/orgs/CatchRelease/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/CatchRelease/issues\",\n \"members_url\": \"https://api.github.com/orgs/CatchRelease/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/CatchRelease/public_members{/member}\",\n \"avatar_url\": \"https://avatars0.githubusercontent.com/u/12631517?v=4\",\n \"description\": \"\"\n },\n \"sender\": {\n \"login\": \"mikecx\",\n \"id\": 467469,\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/467469?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mikecx\",\n \"html_url\": \"https://github.com/mikecx\",\n \"followers_url\": \"https://api.github.com/users/mikecx/followers\",\n \"following_url\": \"https://api.github.com/users/mikecx/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mikecx/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mikecx/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/mikecx/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mikecx/orgs\",\n \"repos_url\": \"https://api.github.com/users/mikecx/repos\",\n \"events_url\": \"https://api.github.com/users/mikecx/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/mikecx/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n"}
96054
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "3562f081b2da63eb6ef478ff266c5667e660c65a"], ["LIMIT", 1]]
96055
+  (0.0ms) SAVEPOINT active_record_1
96056
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("subject", "message", "source_id", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["subject", "eight commit."], ["message", "it all starts somewhere"], ["source_id", "3562f081b2da63eb6ef478ff266c5667e660c65a"], ["environments", "production"], ["tracker_ids", "666"], ["source", "{\"id\":\"3562f081b2da63eb6ef478ff266c5667e660c65a\",\"tree_id\":\"4bce3b9a1ffc3e7ae1076d1780cc7de0a91e8618\",\"distinct\":true,\"message\":\"eight commit.\\n\\n[finishes #666]\\n\\n[changelog it all starts somewhere]\",\"timestamp\":\"2017-10-06T11:25:32-07:00\",\"url\":\"https://github.com/CatchRelease/catchandrelease/commit/3562f081b2da63eb6ef478ff266c5667e660c65a\",\"author\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"committer\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"added\":[],\"removed\":[],\"modified\":[\"test_file\"]}"], ["created_at", "2018-07-19 20:17:17.665742"], ["updated_at", "2018-07-19 20:17:17.665742"]]
96057
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96058
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "c942dbc827b4c85f46160106eec02b0bd0c4e4fd"], ["LIMIT", 1]]
96059
+  (0.0ms) SAVEPOINT active_record_1
96060
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("subject", "message", "source_id", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["subject", "nine commit."], ["message", "trapazoids are just fun"], ["source_id", "c942dbc827b4c85f46160106eec02b0bd0c4e4fd"], ["environments", "production"], ["tracker_ids", "234, 534"], ["source", "{\"id\":\"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\"tree_id\":\"00e5fb24d9d60e5ca7dd779d93bc3d3b7a676c55\",\"distinct\":true,\"message\":\"nine commit.\\n\\n[finished #534, finished #234]\\n\\n[changelog trapazoids are just fun]\",\"timestamp\":\"2017-10-06T11:25:49-07:00\",\"url\":\"https://github.com/CatchRelease/catchandrelease/commit/c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\"author\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"committer\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"added\":[],\"removed\":[],\"modified\":[\"test_file\"]}"], ["created_at", "2018-07-19 20:17:17.666921"], ["updated_at", "2018-07-19 20:17:17.666921"]]
96061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96062
+ Completed 200 OK in 4ms (ActiveRecord: 0.4ms)
96063
+  (0.4ms) rollback transaction
96064
+  (0.0ms) begin transaction
96065
+  (0.0ms) SAVEPOINT active_record_1
96066
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.669382"], ["updated_at", "2018-07-19 20:17:17.669978"]]
96067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96068
+  (0.0ms) SAVEPOINT active_record_1
96069
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.670922"], ["updated_at", "2018-07-19 20:17:17.671388"]]
96070
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96071
+  (0.0ms) SAVEPOINT active_record_1
96072
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.672444"], ["updated_at", "2018-07-19 20:17:17.672444"]]
96073
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96074
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
96075
+ Processing by Stenographer::ChangesController#create as HTML
96076
+ Parameters: {"payload"=>"{\n \"ref\": \"refs/heads/master\",\n \"before\": \"728fcfe4bbf8106191684b223d2681b0862bffd1\",\n \"after\": \"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"created\": false,\n \"deleted\": false,\n \"forced\": false,\n \"base_ref\": null,\n \"compare\": \"https://github.com/CatchRelease/catchandrelease/compare/728fcfe4bbf8...c942dbc827b4\",\n \"commits\": [{\n \"id\": \"70d502bb0b68c1b4f8f35a6797ead79b48185979\",\n \"tree_id\": \"54e081c63bd86e510faca9d600c87b82ed38421d\",\n \"distinct\": true,\n \"message\": \"seven commit.\\n\\n[finishes #999]\",\n \"timestamp\": \"2017-10-06T11:25:04-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/70d502bb0b68c1b4f8f35a6797ead79b48185979\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n }, {\n \"id\": \"3562f081b2da63eb6ef478ff266c5667e660c65a\",\n \"tree_id\": \"4bce3b9a1ffc3e7ae1076d1780cc7de0a91e8618\",\n \"distinct\": true,\n \"message\": \"eight commit.\\n\\n[finishes #666]\\n\\n[changelog it all starts somewhere]\",\n \"timestamp\": \"2017-10-06T11:25:32-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/3562f081b2da63eb6ef478ff266c5667e660c65a\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n }, {\n \"id\": \"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"tree_id\": \"00e5fb24d9d60e5ca7dd779d93bc3d3b7a676c55\",\n \"distinct\": true,\n \"message\": \"nine commit.\\n\\n[finished #534, finished #234]\\n\\n[changelog trapazoids are just fun]\",\n \"timestamp\": \"2017-10-06T11:25:49-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n }],\n \"head_commit\": {\n \"id\": \"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"tree_id\": \"00e5fb24d9d60e5ca7dd779d93bc3d3b7a676c55\",\n \"distinct\": true,\n \"message\": \"nine commit. [finishes #777]\",\n \"timestamp\": \"2017-10-06T11:25:49-07:00\",\n \"url\": \"https://github.com/CatchRelease/catchandrelease/commit/c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\n \"author\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"committer\": {\n \"name\": \"Michael Carey\",\n \"email\": \"mikecx@gmail.com\",\n \"username\": \"mikecx\"\n },\n \"added\": [],\n \"removed\": [],\n \"modified\": [\"test_file\"]\n },\n \"repository\": {\n \"id\": 36463678,\n \"name\": \"catchandrelease\",\n \"full_name\": \"CatchRelease/catchandrelease\",\n \"owner\": {\n \"name\": \"CatchRelease\",\n \"email\": \"engineering@catchandrelease.tv\",\n \"login\": \"CatchRelease\",\n \"id\": 12631517,\n \"avatar_url\": \"https://avatars0.githubusercontent.com/u/12631517?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/CatchRelease\",\n \"html_url\": \"https://github.com/CatchRelease\",\n \"followers_url\": \"https://api.github.com/users/CatchRelease/followers\",\n \"following_url\": \"https://api.github.com/users/CatchRelease/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/CatchRelease/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/CatchRelease/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/CatchRelease/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/CatchRelease/orgs\",\n \"repos_url\": \"https://api.github.com/users/CatchRelease/repos\",\n \"events_url\": \"https://api.github.com/users/CatchRelease/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/CatchRelease/received_events\",\n \"type\": \"Organization\",\n \"site_admin\": false\n },\n \"private\": true,\n \"html_url\": \"https://github.com/CatchRelease/catchandrelease\",\n \"description\": \"Main pillar of C&R Ecosystem\",\n \"fork\": false,\n \"url\": \"https://github.com/CatchRelease/catchandrelease\",\n \"forks_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/forks\",\n \"keys_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/keys{/key_id}\",\n \"collaborators_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/collaborators{/collaborator}\",\n \"teams_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/teams\",\n \"hooks_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/hooks\",\n \"issue_events_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/issues/events{/number}\",\n \"events_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/events\",\n \"assignees_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/assignees{/user}\",\n \"branches_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/branches{/branch}\",\n \"tags_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/tags\",\n \"blobs_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/blobs{/sha}\",\n \"git_tags_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/tags{/sha}\",\n \"git_refs_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/refs{/sha}\",\n \"trees_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/trees{/sha}\",\n \"statuses_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/statuses/{sha}\",\n \"languages_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/languages\",\n \"stargazers_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/stargazers\",\n \"contributors_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/contributors\",\n \"subscribers_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/subscribers\",\n \"subscription_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/subscription\",\n \"commits_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/commits{/sha}\",\n \"git_commits_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/git/commits{/sha}\",\n \"comments_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/comments{/number}\",\n \"issue_comment_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/issues/comments{/number}\",\n \"contents_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/contents/{+path}\",\n \"compare_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/compare/{base}...{head}\",\n \"merges_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/merges\",\n \"archive_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/{archive_format}{/ref}\",\n \"downloads_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/downloads\",\n \"issues_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/issues{/number}\",\n \"pulls_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/pulls{/number}\",\n \"milestones_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/milestones{/number}\",\n \"notifications_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/notifications{?since,all,participating}\",\n \"labels_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/labels{/name}\",\n \"releases_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/releases{/id}\",\n \"deployments_url\": \"https://api.github.com/repos/CatchRelease/catchandrelease/deployments\",\n \"created_at\": 1432844172,\n \"updated_at\": \"2017-02-25T22:31:04Z\",\n \"pushed_at\": 1507314377,\n \"git_url\": \"git://github.com/CatchRelease/catchandrelease.git\",\n \"ssh_url\": \"git@github.com:CatchRelease/catchandrelease.git\",\n \"clone_url\": \"https://github.com/CatchRelease/catchandrelease.git\",\n \"svn_url\": \"https://github.com/CatchRelease/catchandrelease\",\n \"homepage\": \"http://catchandrelease.com\",\n \"size\": 546773,\n \"stargazers_count\": 1,\n \"watchers_count\": 1,\n \"language\": null,\n \"has_issues\": true,\n \"has_projects\": true,\n \"has_downloads\": true,\n \"has_wiki\": true,\n \"has_pages\": false,\n \"forks_count\": 0,\n \"mirror_url\": null,\n \"open_issues_count\": 2,\n \"forks\": 0,\n \"open_issues\": 2,\n \"watchers\": 1,\n \"default_branch\": \"work\",\n \"stargazers\": 1,\n \"master_branch\": \"work\",\n \"organization\": \"CatchRelease\"\n },\n \"pusher\": {\n \"name\": \"mikecx\",\n \"email\": \"mikecx@gmail.com\"\n },\n \"organization\": {\n \"login\": \"CatchRelease\",\n \"id\": 12631517,\n \"url\": \"https://api.github.com/orgs/CatchRelease\",\n \"repos_url\": \"https://api.github.com/orgs/CatchRelease/repos\",\n \"events_url\": \"https://api.github.com/orgs/CatchRelease/events\",\n \"hooks_url\": \"https://api.github.com/orgs/CatchRelease/hooks\",\n \"issues_url\": \"https://api.github.com/orgs/CatchRelease/issues\",\n \"members_url\": \"https://api.github.com/orgs/CatchRelease/members{/member}\",\n \"public_members_url\": \"https://api.github.com/orgs/CatchRelease/public_members{/member}\",\n \"avatar_url\": \"https://avatars0.githubusercontent.com/u/12631517?v=4\",\n \"description\": \"\"\n },\n \"sender\": {\n \"login\": \"mikecx\",\n \"id\": 467469,\n \"avatar_url\": \"https://avatars1.githubusercontent.com/u/467469?v=4\",\n \"gravatar_id\": \"\",\n \"url\": \"https://api.github.com/users/mikecx\",\n \"html_url\": \"https://github.com/mikecx\",\n \"followers_url\": \"https://api.github.com/users/mikecx/followers\",\n \"following_url\": \"https://api.github.com/users/mikecx/following{/other_user}\",\n \"gists_url\": \"https://api.github.com/users/mikecx/gists{/gist_id}\",\n \"starred_url\": \"https://api.github.com/users/mikecx/starred{/owner}{/repo}\",\n \"subscriptions_url\": \"https://api.github.com/users/mikecx/subscriptions\",\n \"organizations_url\": \"https://api.github.com/users/mikecx/orgs\",\n \"repos_url\": \"https://api.github.com/users/mikecx/repos\",\n \"events_url\": \"https://api.github.com/users/mikecx/events{/privacy}\",\n \"received_events_url\": \"https://api.github.com/users/mikecx/received_events\",\n \"type\": \"User\",\n \"site_admin\": false\n }\n}\n"}
96077
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "70d502bb0b68c1b4f8f35a6797ead79b48185979"], ["LIMIT", 1]]
96078
+  (0.0ms) SAVEPOINT active_record_1
96079
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("subject", "message", "source_id", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["subject", "seven commit."], ["message", "seven commit."], ["source_id", "70d502bb0b68c1b4f8f35a6797ead79b48185979"], ["environments", "production"], ["tracker_ids", "999"], ["source", "{\"id\":\"70d502bb0b68c1b4f8f35a6797ead79b48185979\",\"tree_id\":\"54e081c63bd86e510faca9d600c87b82ed38421d\",\"distinct\":true,\"message\":\"seven commit.\\n\\n[finishes #999]\",\"timestamp\":\"2017-10-06T11:25:04-07:00\",\"url\":\"https://github.com/CatchRelease/catchandrelease/commit/70d502bb0b68c1b4f8f35a6797ead79b48185979\",\"author\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"committer\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"added\":[],\"removed\":[],\"modified\":[\"test_file\"]}"], ["created_at", "2018-07-19 20:17:17.679125"], ["updated_at", "2018-07-19 20:17:17.679125"]]
96080
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96081
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "3562f081b2da63eb6ef478ff266c5667e660c65a"], ["LIMIT", 1]]
96082
+  (0.0ms) SAVEPOINT active_record_1
96083
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("subject", "message", "source_id", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["subject", "eight commit."], ["message", "it all starts somewhere"], ["source_id", "3562f081b2da63eb6ef478ff266c5667e660c65a"], ["environments", "production"], ["tracker_ids", "666"], ["source", "{\"id\":\"3562f081b2da63eb6ef478ff266c5667e660c65a\",\"tree_id\":\"4bce3b9a1ffc3e7ae1076d1780cc7de0a91e8618\",\"distinct\":true,\"message\":\"eight commit.\\n\\n[finishes #666]\\n\\n[changelog it all starts somewhere]\",\"timestamp\":\"2017-10-06T11:25:32-07:00\",\"url\":\"https://github.com/CatchRelease/catchandrelease/commit/3562f081b2da63eb6ef478ff266c5667e660c65a\",\"author\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"committer\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"added\":[],\"removed\":[],\"modified\":[\"test_file\"]}"], ["created_at", "2018-07-19 20:17:17.680284"], ["updated_at", "2018-07-19 20:17:17.680284"]]
96084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96085
+ Stenographer::Change Load (0.0ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."source_id" = ? LIMIT ? [["source_id", "c942dbc827b4c85f46160106eec02b0bd0c4e4fd"], ["LIMIT", 1]]
96086
+  (0.0ms) SAVEPOINT active_record_1
96087
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("subject", "message", "source_id", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["subject", "nine commit."], ["message", "trapazoids are just fun"], ["source_id", "c942dbc827b4c85f46160106eec02b0bd0c4e4fd"], ["environments", "production"], ["tracker_ids", "234, 534"], ["source", "{\"id\":\"c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\"tree_id\":\"00e5fb24d9d60e5ca7dd779d93bc3d3b7a676c55\",\"distinct\":true,\"message\":\"nine commit.\\n\\n[finished #534, finished #234]\\n\\n[changelog trapazoids are just fun]\",\"timestamp\":\"2017-10-06T11:25:49-07:00\",\"url\":\"https://github.com/CatchRelease/catchandrelease/commit/c942dbc827b4c85f46160106eec02b0bd0c4e4fd\",\"author\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"committer\":{\"name\":\"Michael Carey\",\"email\":\"mikecx@gmail.com\",\"username\":\"mikecx\"},\"added\":[],\"removed\":[],\"modified\":[\"test_file\"]}"], ["created_at", "2018-07-19 20:17:17.681345"], ["updated_at", "2018-07-19 20:17:17.681345"]]
96088
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96089
+ Completed 200 OK in 5ms (ActiveRecord: 0.6ms)
96090
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
96091
+  (0.4ms) rollback transaction
96092
+  (0.1ms) begin transaction
96093
+  (0.1ms) SAVEPOINT active_record_1
96094
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.684400"], ["updated_at", "2018-07-19 20:17:17.685104"]]
96095
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96096
+  (0.0ms) SAVEPOINT active_record_1
96097
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.686274"], ["updated_at", "2018-07-19 20:17:17.686883"]]
96098
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96099
+  (0.0ms) SAVEPOINT active_record_1
96100
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.688041"], ["updated_at", "2018-07-19 20:17:17.688041"]]
96101
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96102
+ Processing by Stenographer::ChangesController#index as HTML
96103
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? [["visible", 1]]
96104
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application
96105
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96106
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application (0.2ms)
96107
+ Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.1ms)
96108
+  (0.4ms) rollback transaction
96109
+  (0.0ms) begin transaction
96110
+  (0.0ms) SAVEPOINT active_record_1
96111
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.698434"], ["updated_at", "2018-07-19 20:17:17.699102"]]
96112
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96113
+  (0.0ms) SAVEPOINT active_record_1
96114
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.700133"], ["updated_at", "2018-07-19 20:17:17.700622"]]
96115
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96116
+  (0.0ms) SAVEPOINT active_record_1
96117
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.701639"], ["updated_at", "2018-07-19 20:17:17.701639"]]
96118
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96119
+ Processing by Stenographer::ChangesController#index as HTML
96120
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? [["visible", 1]]
96121
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application
96122
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application (0.0ms)
96123
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96124
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? ORDER BY "stenographer_changes"."created_at" DESC LIMIT ? OFFSET ? [["visible", 1], ["LIMIT", 100], ["OFFSET", 0]]
96125
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? [["visible", 1]]
96126
+  (0.5ms) rollback transaction
96127
+  (0.0ms) begin transaction
96128
+  (0.0ms) SAVEPOINT active_record_1
96129
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.706097"], ["updated_at", "2018-07-19 20:17:17.706652"]]
96130
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96131
+  (0.0ms) SAVEPOINT active_record_1
96132
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.707598"], ["updated_at", "2018-07-19 20:17:17.708124"]]
96133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96134
+  (0.0ms) SAVEPOINT active_record_1
96135
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.709221"], ["updated_at", "2018-07-19 20:17:17.709221"]]
96136
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96137
+ Processing by Stenographer::ChangesController#index as HTML
96138
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? [["visible", 1]]
96139
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application
96140
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application (0.0ms)
96141
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96142
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? ORDER BY "stenographer_changes"."created_at" DESC LIMIT ? OFFSET ? [["visible", 1], ["LIMIT", 100], ["OFFSET", 0]]
96143
+  (0.5ms) rollback transaction
96144
+  (0.1ms) begin transaction
96145
+  (0.0ms) SAVEPOINT active_record_1
96146
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.772027"], ["updated_at", "2018-07-19 20:17:17.772704"]]
96147
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96148
+  (0.0ms) SAVEPOINT active_record_1
96149
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.773718"], ["updated_at", "2018-07-19 20:17:17.774184"]]
96150
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96151
+  (0.1ms) SAVEPOINT active_record_1
96152
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.775129"], ["updated_at", "2018-07-19 20:17:17.775129"]]
96153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96154
+ Processing by Stenographer::ChangesController#index as HTML
96155
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? [["visible", 1]]
96156
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application
96157
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application (0.0ms)
96158
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96159
+  (0.5ms) rollback transaction
96160
+  (0.0ms) begin transaction
96161
+  (0.1ms) SAVEPOINT active_record_1
96162
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env1"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-05 20:17:17.779313"], ["updated_at", "2018-07-19 20:17:17.780029"]]
96163
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96164
+  (0.0ms) SAVEPOINT active_record_1
96165
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "env2"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-12 20:17:17.780952"], ["updated_at", "2018-07-19 20:17:17.781393"]]
96166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96167
+  (0.0ms) SAVEPOINT active_record_1
96168
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.782277"], ["updated_at", "2018-07-19 20:17:17.782277"]]
96169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96170
+ Processing by Stenographer::ChangesController#index as HTML
96171
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? [["visible", 1]]
96172
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application
96173
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/changes/index.html.erb within layouts/stenographer/application (0.0ms)
96174
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96175
+ Stenographer::Change Load (0.1ms) SELECT "stenographer_changes".* FROM "stenographer_changes" WHERE "stenographer_changes"."visible" = ? ORDER BY "stenographer_changes"."created_at" DESC LIMIT ? OFFSET ? [["visible", 1], ["LIMIT", 100], ["OFFSET", 0]]
96176
+  (0.5ms) rollback transaction
96177
+  (0.0ms) begin transaction
96178
+  (0.0ms) SAVEPOINT active_record_1
96179
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.789492"], ["updated_at", "2018-07-19 20:17:17.789492"]]
96180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96181
+  (0.3ms) rollback transaction
96182
+  (0.0ms) begin transaction
96183
+  (0.0ms) SAVEPOINT active_record_1
96184
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.791945"], ["updated_at", "2018-07-19 20:17:17.791945"]]
96185
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96186
+  (0.1ms) SAVEPOINT active_record_1
96187
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.793124"], ["updated_at", "2018-07-19 20:17:17.793124"]]
96188
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96189
+  (0.3ms) rollback transaction
96190
+  (0.0ms) begin transaction
96191
+  (0.0ms) SAVEPOINT active_record_1
96192
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.796158"], ["updated_at", "2018-07-19 20:17:17.796158"]]
96193
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96194
+  (0.0ms) SAVEPOINT active_record_1
96195
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.797629"], ["updated_at", "2018-07-19 20:17:17.797629"]]
96196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96197
+  (0.4ms) rollback transaction
96198
+  (0.0ms) begin transaction
96199
+  (0.0ms) SAVEPOINT active_record_1
96200
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.800621"], ["updated_at", "2018-07-19 20:17:17.800621"]]
96201
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96202
+  (0.0ms) SAVEPOINT active_record_1
96203
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.801665"], ["updated_at", "2018-07-19 20:17:17.801665"]]
96204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96205
+  (0.0ms) SAVEPOINT active_record_1
96206
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["filters", "{\"country\":\"Ibiza\"}"], ["updated_at", "2018-07-19 20:17:17.802619"], ["id", 1]]
96207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96208
+  (0.5ms) rollback transaction
96209
+  (0.0ms) begin transaction
96210
+  (0.0ms) SAVEPOINT active_record_1
96211
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.804719"], ["updated_at", "2018-07-19 20:17:17.804719"]]
96212
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96213
+  (0.0ms) SAVEPOINT active_record_1
96214
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.805826"], ["updated_at", "2018-07-19 20:17:17.805826"]]
96215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96216
+  (0.0ms) SAVEPOINT active_record_1
96217
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96218
+  (0.4ms) rollback transaction
96219
+  (0.0ms) begin transaction
96220
+  (0.1ms) SAVEPOINT active_record_1
96221
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.808698"], ["updated_at", "2018-07-19 20:17:17.808698"]]
96222
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96223
+  (0.0ms) SAVEPOINT active_record_1
96224
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.809922"], ["updated_at", "2018-07-19 20:17:17.809922"]]
96225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96226
+  (0.0ms) SAVEPOINT active_record_1
96227
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
96228
+  (0.6ms) rollback transaction
96229
+  (0.0ms) begin transaction
96230
+  (0.0ms) SAVEPOINT active_record_1
96231
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.813264"], ["updated_at", "2018-07-19 20:17:17.813264"]]
96232
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96233
+  (0.0ms) SAVEPOINT active_record_1
96234
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.814728"], ["updated_at", "2018-07-19 20:17:17.814728"]]
96235
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96236
+  (0.0ms) SAVEPOINT active_record_1
96237
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "configuration" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["configuration", "{\"country\":\"Ibiza\"}"], ["updated_at", "2018-07-19 20:17:17.815665"], ["id", 1]]
96238
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96239
+  (0.5ms) rollback transaction
96240
+  (0.0ms) begin transaction
96241
+  (0.0ms) SAVEPOINT active_record_1
96242
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.818129"], ["updated_at", "2018-07-19 20:17:17.818129"]]
96243
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96244
+  (0.0ms) SAVEPOINT active_record_1
96245
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:17.819275"], ["updated_at", "2018-07-19 20:17:17.819275"]]
96246
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96247
+  (0.4ms) rollback transaction
96248
+  (0.0ms) begin transaction
96249
+  (0.0ms) SAVEPOINT active_record_1
96250
+ Stenographer::Authentication Create (0.2ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.821532"], ["updated_at", "2018-07-19 20:17:17.821532"]]
96251
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96252
+  (0.4ms) rollback transaction
96253
+  (0.0ms) begin transaction
96254
+  (0.0ms) SAVEPOINT active_record_1
96255
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.824663"], ["updated_at", "2018-07-19 20:17:17.824663"]]
96256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96257
+  (0.1ms) SAVEPOINT active_record_1
96258
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.826095"], ["updated_at", "2018-07-19 20:17:17.826095"]]
96259
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96260
+ Processing by Stenographer::AdminController#index as HTML
96261
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_changes"
96262
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_authentications"
96263
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_outputs"
96264
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application
96265
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96266
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application (0.2ms)
96267
+ Completed 200 OK in 11ms (Views: 5.2ms | ActiveRecord: 0.1ms)
96268
+ Processing by Stenographer::AdminController#index as HTML
96269
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
96270
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_authentications"
96271
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96272
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application
96273
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application (0.0ms)
96274
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.3ms)
96275
+  (0.4ms) rollback transaction
96276
+  (0.0ms) begin transaction
96277
+  (0.0ms) SAVEPOINT active_record_1
96278
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.842206"], ["updated_at", "2018-07-19 20:17:17.842206"]]
96279
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96280
+  (0.0ms) SAVEPOINT active_record_1
96281
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.843735"], ["updated_at", "2018-07-19 20:17:17.843735"]]
96282
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96283
+ Processing by Stenographer::AdminController#index as HTML
96284
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
96285
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_authentications"
96286
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_outputs"
96287
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application
96288
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application (0.0ms)
96289
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96290
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
96291
+  (0.6ms) rollback transaction
96292
+  (0.0ms) begin transaction
96293
+  (0.0ms) SAVEPOINT active_record_1
96294
+ Stenographer::Change Create (0.3ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:17.848621"], ["updated_at", "2018-07-19 20:17:17.848621"]]
96295
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96296
+  (0.0ms) SAVEPOINT active_record_1
96297
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.850096"], ["updated_at", "2018-07-19 20:17:17.850096"]]
96298
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96299
+ Processing by Stenographer::AdminController#index as HTML
96300
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_changes"
96301
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_authentications"
96302
+  (0.0ms) SELECT COUNT(*) FROM "stenographer_outputs"
96303
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application
96304
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/index.html.erb within layouts/stenographer/application (0.0ms)
96305
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.2ms)
96306
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
96307
+  (0.5ms) rollback transaction
96308
+  (0.0ms) begin transaction
96309
+  (0.0ms) SAVEPOINT active_record_1
96310
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.855907"], ["updated_at", "2018-07-19 20:17:17.855907"]]
96311
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96312
+  (0.0ms) SAVEPOINT active_record_1
96313
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.857555"], ["updated_at", "2018-07-19 20:17:17.857555"]]
96314
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96315
+  (0.0ms) SAVEPOINT active_record_1
96316
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.856933"], ["updated_at", "2018-07-19 20:17:17.858506"]]
96317
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96318
+  (0.0ms) SAVEPOINT active_record_1
96319
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.859769"], ["updated_at", "2018-07-19 20:17:17.859769"]]
96320
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96321
+  (0.0ms) SAVEPOINT active_record_1
96322
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.859171"], ["updated_at", "2018-07-19 20:17:17.860692"]]
96323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96324
+ Processing by Stenographer::Admin::OutputsController#create as HTML
96325
+ Parameters: {"configuration"=>{"other_stuff"=>"2", "stuff"=>"1"}, "output"=>{"authentication_id"=>"1"}}
96326
+  (0.0ms) SAVEPOINT active_record_1
96327
+ Stenographer::Authentication Load (0.1ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96328
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "filters", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"other_stuff\":\"2\",\"stuff\":\"1\"}"], ["filters", "null"], ["created_at", "2018-07-19 20:17:17.868294"], ["updated_at", "2018-07-19 20:17:17.868294"]]
96329
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96330
+ Redirected to http://test.host/stenographer/admin/outputs/3
96331
+ Completed 302 Found in 7ms (ActiveRecord: 0.3ms)
96332
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" ORDER BY "stenographer_outputs"."id" DESC LIMIT ? [["LIMIT", 1]]
96333
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96334
+  (0.5ms) rollback transaction
96335
+  (0.0ms) begin transaction
96336
+  (0.0ms) SAVEPOINT active_record_1
96337
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.872600"], ["updated_at", "2018-07-19 20:17:17.872600"]]
96338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96339
+  (0.0ms) SAVEPOINT active_record_1
96340
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.874291"], ["updated_at", "2018-07-19 20:17:17.874291"]]
96341
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96342
+  (0.0ms) SAVEPOINT active_record_1
96343
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.873605"], ["updated_at", "2018-07-19 20:17:17.875302"]]
96344
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96345
+  (0.0ms) SAVEPOINT active_record_1
96346
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.876762"], ["updated_at", "2018-07-19 20:17:17.876762"]]
96347
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96348
+  (0.0ms) SAVEPOINT active_record_1
96349
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.876017"], ["updated_at", "2018-07-19 20:17:17.877772"]]
96350
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96351
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96352
+ Processing by Stenographer::Admin::OutputsController#create as HTML
96353
+ Parameters: {"configuration"=>{"other_stuff"=>"2", "stuff"=>"1"}, "output"=>{"authentication_id"=>"1"}}
96354
+  (0.0ms) SAVEPOINT active_record_1
96355
+ Stenographer::Authentication Load (0.1ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96356
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "filters", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"other_stuff\":\"2\",\"stuff\":\"1\"}"], ["filters", "null"], ["created_at", "2018-07-19 20:17:17.880705"], ["updated_at", "2018-07-19 20:17:17.880705"]]
96357
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96358
+ Redirected to http://test.host/stenographer/admin/outputs/3
96359
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
96360
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96361
+  (0.5ms) rollback transaction
96362
+  (0.0ms) begin transaction
96363
+  (0.1ms) SAVEPOINT active_record_1
96364
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.884658"], ["updated_at", "2018-07-19 20:17:17.884658"]]
96365
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96366
+  (0.0ms) SAVEPOINT active_record_1
96367
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.886377"], ["updated_at", "2018-07-19 20:17:17.886377"]]
96368
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96369
+  (0.0ms) SAVEPOINT active_record_1
96370
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.885731"], ["updated_at", "2018-07-19 20:17:17.887391"]]
96371
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96372
+  (0.0ms) SAVEPOINT active_record_1
96373
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.888710"], ["updated_at", "2018-07-19 20:17:17.888710"]]
96374
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96375
+  (0.0ms) SAVEPOINT active_record_1
96376
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.888108"], ["updated_at", "2018-07-19 20:17:17.889672"]]
96377
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96378
+ Processing by Stenographer::Admin::OutputsController#create as HTML
96379
+ Parameters: {"configuration"=>{"other_stuff"=>"2", "stuff"=>"1"}, "output"=>{"authentication_id"=>"1"}}
96380
+  (0.0ms) SAVEPOINT active_record_1
96381
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96382
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "filters", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"other_stuff\":\"2\",\"stuff\":\"1\"}"], ["filters", "null"], ["created_at", "2018-07-19 20:17:17.892144"], ["updated_at", "2018-07-19 20:17:17.892144"]]
96383
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96384
+ Redirected to http://test.host/stenographer/admin/outputs/3
96385
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
96386
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" ORDER BY "stenographer_outputs"."id" DESC LIMIT ? [["LIMIT", 1]]
96387
+  (0.4ms) rollback transaction
96388
+  (0.0ms) begin transaction
96389
+  (0.1ms) SAVEPOINT active_record_1
96390
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.896407"], ["updated_at", "2018-07-19 20:17:17.896407"]]
96391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96392
+  (0.0ms) SAVEPOINT active_record_1
96393
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.898216"], ["updated_at", "2018-07-19 20:17:17.898216"]]
96394
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96395
+  (0.0ms) SAVEPOINT active_record_1
96396
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.897531"], ["updated_at", "2018-07-19 20:17:17.899264"]]
96397
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96398
+  (0.0ms) SAVEPOINT active_record_1
96399
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.900554"], ["updated_at", "2018-07-19 20:17:17.900554"]]
96400
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96401
+  (0.0ms) SAVEPOINT active_record_1
96402
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.899952"], ["updated_at", "2018-07-19 20:17:17.901529"]]
96403
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96404
+ Processing by Stenographer::Admin::OutputsController#create as HTML
96405
+ Parameters: {"configuration"=>{"other_stuff"=>"2", "stuff"=>"1"}, "output"=>{"authentication_id"=>"1"}}
96406
+  (0.0ms) SAVEPOINT active_record_1
96407
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96408
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "filters", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"other_stuff\":\"2\",\"stuff\":\"1\"}"], ["filters", "null"], ["created_at", "2018-07-19 20:17:17.904110"], ["updated_at", "2018-07-19 20:17:17.904110"]]
96409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96410
+ Redirected to http://test.host/stenographer/admin/outputs/3
96411
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
96412
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" ORDER BY "stenographer_outputs"."id" DESC LIMIT ? [["LIMIT", 1]]
96413
+  (0.4ms) rollback transaction
96414
+  (0.0ms) begin transaction
96415
+  (0.0ms) SAVEPOINT active_record_1
96416
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.908438"], ["updated_at", "2018-07-19 20:17:17.908438"]]
96417
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96418
+  (0.0ms) SAVEPOINT active_record_1
96419
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.910193"], ["updated_at", "2018-07-19 20:17:17.910193"]]
96420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96421
+  (0.0ms) SAVEPOINT active_record_1
96422
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.909474"], ["updated_at", "2018-07-19 20:17:17.911206"]]
96423
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96424
+  (0.0ms) SAVEPOINT active_record_1
96425
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.912536"], ["updated_at", "2018-07-19 20:17:17.912536"]]
96426
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96427
+  (0.0ms) SAVEPOINT active_record_1
96428
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.911895"], ["updated_at", "2018-07-19 20:17:17.913509"]]
96429
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96430
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96431
+ Processing by Stenographer::Admin::OutputsController#create as HTML
96432
+ Parameters: {"configuration"=>{"other_stuff"=>"2", "stuff"=>"1"}, "output"=>{"authentication_id"=>""}}
96433
+  (0.0ms) SAVEPOINT active_record_1
96434
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
96435
+ Redirected to http://test.host/stenographer/admin/outputs
96436
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
96437
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96438
+  (0.5ms) rollback transaction
96439
+  (0.0ms) begin transaction
96440
+  (0.1ms) SAVEPOINT active_record_1
96441
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.920123"], ["updated_at", "2018-07-19 20:17:17.920123"]]
96442
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96443
+  (0.0ms) SAVEPOINT active_record_1
96444
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.921801"], ["updated_at", "2018-07-19 20:17:17.921801"]]
96445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96446
+  (0.0ms) SAVEPOINT active_record_1
96447
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.921180"], ["updated_at", "2018-07-19 20:17:17.922795"]]
96448
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96449
+  (0.0ms) SAVEPOINT active_record_1
96450
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.924087"], ["updated_at", "2018-07-19 20:17:17.924087"]]
96451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96452
+  (0.0ms) SAVEPOINT active_record_1
96453
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.923493"], ["updated_at", "2018-07-19 20:17:17.925063"]]
96454
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96455
+ Processing by Stenographer::Admin::OutputsController#create as HTML
96456
+ Parameters: {"configuration"=>{"other_stuff"=>"2", "stuff"=>"1"}, "output"=>{"authentication_id"=>""}}
96457
+  (0.0ms) SAVEPOINT active_record_1
96458
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
96459
+ Redirected to http://test.host/stenographer/admin/outputs
96460
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
96461
+  (0.6ms) rollback transaction
96462
+  (0.0ms) begin transaction
96463
+  (0.0ms) SAVEPOINT active_record_1
96464
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.931523"], ["updated_at", "2018-07-19 20:17:17.931523"]]
96465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96466
+  (0.0ms) SAVEPOINT active_record_1
96467
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.933174"], ["updated_at", "2018-07-19 20:17:17.933174"]]
96468
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96469
+  (0.0ms) SAVEPOINT active_record_1
96470
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.932558"], ["updated_at", "2018-07-19 20:17:17.934173"]]
96471
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96472
+  (0.0ms) SAVEPOINT active_record_1
96473
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.935582"], ["updated_at", "2018-07-19 20:17:17.935582"]]
96474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96475
+  (0.1ms) SAVEPOINT active_record_1
96476
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.934857"], ["updated_at", "2018-07-19 20:17:17.936679"]]
96477
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96478
+ Processing by Stenographer::Admin::OutputsController#new as HTML
96479
+ Parameters: {"output"=>{"authentication_id"=>"1"}}
96480
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96481
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/new.html.erb within layouts/stenographer/application
96482
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96483
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/new.html.erb within layouts/stenographer/application (0.2ms)
96484
+ Completed 200 OK in 12ms (Views: 5.5ms | ActiveRecord: 0.0ms)
96485
+  (0.9ms) rollback transaction
96486
+  (0.0ms) begin transaction
96487
+  (0.0ms) SAVEPOINT active_record_1
96488
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.952854"], ["updated_at", "2018-07-19 20:17:17.952854"]]
96489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96490
+  (0.1ms) SAVEPOINT active_record_1
96491
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.954772"], ["updated_at", "2018-07-19 20:17:17.954772"]]
96492
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96493
+  (0.0ms) SAVEPOINT active_record_1
96494
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.953924"], ["updated_at", "2018-07-19 20:17:17.955826"]]
96495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96496
+  (0.0ms) SAVEPOINT active_record_1
96497
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.957106"], ["updated_at", "2018-07-19 20:17:17.957106"]]
96498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96499
+  (0.0ms) SAVEPOINT active_record_1
96500
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.956498"], ["updated_at", "2018-07-19 20:17:17.958061"]]
96501
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96502
+ Processing by Stenographer::Admin::OutputsController#new as HTML
96503
+ Parameters: {"output"=>{"authentication_id"=>"1"}}
96504
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96505
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/new.html.erb within layouts/stenographer/application
96506
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/new.html.erb within layouts/stenographer/application (0.0ms)
96507
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
96508
+  (0.5ms) rollback transaction
96509
+  (0.0ms) begin transaction
96510
+  (0.1ms) SAVEPOINT active_record_1
96511
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.962872"], ["updated_at", "2018-07-19 20:17:17.962872"]]
96512
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96513
+  (0.0ms) SAVEPOINT active_record_1
96514
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.964605"], ["updated_at", "2018-07-19 20:17:17.964605"]]
96515
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96516
+  (0.0ms) SAVEPOINT active_record_1
96517
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.963962"], ["updated_at", "2018-07-19 20:17:17.965568"]]
96518
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96519
+  (0.1ms) SAVEPOINT active_record_1
96520
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.966811"], ["updated_at", "2018-07-19 20:17:17.966811"]]
96521
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96522
+  (0.0ms) SAVEPOINT active_record_1
96523
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.966225"], ["updated_at", "2018-07-19 20:17:17.967756"]]
96524
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96525
+ Processing by Stenographer::Admin::OutputsController#new as HTML
96526
+ Parameters: {"output"=>{"authentication_id"=>"1"}}
96527
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96528
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/new.html.erb within layouts/stenographer/application
96529
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/new.html.erb within layouts/stenographer/application (0.0ms)
96530
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
96531
+  (0.5ms) rollback transaction
96532
+  (0.0ms) begin transaction
96533
+  (0.0ms) SAVEPOINT active_record_1
96534
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.972537"], ["updated_at", "2018-07-19 20:17:17.972537"]]
96535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96536
+  (0.0ms) SAVEPOINT active_record_1
96537
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.974150"], ["updated_at", "2018-07-19 20:17:17.974150"]]
96538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96539
+  (0.0ms) SAVEPOINT active_record_1
96540
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.973531"], ["updated_at", "2018-07-19 20:17:17.975246"]]
96541
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96542
+  (0.1ms) SAVEPOINT active_record_1
96543
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.976651"], ["updated_at", "2018-07-19 20:17:17.976651"]]
96544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96545
+  (0.0ms) SAVEPOINT active_record_1
96546
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.975947"], ["updated_at", "2018-07-19 20:17:17.977626"]]
96547
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96548
+ Processing by Stenographer::Admin::OutputsController#show as HTML
96549
+ Parameters: {"id"=>"1"}
96550
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96551
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/show.html.erb within layouts/stenographer/application
96552
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96553
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/show.html.erb within layouts/stenographer/application (0.3ms)
96554
+ Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.1ms)
96555
+  (0.5ms) rollback transaction
96556
+  (0.0ms) begin transaction
96557
+  (0.1ms) SAVEPOINT active_record_1
96558
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.988428"], ["updated_at", "2018-07-19 20:17:17.988428"]]
96559
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96560
+  (0.0ms) SAVEPOINT active_record_1
96561
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.990117"], ["updated_at", "2018-07-19 20:17:17.990117"]]
96562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96563
+  (0.0ms) SAVEPOINT active_record_1
96564
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:17.989483"], ["updated_at", "2018-07-19 20:17:17.991086"]]
96565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96566
+  (0.0ms) SAVEPOINT active_record_1
96567
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:17.992348"], ["updated_at", "2018-07-19 20:17:17.992348"]]
96568
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96569
+  (0.0ms) SAVEPOINT active_record_1
96570
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:17.991759"], ["updated_at", "2018-07-19 20:17:17.993368"]]
96571
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96572
+ Processing by Stenographer::Admin::OutputsController#show as HTML
96573
+ Parameters: {"id"=>"1"}
96574
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96575
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/show.html.erb within layouts/stenographer/application
96576
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/show.html.erb within layouts/stenographer/application (0.0ms)
96577
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
96578
+  (0.5ms) rollback transaction
96579
+  (0.0ms) begin transaction
96580
+  (0.1ms) SAVEPOINT active_record_1
96581
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.002557"], ["updated_at", "2018-07-19 20:17:18.002557"]]
96582
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96583
+  (0.0ms) SAVEPOINT active_record_1
96584
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.004349"], ["updated_at", "2018-07-19 20:17:18.004349"]]
96585
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96586
+  (0.0ms) SAVEPOINT active_record_1
96587
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.003670"], ["updated_at", "2018-07-19 20:17:18.005382"]]
96588
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96589
+  (0.0ms) SAVEPOINT active_record_1
96590
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.006764"], ["updated_at", "2018-07-19 20:17:18.006764"]]
96591
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96592
+  (0.0ms) SAVEPOINT active_record_1
96593
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.006093"], ["updated_at", "2018-07-19 20:17:18.007779"]]
96594
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96595
+ Processing by Stenographer::Admin::OutputsController#index as HTML
96596
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
96597
+  (0.1ms) SELECT DISTINCT "stenographer_authentications"."provider" FROM "stenographer_authentications"
96598
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application
96599
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96600
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application (0.2ms)
96601
+ Completed 200 OK in 8ms (Views: 1.0ms | ActiveRecord: 0.2ms)
96602
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" ORDER BY "stenographer_outputs"."id" DESC LIMIT ? OFFSET ? [["LIMIT", 100], ["OFFSET", 0]]
96603
+  (0.8ms) rollback transaction
96604
+  (0.0ms) begin transaction
96605
+  (0.0ms) SAVEPOINT active_record_1
96606
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.020900"], ["updated_at", "2018-07-19 20:17:18.020900"]]
96607
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96608
+  (0.0ms) SAVEPOINT active_record_1
96609
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.022610"], ["updated_at", "2018-07-19 20:17:18.022610"]]
96610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96611
+  (0.0ms) SAVEPOINT active_record_1
96612
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.021980"], ["updated_at", "2018-07-19 20:17:18.023627"]]
96613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96614
+  (0.0ms) SAVEPOINT active_record_1
96615
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.024940"], ["updated_at", "2018-07-19 20:17:18.024940"]]
96616
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96617
+  (0.0ms) SAVEPOINT active_record_1
96618
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.024340"], ["updated_at", "2018-07-19 20:17:18.025919"]]
96619
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96620
+ Processing by Stenographer::Admin::OutputsController#index as HTML
96621
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
96622
+  (0.0ms) SELECT DISTINCT "stenographer_authentications"."provider" FROM "stenographer_authentications"
96623
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application
96624
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application (0.0ms)
96625
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96626
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" ORDER BY "stenographer_outputs"."id" DESC LIMIT ? OFFSET ? [["LIMIT", 100], ["OFFSET", 0]]
96627
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96628
+  (0.4ms) rollback transaction
96629
+  (0.0ms) begin transaction
96630
+  (0.0ms) SAVEPOINT active_record_1
96631
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.031410"], ["updated_at", "2018-07-19 20:17:18.031410"]]
96632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96633
+  (0.0ms) SAVEPOINT active_record_1
96634
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.033041"], ["updated_at", "2018-07-19 20:17:18.033041"]]
96635
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96636
+  (0.1ms) SAVEPOINT active_record_1
96637
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.032436"], ["updated_at", "2018-07-19 20:17:18.034043"]]
96638
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96639
+  (0.0ms) SAVEPOINT active_record_1
96640
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.035307"], ["updated_at", "2018-07-19 20:17:18.035307"]]
96641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96642
+  (0.0ms) SAVEPOINT active_record_1
96643
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.034684"], ["updated_at", "2018-07-19 20:17:18.036254"]]
96644
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96645
+ Processing by Stenographer::Admin::OutputsController#index as HTML
96646
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
96647
+  (0.1ms) SELECT DISTINCT "stenographer_authentications"."provider" FROM "stenographer_authentications"
96648
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application
96649
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application (0.0ms)
96650
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96651
+  (0.4ms) rollback transaction
96652
+  (0.0ms) begin transaction
96653
+  (0.0ms) SAVEPOINT active_record_1
96654
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.041132"], ["updated_at", "2018-07-19 20:17:18.041132"]]
96655
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96656
+  (0.0ms) SAVEPOINT active_record_1
96657
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.042730"], ["updated_at", "2018-07-19 20:17:18.042730"]]
96658
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96659
+  (0.0ms) SAVEPOINT active_record_1
96660
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.042122"], ["updated_at", "2018-07-19 20:17:18.043705"]]
96661
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96662
+  (0.0ms) SAVEPOINT active_record_1
96663
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.044994"], ["updated_at", "2018-07-19 20:17:18.044994"]]
96664
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96665
+  (0.0ms) SAVEPOINT active_record_1
96666
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.044357"], ["updated_at", "2018-07-19 20:17:18.046054"]]
96667
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96668
+ Processing by Stenographer::Admin::OutputsController#index as HTML
96669
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
96670
+  (0.1ms) SELECT DISTINCT "stenographer_authentications"."provider" FROM "stenographer_authentications"
96671
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application
96672
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application (0.0ms)
96673
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.2ms)
96674
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
96675
+  (0.5ms) rollback transaction
96676
+  (0.1ms) begin transaction
96677
+  (0.0ms) SAVEPOINT active_record_1
96678
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.051202"], ["updated_at", "2018-07-19 20:17:18.051202"]]
96679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96680
+  (0.0ms) SAVEPOINT active_record_1
96681
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.053015"], ["updated_at", "2018-07-19 20:17:18.053015"]]
96682
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96683
+  (0.0ms) SAVEPOINT active_record_1
96684
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.052351"], ["updated_at", "2018-07-19 20:17:18.054075"]]
96685
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96686
+  (0.0ms) SAVEPOINT active_record_1
96687
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.055360"], ["updated_at", "2018-07-19 20:17:18.055360"]]
96688
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96689
+  (0.0ms) SAVEPOINT active_record_1
96690
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.054778"], ["updated_at", "2018-07-19 20:17:18.056366"]]
96691
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96692
+ Processing by Stenographer::Admin::OutputsController#index as HTML
96693
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
96694
+  (0.1ms) SELECT DISTINCT "stenographer_authentications"."provider" FROM "stenographer_authentications"
96695
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application
96696
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/index.html.erb within layouts/stenographer/application (0.0ms)
96697
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96698
+ Stenographer::Authentication Load (0.1ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications"
96699
+  (0.5ms) rollback transaction
96700
+  (0.0ms) begin transaction
96701
+  (0.0ms) SAVEPOINT active_record_1
96702
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.061604"], ["updated_at", "2018-07-19 20:17:18.061604"]]
96703
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96704
+  (0.0ms) SAVEPOINT active_record_1
96705
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.063181"], ["updated_at", "2018-07-19 20:17:18.063181"]]
96706
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96707
+  (0.0ms) SAVEPOINT active_record_1
96708
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.062582"], ["updated_at", "2018-07-19 20:17:18.064178"]]
96709
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96710
+  (0.0ms) SAVEPOINT active_record_1
96711
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.065388"], ["updated_at", "2018-07-19 20:17:18.065388"]]
96712
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96713
+  (0.0ms) SAVEPOINT active_record_1
96714
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.064799"], ["updated_at", "2018-07-19 20:17:18.066292"]]
96715
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96716
+ Processing by Stenographer::Admin::OutputsController#edit as HTML
96717
+ Parameters: {"id"=>"1"}
96718
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96719
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
96720
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/edit.html.erb within layouts/stenographer/application
96721
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96722
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/edit.html.erb within layouts/stenographer/application (0.2ms)
96723
+ Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.1ms)
96724
+  (0.5ms) rollback transaction
96725
+  (0.0ms) begin transaction
96726
+  (0.0ms) SAVEPOINT active_record_1
96727
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.077163"], ["updated_at", "2018-07-19 20:17:18.077163"]]
96728
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96729
+  (0.1ms) SAVEPOINT active_record_1
96730
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.079056"], ["updated_at", "2018-07-19 20:17:18.079056"]]
96731
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96732
+  (0.0ms) SAVEPOINT active_record_1
96733
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.078368"], ["updated_at", "2018-07-19 20:17:18.080146"]]
96734
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96735
+  (0.1ms) SAVEPOINT active_record_1
96736
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.081335"], ["updated_at", "2018-07-19 20:17:18.081335"]]
96737
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96738
+  (0.0ms) SAVEPOINT active_record_1
96739
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.080783"], ["updated_at", "2018-07-19 20:17:18.082244"]]
96740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96741
+ Processing by Stenographer::Admin::OutputsController#edit as HTML
96742
+ Parameters: {"id"=>"1"}
96743
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96744
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
96745
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/edit.html.erb within layouts/stenographer/application
96746
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/edit.html.erb within layouts/stenographer/application (0.0ms)
96747
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96748
+  (0.5ms) rollback transaction
96749
+  (0.0ms) begin transaction
96750
+  (0.0ms) SAVEPOINT active_record_1
96751
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.086735"], ["updated_at", "2018-07-19 20:17:18.086735"]]
96752
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96753
+  (0.0ms) SAVEPOINT active_record_1
96754
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.088205"], ["updated_at", "2018-07-19 20:17:18.088205"]]
96755
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96756
+  (0.0ms) SAVEPOINT active_record_1
96757
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.087657"], ["updated_at", "2018-07-19 20:17:18.089139"]]
96758
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96759
+  (0.0ms) SAVEPOINT active_record_1
96760
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.090361"], ["updated_at", "2018-07-19 20:17:18.090361"]]
96761
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96762
+  (0.0ms) SAVEPOINT active_record_1
96763
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.089808"], ["updated_at", "2018-07-19 20:17:18.091287"]]
96764
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96765
+ Processing by Stenographer::Admin::OutputsController#edit as HTML
96766
+ Parameters: {"id"=>"1"}
96767
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96768
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
96769
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/edit.html.erb within layouts/stenographer/application
96770
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/outputs/edit.html.erb within layouts/stenographer/application (0.1ms)
96771
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms)
96772
+  (0.6ms) rollback transaction
96773
+  (0.0ms) begin transaction
96774
+  (0.0ms) SAVEPOINT active_record_1
96775
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.096956"], ["updated_at", "2018-07-19 20:17:18.096956"]]
96776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96777
+  (0.0ms) SAVEPOINT active_record_1
96778
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.098529"], ["updated_at", "2018-07-19 20:17:18.098529"]]
96779
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96780
+  (0.0ms) SAVEPOINT active_record_1
96781
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.097950"], ["updated_at", "2018-07-19 20:17:18.099444"]]
96782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96783
+  (0.0ms) SAVEPOINT active_record_1
96784
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.100642"], ["updated_at", "2018-07-19 20:17:18.100642"]]
96785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96786
+  (0.0ms) SAVEPOINT active_record_1
96787
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.100099"], ["updated_at", "2018-07-19 20:17:18.101539"]]
96788
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96789
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96790
+ Processing by Stenographer::Admin::OutputsController#destroy as HTML
96791
+ Parameters: {"id"=>"1"}
96792
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96793
+  (0.0ms) SAVEPOINT active_record_1
96794
+ Stenographer::Output Destroy (0.0ms) DELETE FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? [["id", 1]]
96795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96796
+ Redirected to http://test.host/stenographer/admin/outputs
96797
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
96798
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_outputs"
96799
+  (0.5ms) rollback transaction
96800
+  (0.0ms) begin transaction
96801
+  (0.1ms) SAVEPOINT active_record_1
96802
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.106738"], ["updated_at", "2018-07-19 20:17:18.106738"]]
96803
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96804
+  (0.0ms) SAVEPOINT active_record_1
96805
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.108636"], ["updated_at", "2018-07-19 20:17:18.108636"]]
96806
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96807
+  (0.0ms) SAVEPOINT active_record_1
96808
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.107891"], ["updated_at", "2018-07-19 20:17:18.109648"]]
96809
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96810
+  (0.0ms) SAVEPOINT active_record_1
96811
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.110910"], ["updated_at", "2018-07-19 20:17:18.110910"]]
96812
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96813
+  (0.0ms) SAVEPOINT active_record_1
96814
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.110338"], ["updated_at", "2018-07-19 20:17:18.112084"]]
96815
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96816
+ Processing by Stenographer::Admin::OutputsController#destroy as HTML
96817
+ Parameters: {"id"=>"1"}
96818
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96819
+  (0.0ms) SAVEPOINT active_record_1
96820
+ Stenographer::Output Destroy (0.1ms) DELETE FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? [["id", 1]]
96821
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96822
+ Redirected to http://test.host/stenographer/admin/outputs
96823
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
96824
+  (0.5ms) rollback transaction
96825
+  (0.0ms) begin transaction
96826
+  (0.0ms) SAVEPOINT active_record_1
96827
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.117179"], ["updated_at", "2018-07-19 20:17:18.117179"]]
96828
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96829
+  (0.0ms) SAVEPOINT active_record_1
96830
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.119034"], ["updated_at", "2018-07-19 20:17:18.119034"]]
96831
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96832
+  (0.0ms) SAVEPOINT active_record_1
96833
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.118366"], ["updated_at", "2018-07-19 20:17:18.120065"]]
96834
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96835
+  (0.0ms) SAVEPOINT active_record_1
96836
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.121298"], ["updated_at", "2018-07-19 20:17:18.121298"]]
96837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96838
+  (0.0ms) SAVEPOINT active_record_1
96839
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.120718"], ["updated_at", "2018-07-19 20:17:18.122218"]]
96840
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96841
+ Processing by Stenographer::Admin::OutputsController#update as HTML
96842
+ Parameters: {"configuration"=>{"other_stuff"=>"4", "stuff"=>"3"}, "id"=>"1"}
96843
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96844
+  (0.0ms) SAVEPOINT active_record_1
96845
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
96846
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "configuration" = ?, "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["configuration", "{\"other_stuff\":\"4\",\"stuff\":\"3\"}"], ["filters", "null"], ["updated_at", "2018-07-19 20:17:18.124783"], ["id", 1]]
96847
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96848
+ Redirected to http://test.host/stenographer/admin/outputs/1
96849
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
96850
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96851
+  (0.5ms) rollback transaction
96852
+  (0.0ms) begin transaction
96853
+  (0.0ms) SAVEPOINT active_record_1
96854
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.128643"], ["updated_at", "2018-07-19 20:17:18.128643"]]
96855
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96856
+  (0.0ms) SAVEPOINT active_record_1
96857
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.130268"], ["updated_at", "2018-07-19 20:17:18.130268"]]
96858
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96859
+  (0.0ms) SAVEPOINT active_record_1
96860
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 2], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-05 20:17:18.129651"], ["updated_at", "2018-07-19 20:17:18.131206"]]
96861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96862
+  (0.0ms) SAVEPOINT active_record_1
96863
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.132431"], ["updated_at", "2018-07-19 20:17:18.132431"]]
96864
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96865
+  (0.0ms) SAVEPOINT active_record_1
96866
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 3], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-12 20:17:18.131868"], ["updated_at", "2018-07-19 20:17:18.133318"]]
96867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96868
+ Processing by Stenographer::Admin::OutputsController#update as HTML
96869
+ Parameters: {"configuration"=>{"other_stuff"=>"4", "stuff"=>"3"}, "id"=>"1"}
96870
+ Stenographer::Output Load (0.0ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96871
+  (0.0ms) SAVEPOINT active_record_1
96872
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
96873
+ Stenographer::Output Update (0.1ms) UPDATE "stenographer_outputs" SET "configuration" = ?, "filters" = ?, "updated_at" = ? WHERE "stenographer_outputs"."id" = ? [["configuration", "{\"other_stuff\":\"4\",\"stuff\":\"3\"}"], ["filters", "null"], ["updated_at", "2018-07-19 20:17:18.135812"], ["id", 1]]
96874
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96875
+ Redirected to http://test.host/stenographer/admin/outputs/1
96876
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
96877
+  (0.5ms) rollback transaction
96878
+  (0.0ms) begin transaction
96879
+  (0.0ms) rollback transaction
96880
+  (0.0ms) begin transaction
96881
+  (0.0ms) SAVEPOINT active_record_1
96882
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.140377"], ["updated_at", "2018-07-19 20:17:18.140377"]]
96883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96884
+  (0.0ms) SAVEPOINT active_record_1
96885
+ Stenographer::Authentication Update (0.1ms) UPDATE "stenographer_authentications" SET "credentials" = ?, "updated_at" = ? WHERE "stenographer_authentications"."id" = ? [["credentials", nil], ["updated_at", "2018-07-19 20:17:18.141565"], ["id", 1]]
96886
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96887
+  (0.4ms) rollback transaction
96888
+  (0.0ms) begin transaction
96889
+  (0.0ms) SAVEPOINT active_record_1
96890
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.143614"], ["updated_at", "2018-07-19 20:17:18.143614"]]
96891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96892
+  (0.0ms) SAVEPOINT active_record_1
96893
+ Stenographer::Authentication Update (0.1ms) UPDATE "stenographer_authentications" SET "credentials" = ?, "updated_at" = ? WHERE "stenographer_authentications"."id" = ? [["credentials", "{\"country\":\"Ibiza\"}"], ["updated_at", "2018-07-19 20:17:18.144775"], ["id", 1]]
96894
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96895
+  (0.4ms) rollback transaction
96896
+  (0.0ms) begin transaction
96897
+  (0.0ms) SAVEPOINT active_record_1
96898
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "alpha"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.146925"], ["updated_at", "2018-07-19 20:17:18.146925"]]
96899
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96900
+  (0.0ms) SAVEPOINT active_record_1
96901
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "alpha"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.148143"], ["updated_at", "2018-07-19 20:17:18.148143"]]
96902
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96903
+  (0.0ms) SAVEPOINT active_record_1
96904
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "beta"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.149044"], ["updated_at", "2018-07-19 20:17:18.149044"]]
96905
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96906
+  (0.1ms) SELECT DISTINCT "stenographer_authentications"."provider" FROM "stenographer_authentications"
96907
+  (0.4ms) rollback transaction
96908
+  (0.1ms) begin transaction
96909
+  (0.0ms) rollback transaction
96910
+  (0.1ms) begin transaction
96911
+  (0.0ms) SAVEPOINT active_record_1
96912
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.154053"], ["updated_at", "2018-07-19 20:17:18.154053"]]
96913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96914
+  (0.5ms) rollback transaction
96915
+  (0.0ms) begin transaction
96916
+  (0.1ms) SAVEPOINT active_record_1
96917
+ Stenographer::Authentication Create (0.5ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.157645"], ["updated_at", "2018-07-19 20:17:18.157645"]]
96918
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96919
+  (0.5ms) rollback transaction
96920
+  (0.0ms) begin transaction
96921
+  (0.0ms) SAVEPOINT active_record_1
96922
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.162023"], ["updated_at", "2018-07-19 20:17:18.162023"]]
96923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96924
+  (0.0ms) SAVEPOINT active_record_1
96925
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:18.163570"], ["updated_at", "2018-07-19 20:17:18.163570"]]
96926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96927
+  (0.0ms) SAVEPOINT active_record_1
96928
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:18.164751"], ["updated_at", "2018-07-19 20:17:18.164751"]]
96929
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96930
+  (0.5ms) rollback transaction
96931
+  (0.0ms) begin transaction
96932
+  (0.0ms) SAVEPOINT active_record_1
96933
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.171707"], ["updated_at", "2018-07-19 20:17:18.171707"]]
96934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96935
+  (0.1ms) SAVEPOINT active_record_1
96936
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:18.173127"], ["updated_at", "2018-07-19 20:17:18.173127"]]
96937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96938
+  (0.0ms) SAVEPOINT active_record_1
96939
+ Stenographer::Change Create (0.2ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:18.174260"], ["updated_at", "2018-07-19 20:17:18.174260"]]
96940
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96941
+  (0.4ms) rollback transaction
96942
+  (0.0ms) begin transaction
96943
+  (0.1ms) SAVEPOINT active_record_1
96944
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.177882"], ["updated_at", "2018-07-19 20:17:18.177882"]]
96945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96946
+  (0.0ms) SAVEPOINT active_record_1
96947
+ Stenographer::Output Create (0.2ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:18.179314"], ["updated_at", "2018-07-19 20:17:18.179314"]]
96948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96949
+  (0.0ms) SAVEPOINT active_record_1
96950
+ Stenographer::Change Create (0.2ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:18.180551"], ["updated_at", "2018-07-19 20:17:18.180551"]]
96951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96952
+  (0.5ms) rollback transaction
96953
+  (0.0ms) begin transaction
96954
+  (0.0ms) SAVEPOINT active_record_1
96955
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-19 20:17:18.184081"], ["updated_at", "2018-07-19 20:17:18.184081"]]
96956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96957
+  (0.1ms) SAVEPOINT active_record_1
96958
+ Stenographer::Output Create (0.1ms) INSERT INTO "stenographer_outputs" ("authentication_id", "configuration", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["authentication_id", 1], ["configuration", "{\"aut\":[13]}"], ["created_at", "2018-07-19 20:17:18.185606"], ["updated_at", "2018-07-19 20:17:18.185606"]]
96959
+  (0.1ms) RELEASE SAVEPOINT active_record_1
96960
+  (0.0ms) SAVEPOINT active_record_1
96961
+ Stenographer::Change Create (0.1ms) INSERT INTO "stenographer_changes" ("message", "visible", "change_type", "environments", "tracker_ids", "source", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["message", "They’ve got as much sex appeal as a road accident."], ["visible", 0], ["change_type", "improved"], ["environments", "Kamino"], ["tracker_ids", "#56789"], ["source", "{}"], ["created_at", "2018-07-19 20:17:18.186997"], ["updated_at", "2018-07-19 20:17:18.186997"]]
96962
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96963
+  (0.5ms) rollback transaction
96964
+  (0.0ms) begin transaction
96965
+  (0.0ms) rollback transaction
96966
+  (0.0ms) begin transaction
96967
+  (0.0ms) rollback transaction
96968
+  (0.1ms) begin transaction
96969
+  (0.0ms) rollback transaction
96970
+  (0.0ms) begin transaction
96971
+  (0.0ms) rollback transaction
96972
+  (0.0ms) begin transaction
96973
+  (0.0ms) rollback transaction
96974
+  (0.0ms) begin transaction
96975
+  (0.0ms) rollback transaction
96976
+  (0.0ms) begin transaction
96977
+  (0.0ms) SAVEPOINT active_record_1
96978
+ Stenographer::Authentication Create (0.4ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.203479"], ["updated_at", "2018-07-19 20:17:18.204238"]]
96979
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96980
+  (0.0ms) SAVEPOINT active_record_1
96981
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.205279"], ["updated_at", "2018-07-19 20:17:18.205763"]]
96982
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96983
+ Processing by Stenographer::Admin::AuthenticationsController#show as HTML
96984
+ Parameters: {"id"=>"1"}
96985
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
96986
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/show.html.erb within layouts/stenographer/application
96987
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96988
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/show.html.erb within layouts/stenographer/application (0.2ms)
96989
+ Completed 200 OK in 11ms (Views: 5.4ms | ActiveRecord: 0.0ms)
96990
+  (0.5ms) rollback transaction
96991
+  (0.1ms) begin transaction
96992
+  (0.0ms) SAVEPOINT active_record_1
96993
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.220444"], ["updated_at", "2018-07-19 20:17:18.221131"]]
96994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96995
+  (0.0ms) SAVEPOINT active_record_1
96996
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.222088"], ["updated_at", "2018-07-19 20:17:18.222543"]]
96997
+  (0.0ms) RELEASE SAVEPOINT active_record_1
96998
+ Processing by Stenographer::Admin::AuthenticationsController#show as HTML
96999
+ Parameters: {"id"=>"1"}
97000
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
97001
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/show.html.erb within layouts/stenographer/application
97002
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/show.html.erb within layouts/stenographer/application (0.1ms)
97003
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
97004
+  (0.4ms) rollback transaction
97005
+  (0.0ms) begin transaction
97006
+  (0.1ms) SAVEPOINT active_record_1
97007
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.226661"], ["updated_at", "2018-07-19 20:17:18.227353"]]
97008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97009
+  (0.0ms) SAVEPOINT active_record_1
97010
+ Stenographer::Authentication Create (0.2ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.228359"], ["updated_at", "2018-07-19 20:17:18.228882"]]
97011
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97012
+ Processing by Stenographer::Admin::AuthenticationsController#index as HTML
97013
+ Stenographer::Authentication Load (0.1ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."provider" = ? LIMIT ? [["provider", "slack"], ["LIMIT", 1]]
97014
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application
97015
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
97016
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application (0.2ms)
97017
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.1ms)
97018
+ Stenographer::Authentication Load (0.1ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" ORDER BY "stenographer_authentications"."id" DESC LIMIT ? OFFSET ? [["LIMIT", 100], ["OFFSET", 0]]
97019
+  (0.4ms) rollback transaction
97020
+  (0.0ms) begin transaction
97021
+  (0.0ms) SAVEPOINT active_record_1
97022
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.239676"], ["updated_at", "2018-07-19 20:17:18.240361"]]
97023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97024
+  (0.0ms) SAVEPOINT active_record_1
97025
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.241291"], ["updated_at", "2018-07-19 20:17:18.241757"]]
97026
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97027
+ Processing by Stenographer::Admin::AuthenticationsController#index as HTML
97028
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."provider" = ? LIMIT ? [["provider", "slack"], ["LIMIT", 1]]
97029
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application
97030
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application (0.0ms)
97031
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
97032
+  (0.5ms) rollback transaction
97033
+  (0.0ms) begin transaction
97034
+  (0.0ms) SAVEPOINT active_record_1
97035
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.245309"], ["updated_at", "2018-07-19 20:17:18.245872"]]
97036
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97037
+  (0.0ms) SAVEPOINT active_record_1
97038
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.246809"], ["updated_at", "2018-07-19 20:17:18.247258"]]
97039
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97040
+ Processing by Stenographer::Admin::AuthenticationsController#index as HTML
97041
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."provider" = ? LIMIT ? [["provider", "slack"], ["LIMIT", 1]]
97042
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application
97043
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application (0.0ms)
97044
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
97045
+  (0.4ms) rollback transaction
97046
+  (0.0ms) begin transaction
97047
+  (0.0ms) SAVEPOINT active_record_1
97048
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.250812"], ["updated_at", "2018-07-19 20:17:18.251443"]]
97049
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97050
+  (0.0ms) SAVEPOINT active_record_1
97051
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.252364"], ["updated_at", "2018-07-19 20:17:18.252807"]]
97052
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97053
+ Processing by Stenographer::Admin::AuthenticationsController#index as HTML
97054
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."provider" = ? LIMIT ? [["provider", "slack"], ["LIMIT", 1]]
97055
+ Rendering /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application
97056
+ Rendered /Users/michaelcarey/code/stenographer/app/views/stenographer/admin/authentications/index.html.erb within layouts/stenographer/application (0.0ms)
97057
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
97058
+ Stenographer::Authentication Load (0.0ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" ORDER BY "stenographer_authentications"."id" DESC LIMIT ? OFFSET ? [["LIMIT", 100], ["OFFSET", 0]]
97059
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
97060
+  (0.5ms) rollback transaction
97061
+  (0.0ms) begin transaction
97062
+  (0.0ms) SAVEPOINT active_record_1
97063
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.257149"], ["updated_at", "2018-07-19 20:17:18.257737"]]
97064
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97065
+  (0.0ms) SAVEPOINT active_record_1
97066
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.258620"], ["updated_at", "2018-07-19 20:17:18.259067"]]
97067
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97068
+ Processing by Stenographer::Admin::AuthenticationsController#destroy as HTML
97069
+ Parameters: {"id"=>"1"}
97070
+ Stenographer::Authentication Load (0.1ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
97071
+  (0.0ms) SAVEPOINT active_record_1
97072
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."authentication_id" = ? [["authentication_id", 1]]
97073
+ Stenographer::Authentication Destroy (0.3ms) DELETE FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? [["id", 1]]
97074
+  (0.1ms) RELEASE SAVEPOINT active_record_1
97075
+ Redirected to http://test.host/stenographer/admin/authentications
97076
+ Completed 302 Found in 9ms (ActiveRecord: 0.6ms)
97077
+  (0.4ms) rollback transaction
97078
+  (0.0ms) begin transaction
97079
+  (0.0ms) SAVEPOINT active_record_1
97080
+ Stenographer::Authentication Create (0.3ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "slack"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-05 20:17:18.271108"], ["updated_at", "2018-07-19 20:17:18.271840"]]
97081
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97082
+  (0.0ms) SAVEPOINT active_record_1
97083
+ Stenographer::Authentication Create (0.1ms) INSERT INTO "stenographer_authentications" ("provider", "uid", "credentials", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["provider", "Rapidash"], ["uid", "31d9552b293644c86dca791dc97c5091"], ["credentials", "{\"token\":\"1234\"}"], ["created_at", "2018-07-12 20:17:18.272827"], ["updated_at", "2018-07-19 20:17:18.273305"]]
97084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97085
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
97086
+ Processing by Stenographer::Admin::AuthenticationsController#destroy as HTML
97087
+ Parameters: {"id"=>"1"}
97088
+ Stenographer::Authentication Load (0.1ms) SELECT "stenographer_authentications".* FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
97089
+  (0.1ms) SAVEPOINT active_record_1
97090
+ Stenographer::Output Load (0.1ms) SELECT "stenographer_outputs".* FROM "stenographer_outputs" WHERE "stenographer_outputs"."authentication_id" = ? [["authentication_id", 1]]
97091
+ Stenographer::Authentication Destroy (0.1ms) DELETE FROM "stenographer_authentications" WHERE "stenographer_authentications"."id" = ? [["id", 1]]
97092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
97093
+ Redirected to http://test.host/stenographer/admin/authentications
97094
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
97095
+  (0.1ms) SELECT COUNT(*) FROM "stenographer_authentications"
97096
+  (0.5ms) rollback transaction