mr_common 1.2.0 → 1.3.0

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.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -2
  3. data/app/controllers/mr_common/registrations/export_controller.rb +4 -1
  4. data/app/models/concerns/mr_common/csv_exportable.rb +2 -11
  5. data/app/models/mr_common/csv_exporter.rb +35 -0
  6. data/app/models/mr_common/default_csv_export_adapter.rb +23 -0
  7. data/lib/mr_common/version.rb +1 -1
  8. data/spec/dummy/log/development.log +797 -0
  9. data/spec/dummy/log/test.log +704 -0
  10. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ba/bA8hAXQKANJzBTuQbpIP80FrF8klqsuYOtwuosQ4c5M.cache +0 -0
  11. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/F2/F20HIwdY1_oIp6GrPRxocFAmMMtPNn05JWkUM0eiloY.cache +0 -0
  12. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LT/LTto-AZOGT_7LqZRJJlYVLaZXme34JlW6i5YO1-hrGU.cache +1 -0
  13. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/M-/m-gYrUz1942LmvKayV1K_Do9TtnA6UvVY_7yHHSxBTY.cache +0 -0
  14. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PE/pEFyHpYnSNZ7VFg7gEphAXtD136lqFr1bvNrjOVmGLw.cache +2 -0
  15. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/PF/pfcazMoEPzIlvi6vy1SWeojc3_EkULHyrhNJIbgLTXg.cache +0 -0
  16. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cg/Cg9p5LkxKD-IRPNf-k1yZ_HWd6ZX3JzR0yWQ985G0ZU.cache +1 -0
  17. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/f4/F4dxUCWat3Nq8_1jItIFx4nkOhrAiNFEtQDOTQXbbQI.cache +1 -0
  18. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iD/IdsFsTMyyW-5MqmBEcAYJWX01RqeThhknBeeEHP_x3Y.cache +0 -0
  19. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iD/iddALNcjHFMWIbupLvJ9nEWVgsAlQRi6N-dimttO4lU.cache +1 -0
  20. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iI/iIBc8Ww_W04keUlRNdzPYMs398pQYMiqA8A7fh5g2hQ.cache +1 -0
  21. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n0/N0766whV3_I5PD4CDMXdk9UJd5IHi129OMooZK4kGtU.cache +0 -0
  22. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vP/Vp6TmwPplvA0CbnC7GxMNgD6E2vUKJsrefNNq-2cX48.cache +1 -0
  23. data/spec/dummy/tmp/pids/server.pid +1 -1
  24. metadata +30 -2
@@ -14230,3 +14230,707 @@ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
14230
14230
  Processing by MrCommon::DashboardController#index as HTML
14231
14231
  Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14232
14232
   (0.2ms) ROLLBACK
14233
+  (0.3ms) BEGIN
14234
+ User Exists (0.7ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "user1@example.com"], ["LIMIT", 1]]
14235
+ User Create (0.6ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "user1@example.com"], ["encrypted_password", "$2a$04$4YEi6iz6PUprfCapaQB0N.WCsAsT/ZnTBDMR5i7/gLo7Yfh6ZFdm."], ["created_at", "2019-03-27 20:03:26.738048"], ["updated_at", "2019-03-27 20:03:26.738048"]]
14236
+  (40.1ms) COMMIT
14237
+  (0.3ms) BEGIN
14238
+  (0.3ms) SAVEPOINT active_record_1
14239
+ MrCommon::Reminder Exists (0.6ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14240
+ MrCommon::Reminder Create (0.5ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:26.800254"], ["end_time", "2019-03-28 20:03:26.800450"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.361683"], ["updated_at", "2019-03-27 20:03:27.361683"]]
14241
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14242
+ Processing by MrCommon::Reminders::RemindersController#destroy as HTML
14243
+ Parameters: {"id"=>"1"}
14244
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14245
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
14246
+  (0.1ms) SAVEPOINT active_record_1
14247
+ MrCommon::Reminder Destroy (0.3ms) DELETE FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 [["id", 1]]
14248
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14249
+ Redirected to http://test.host/common/reminders
14250
+ Completed 302 Found in 7ms (ActiveRecord: 1.3ms)
14251
+  (0.3ms) ROLLBACK
14252
+  (0.2ms) BEGIN
14253
+  (0.2ms) SAVEPOINT active_record_1
14254
+ MrCommon::Reminder Exists (0.4ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14255
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27.376252"], ["end_time", "2019-03-28 20:03:27.376357"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.377846"], ["updated_at", "2019-03-27 20:03:27.377846"]]
14256
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14257
+ Processing by MrCommon::Reminders::RemindersController#edit as HTML
14258
+ Parameters: {"id"=>"2"}
14259
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14260
+ MrCommon::Reminder Load (0.3ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]]
14261
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/edit.html.erb within layouts/mr_common/layout
14262
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14263
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/edit.html.erb within layouts/mr_common/layout (0.2ms)
14264
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14265
+ Completed 200 OK in 12ms (Views: 6.2ms | ActiveRecord: 0.6ms)
14266
+  (0.3ms) ROLLBACK
14267
+  (0.2ms) BEGIN
14268
+ Processing by MrCommon::Reminders::RemindersController#index as HTML
14269
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14270
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/index.html.erb within layouts/mr_common/layout
14271
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14272
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/index.html.erb within layouts/mr_common/layout (0.2ms)
14273
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14274
+ Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.3ms)
14275
+  (0.2ms) ROLLBACK
14276
+  (0.1ms) BEGIN
14277
+  (0.2ms) SAVEPOINT active_record_1
14278
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14279
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27.403590"], ["end_time", "2019-03-28 20:03:27.403716"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.405163"], ["updated_at", "2019-03-27 20:03:27.405163"]]
14280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14281
+ Processing by MrCommon::Reminders::RemindersController#update as HTML
14282
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:03:27 UTC", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:03:27 UTC", "summary"=>"new summary", "time_zone"=>"Etc/UTC"}, "id"=>"3"}
14283
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14284
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]]
14285
+  (0.1ms) SAVEPOINT active_record_1
14286
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 AND "mr_common_reminders"."id" != $2 LIMIT $3 [["slug", "test-slug"], ["id", 3], ["LIMIT", 1]]
14287
+ MrCommon::Reminder Update (0.3ms) UPDATE "mr_common_reminders" SET "summary" = $1, "start_time" = $2, "end_time" = $3, "updated_at" = $4 WHERE "mr_common_reminders"."id" = $5 [["summary", "new summary"], ["start_time", "2019-03-28 20:03:27"], ["end_time", "2019-03-28 20:03:27"], ["updated_at", "2019-03-27 20:03:27.416659"], ["id", 3]]
14288
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14289
+ Redirected to http://test.host/common/reminders/3
14290
+ Completed 302 Found in 6ms (ActiveRecord: 1.5ms)
14291
+  (0.1ms) ROLLBACK
14292
+  (0.2ms) BEGIN
14293
+ Processing by MrCommon::Reminders::RemindersController#create as HTML
14294
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:03:27 UTC", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:03:27 UTC", "summary"=>"test summary", "time_zone"=>"Etc/UTC"}}
14295
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14296
+  (0.1ms) SAVEPOINT active_record_1
14297
+ MrCommon::Reminder Exists (0.2ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14298
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27"], ["end_time", "2019-03-28 20:03:27"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.424040"], ["updated_at", "2019-03-27 20:03:27.424040"]]
14299
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14300
+ Redirected to http://test.host/common/reminders/4
14301
+ Completed 302 Found in 4ms (ActiveRecord: 1.0ms)
14302
+ MrCommon::Reminder Load (0.3ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" ORDER BY "mr_common_reminders"."id" DESC LIMIT $1 [["LIMIT", 1]]
14303
+  (0.2ms) ROLLBACK
14304
+  (0.1ms) BEGIN
14305
+  (0.2ms) SAVEPOINT active_record_1
14306
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14307
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27.428347"], ["end_time", "2019-03-28 20:03:27.428624"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.430044"], ["updated_at", "2019-03-27 20:03:27.430044"]]
14308
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14309
+ Processing by MrCommon::Reminders::RemindersController#show as HTML
14310
+ Parameters: {"id"=>"5"}
14311
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14312
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]]
14313
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/show.html.erb within layouts/mr_common/layout
14314
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14315
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/show.html.erb within layouts/mr_common/layout (0.2ms)
14316
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14317
+ Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.5ms)
14318
+  (0.2ms) ROLLBACK
14319
+  (0.1ms) BEGIN
14320
+  (0.1ms) SAVEPOINT active_record_1
14321
+ MrCommon::Reminder Exists (0.2ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14322
+ MrCommon::Reminder Create (0.2ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27.439826"], ["end_time", "2019-03-28 20:03:27.439928"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.441153"], ["updated_at", "2019-03-27 20:03:27.441153"]]
14323
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14324
+ Processing by MrCommon::Reminders::RemindersController#destroy as HTML
14325
+ Parameters: {"id"=>"6"}
14326
+ Completed 401 Unauthorized in 4ms (ActiveRecord: 0.0ms)
14327
+  (0.2ms) ROLLBACK
14328
+  (0.1ms) BEGIN
14329
+ Processing by MrCommon::Reminders::RemindersController#create as HTML
14330
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:03:27 UTC", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:03:27 UTC", "summary"=>"test summary", "time_zone"=>"Etc/UTC"}}
14331
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14332
+  (0.1ms) ROLLBACK
14333
+  (0.1ms) BEGIN
14334
+  (0.1ms) SAVEPOINT active_record_1
14335
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14336
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27.454255"], ["end_time", "2019-03-28 20:03:27.454324"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.455623"], ["updated_at", "2019-03-27 20:03:27.455623"]]
14337
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14338
+ Processing by MrCommon::Reminders::RemindersController#edit as HTML
14339
+ Parameters: {"id"=>"7"}
14340
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14341
+  (0.2ms) ROLLBACK
14342
+  (0.2ms) BEGIN
14343
+ Processing by MrCommon::Reminders::RemindersController#index as HTML
14344
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14345
+  (0.3ms) ROLLBACK
14346
+  (0.2ms) BEGIN
14347
+  (0.2ms) SAVEPOINT active_record_1
14348
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14349
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27.462870"], ["end_time", "2019-03-28 20:03:27.463013"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.464485"], ["updated_at", "2019-03-27 20:03:27.464485"]]
14350
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14351
+ Processing by MrCommon::Reminders::RemindersController#show as HTML
14352
+ Parameters: {"id"=>"8"}
14353
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14354
+  (0.2ms) ROLLBACK
14355
+  (0.1ms) BEGIN
14356
+  (0.1ms) SAVEPOINT active_record_1
14357
+ MrCommon::Reminder Exists (0.2ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14358
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:03:27.468720"], ["end_time", "2019-03-28 20:03:27.468795"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:03:27.469868"], ["updated_at", "2019-03-27 20:03:27.469868"]]
14359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14360
+ Processing by MrCommon::Reminders::RemindersController#update as HTML
14361
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:03:27 UTC", "first_name"=>"new summary", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:03:27 UTC", "summary"=>"test summary", "time_zone"=>"Etc/UTC"}, "id"=>"9"}
14362
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14363
+  (0.1ms) ROLLBACK
14364
+  (0.1ms) BEGIN
14365
+ Processing by MrCommon::Registrations::PublicController#create as HTML
14366
+ Parameters: {"registration"=>{"company_name"=>"company_name", "contact_via_email"=>"false", "contact_via_phone"=>"false", "email"=>"email@website.com", "first_name"=>"first_name", "job_title"=>"job_title", "last_name"=>"last_name", "telephone"=>"telephone"}}
14367
+  (0.2ms) SAVEPOINT active_record_1
14368
+ MrCommon::Registration Create (0.6ms) INSERT INTO "mr_common_registrations" ("first_name", "last_name", "email", "company_name", "telephone", "job_title", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["first_name", "first_name"], ["last_name", "last_name"], ["email", "email@website.com"], ["company_name", "company_name"], ["telephone", "telephone"], ["job_title", "job_title"], ["created_at", "2019-03-27 20:03:27.487277"], ["updated_at", "2019-03-27 20:03:27.487277"]]
14369
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14370
+ MrCommon::Registration Load (0.4ms) SELECT "mr_common_registrations".* FROM "mr_common_registrations" WHERE "mr_common_registrations"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
14371
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer
14372
+ MrCommon::Reminder Load (0.3ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."include_in_confirmation_mailer" = $1 [["include_in_confirmation_mailer", true]]
14373
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_html_reminders.html.erb (1.9ms)
14374
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer (8.6ms)
14375
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer
14376
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_text_reminders.text.erb (0.3ms)
14377
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer (5.0ms)
14378
+ MrCommon::RegistrationMailer#confirmation: processed outbound mail in 245.8ms
14379
+ Sent mail to email@website.com (8.4ms)
14380
+ Date: Wed, 27 Mar 2019 16:03:27 -0400
14381
+ From: from@example.com
14382
+ To: email@website.com
14383
+ Message-ID: <5c9bd70fd1642_5ec83fd36dc42e3c5411c@idkmpblol.local.mail>
14384
+ Subject: Your registration confirmation.
14385
+ Mime-Version: 1.0
14386
+ Content-Type: multipart/alternative;
14387
+ boundary="--==_mimepart_5c9bd70fd00d3_5ec83fd36dc42e3c540b1";
14388
+ charset=UTF-8
14389
+ Content-Transfer-Encoding: 7bit
14390
+
14391
+
14392
+ ----==_mimepart_5c9bd70fd00d3_5ec83fd36dc42e3c540b1
14393
+ Content-Type: text/plain;
14394
+ charset=UTF-8
14395
+ Content-Transfer-Encoding: 7bit
14396
+
14397
+ Thanks for registering
14398
+ ---
14399
+
14400
+ Don't forget to download the reminder and add it to your calendar.
14401
+
14402
+
14403
+
14404
+ ----==_mimepart_5c9bd70fd00d3_5ec83fd36dc42e3c540b1
14405
+ Content-Type: text/html;
14406
+ charset=UTF-8
14407
+ Content-Transfer-Encoding: 7bit
14408
+
14409
+ <!DOCTYPE html>
14410
+ <html>
14411
+ <head>
14412
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
14413
+ <style>
14414
+ /* Email styles need to be inline */
14415
+ </style>
14416
+ </head>
14417
+
14418
+ <body>
14419
+ <h1>Thanks for registering</h1>
14420
+ <p>Don't forget to download the reminder and add it to your calendar.</p>
14421
+
14422
+ <ul>
14423
+ </ul>
14424
+ </body>
14425
+ </html>
14426
+
14427
+ ----==_mimepart_5c9bd70fd00d3_5ec83fd36dc42e3c540b1--
14428
+
14429
+ Redirected to http://test.host/common/registrations/success
14430
+ Completed 302 Found in 386ms (ActiveRecord: 4.5ms)
14431
+  (0.3ms) ROLLBACK
14432
+  (0.2ms) BEGIN
14433
+ Processing by MrCommon::Registrations::PublicController#create as HTML
14434
+ Parameters: {"registration"=>{"first_name"=>""}}
14435
+  (0.2ms) SAVEPOINT active_record_1
14436
+  (41.0ms) ROLLBACK TO SAVEPOINT active_record_1
14437
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registrations/public/new.html.erb within layouts/application
14438
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14439
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registrations/public/new.html.erb within layouts/application (0.3ms)
14440
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14441
+ Completed 422 Unprocessable Entity in 54ms (Views: 9.9ms | ActiveRecord: 41.3ms)
14442
+  (0.2ms) ROLLBACK
14443
+  (0.2ms) BEGIN
14444
+  (0.4ms) SELECT COUNT(*) FROM "mr_common_registrations"
14445
+ Processing by MrCommon::Registrations::PublicController#create as HTML
14446
+ Parameters: {"registration"=>{"company_name"=>"company_name", "contact_via_email"=>"false", "contact_via_phone"=>"false", "email"=>"email@website.com", "first_name"=>"first_name", "job_title"=>"job_title", "last_name"=>"last_name", "telephone"=>"telephone"}}
14447
+  (0.1ms) SAVEPOINT active_record_1
14448
+ MrCommon::Registration Create (0.3ms) INSERT INTO "mr_common_registrations" ("first_name", "last_name", "email", "company_name", "telephone", "job_title", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["first_name", "first_name"], ["last_name", "last_name"], ["email", "email@website.com"], ["company_name", "company_name"], ["telephone", "telephone"], ["job_title", "job_title"], ["created_at", "2019-03-27 20:03:27.924131"], ["updated_at", "2019-03-27 20:03:27.924131"]]
14449
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14450
+ MrCommon::Registration Load (0.2ms) SELECT "mr_common_registrations".* FROM "mr_common_registrations" WHERE "mr_common_registrations"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]]
14451
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer
14452
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."include_in_confirmation_mailer" = $1 [["include_in_confirmation_mailer", true]]
14453
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_html_reminders.html.erb (0.5ms)
14454
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer (0.6ms)
14455
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer
14456
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_text_reminders.text.erb (0.0ms)
14457
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer (0.1ms)
14458
+ MrCommon::RegistrationMailer#confirmation: processed outbound mail in 2.9ms
14459
+ Sent mail to email@website.com (2.0ms)
14460
+ Date: Wed, 27 Mar 2019 16:03:27 -0400
14461
+ From: from@example.com
14462
+ To: email@website.com
14463
+ Message-ID: <5c9bd70fe2c69_5ec83fd36dc42e3c54333@idkmpblol.local.mail>
14464
+ Subject: Your registration confirmation.
14465
+ Mime-Version: 1.0
14466
+ Content-Type: multipart/alternative;
14467
+ boundary="--==_mimepart_5c9bd70fe27ae_5ec83fd36dc42e3c542d";
14468
+ charset=UTF-8
14469
+ Content-Transfer-Encoding: 7bit
14470
+
14471
+
14472
+ ----==_mimepart_5c9bd70fe27ae_5ec83fd36dc42e3c542d
14473
+ Content-Type: text/plain;
14474
+ charset=UTF-8
14475
+ Content-Transfer-Encoding: 7bit
14476
+
14477
+ Thanks for registering
14478
+ ---
14479
+
14480
+ Don't forget to download the reminder and add it to your calendar.
14481
+
14482
+
14483
+
14484
+ ----==_mimepart_5c9bd70fe27ae_5ec83fd36dc42e3c542d
14485
+ Content-Type: text/html;
14486
+ charset=UTF-8
14487
+ Content-Transfer-Encoding: 7bit
14488
+
14489
+ <!DOCTYPE html>
14490
+ <html>
14491
+ <head>
14492
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
14493
+ <style>
14494
+ /* Email styles need to be inline */
14495
+ </style>
14496
+ </head>
14497
+
14498
+ <body>
14499
+ <h1>Thanks for registering</h1>
14500
+ <p>Don't forget to download the reminder and add it to your calendar.</p>
14501
+
14502
+ <ul>
14503
+ </ul>
14504
+ </body>
14505
+ </html>
14506
+
14507
+ ----==_mimepart_5c9bd70fe27ae_5ec83fd36dc42e3c542d--
14508
+
14509
+ Redirected to http://test.host/common/registrations/success
14510
+ Completed 302 Found in 7ms (ActiveRecord: 1.0ms)
14511
+  (39.9ms) SELECT COUNT(*) FROM "mr_common_registrations"
14512
+  (0.3ms) ROLLBACK
14513
+  (0.3ms) BEGIN
14514
+  (0.3ms) ROLLBACK
14515
+  (0.2ms) BEGIN
14516
+  (0.2ms) ROLLBACK
14517
+  (0.2ms) BEGIN
14518
+  (0.2ms) ROLLBACK
14519
+  (0.2ms) BEGIN
14520
+  (0.1ms) ROLLBACK
14521
+  (0.2ms) BEGIN
14522
+  (0.2ms) ROLLBACK
14523
+  (0.2ms) BEGIN
14524
+  (0.2ms) ROLLBACK
14525
+  (0.2ms) BEGIN
14526
+  (0.2ms) ROLLBACK
14527
+  (0.2ms) BEGIN
14528
+  (0.2ms) ROLLBACK
14529
+  (0.1ms) BEGIN
14530
+  (0.1ms) ROLLBACK
14531
+  (0.1ms) BEGIN
14532
+  (0.1ms) ROLLBACK
14533
+  (0.1ms) BEGIN
14534
+ Processing by MrCommon::DashboardController#index as HTML
14535
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14536
+  (0.2ms) ROLLBACK
14537
+  (0.1ms) BEGIN
14538
+  (0.1ms) SAVEPOINT active_record_1
14539
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "user2@example.com"], ["LIMIT", 1]]
14540
+ User Create (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "user2@example.com"], ["encrypted_password", "$2a$04$Lm7M5nLlHI.W.etn4LEAwON3vPk67GrpnXfyVpPD1l5ZPkZ/gXXbm"], ["created_at", "2019-03-27 20:03:28.636248"], ["updated_at", "2019-03-27 20:03:28.636248"]]
14541
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14542
+ Processing by MrCommon::DashboardController#index as HTML
14543
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 2], ["LIMIT", 1]]
14544
+ Redirected to http://test.host/
14545
+ Filter chain halted as :authorize_user rendered or redirected
14546
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
14547
+  (0.2ms) ROLLBACK
14548
+  (0.2ms) BEGIN
14549
+  (0.2ms) SAVEPOINT active_record_1
14550
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "user3@example.com"], ["LIMIT", 1]]
14551
+ User Create (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "user3@example.com"], ["encrypted_password", "$2a$04$7XrFPFgwCVSF.Q40wc02z.TIpaN0eIcQkzKK3T4Od.RIRK0CnU86i"], ["created_at", "2019-03-27 20:03:28.654400"], ["updated_at", "2019-03-27 20:03:28.654400"]]
14552
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14553
+ Processing by MrCommon::DashboardController#index as HTML
14554
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]]
14555
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/dashboard/index.html.erb within layouts/mr_common/layout
14556
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14557
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/dashboard/index.html.erb within layouts/mr_common/layout (0.2ms)
14558
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14559
+ Completed 200 OK in 5ms (Views: 0.8ms | ActiveRecord: 0.2ms)
14560
+  (0.2ms) ROLLBACK
14561
+  (0.1ms) BEGIN
14562
+  (0.1ms) ROLLBACK
14563
+  (0.2ms) BEGIN
14564
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "a-test-slug"], ["LIMIT", 1]]
14565
+  (0.2ms) ROLLBACK
14566
+  (0.1ms) BEGIN
14567
+  (0.3ms) ROLLBACK
14568
+  (0.2ms) BEGIN
14569
+  (0.2ms) ROLLBACK
14570
+  (0.1ms) BEGIN
14571
+  (0.2ms) ROLLBACK
14572
+  (0.1ms) BEGIN
14573
+  (0.1ms) ROLLBACK
14574
+  (0.2ms) BEGIN
14575
+  (0.2ms) ROLLBACK
14576
+  (0.2ms) BEGIN
14577
+  (0.2ms) ROLLBACK
14578
+  (0.1ms) BEGIN
14579
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14580
+  (0.2ms) ROLLBACK
14581
+  (0.2ms) BEGIN
14582
+  (0.3ms) ROLLBACK
14583
+  (0.2ms) BEGIN
14584
+  (0.1ms) ROLLBACK
14585
+  (0.2ms) BEGIN
14586
+  (0.3ms) ROLLBACK
14587
+  (0.1ms) BEGIN
14588
+  (0.1ms) ROLLBACK
14589
+  (0.1ms) BEGIN
14590
+  (0.2ms) ROLLBACK
14591
+  (0.2ms) BEGIN
14592
+  (0.2ms) ROLLBACK
14593
+  (0.2ms) BEGIN
14594
+  (0.2ms) ROLLBACK
14595
+  (0.1ms) BEGIN
14596
+  (0.1ms) ROLLBACK
14597
+  (0.1ms) BEGIN
14598
+  (0.2ms) ROLLBACK
14599
+  (0.1ms) BEGIN
14600
+  (0.1ms) ROLLBACK
14601
+  (0.1ms) BEGIN
14602
+  (0.2ms) ROLLBACK
14603
+  (0.1ms) BEGIN
14604
+  (0.1ms) ROLLBACK
14605
+  (0.2ms) BEGIN
14606
+ User Exists (0.7ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "user1@example.com"], ["LIMIT", 1]]
14607
+ User Create (0.6ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "user1@example.com"], ["encrypted_password", "$2a$04$Egs4WAR/q3rmslSQViddJu/ovpg/Mn4uEJ5pSe.jHXB8W/lEhBEgi"], ["created_at", "2019-03-27 20:32:03.111642"], ["updated_at", "2019-03-27 20:32:03.111642"]]
14608
+  (40.8ms) COMMIT
14609
+  (0.3ms) BEGIN
14610
+ Processing by MrCommon::Reminders::RemindersController#create as HTML
14611
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:32:03 UTC", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:32:03 UTC", "summary"=>"test summary", "time_zone"=>"Etc/UTC"}}
14612
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14613
+  (0.2ms) SAVEPOINT active_record_1
14614
+ MrCommon::Reminder Exists (0.6ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14615
+ MrCommon::Reminder Create (0.6ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03"], ["end_time", "2019-03-28 20:32:03"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.802267"], ["updated_at", "2019-03-27 20:32:03.802267"]]
14616
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14617
+ Redirected to http://test.host/common/reminders/1
14618
+ Completed 302 Found in 626ms (ActiveRecord: 4.8ms)
14619
+ MrCommon::Reminder Load (0.3ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" ORDER BY "mr_common_reminders"."id" DESC LIMIT $1 [["LIMIT", 1]]
14620
+  (0.3ms) ROLLBACK
14621
+  (0.1ms) BEGIN
14622
+ Processing by MrCommon::Reminders::RemindersController#index as HTML
14623
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14624
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/index.html.erb within layouts/mr_common/layout
14625
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14626
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/index.html.erb within layouts/mr_common/layout (0.2ms)
14627
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14628
+ Completed 200 OK in 12ms (Views: 6.4ms | ActiveRecord: 0.3ms)
14629
+  (0.2ms) ROLLBACK
14630
+  (0.1ms) BEGIN
14631
+  (0.1ms) SAVEPOINT active_record_1
14632
+ MrCommon::Reminder Exists (0.4ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14633
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.823722"], ["end_time", "2019-03-28 20:32:03.823840"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.825377"], ["updated_at", "2019-03-27 20:32:03.825377"]]
14634
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14635
+ Processing by MrCommon::Reminders::RemindersController#destroy as HTML
14636
+ Parameters: {"id"=>"2"}
14637
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14638
+ MrCommon::Reminder Load (0.3ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]]
14639
+  (0.1ms) SAVEPOINT active_record_1
14640
+ MrCommon::Reminder Destroy (0.3ms) DELETE FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 [["id", 2]]
14641
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14642
+ Redirected to http://test.host/common/reminders
14643
+ Completed 302 Found in 4ms (ActiveRecord: 1.2ms)
14644
+  (0.2ms) ROLLBACK
14645
+  (0.2ms) BEGIN
14646
+  (0.1ms) SAVEPOINT active_record_1
14647
+ MrCommon::Reminder Exists (0.2ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14648
+ MrCommon::Reminder Create (0.2ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.834178"], ["end_time", "2019-03-28 20:32:03.834301"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.835539"], ["updated_at", "2019-03-27 20:32:03.835539"]]
14649
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14650
+ Processing by MrCommon::Reminders::RemindersController#edit as HTML
14651
+ Parameters: {"id"=>"3"}
14652
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14653
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]]
14654
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/edit.html.erb within layouts/mr_common/layout
14655
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14656
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/edit.html.erb within layouts/mr_common/layout (0.2ms)
14657
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14658
+ Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.4ms)
14659
+  (0.2ms) ROLLBACK
14660
+  (0.1ms) BEGIN
14661
+  (0.3ms) SAVEPOINT active_record_1
14662
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14663
+ MrCommon::Reminder Create (0.2ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.844758"], ["end_time", "2019-03-28 20:32:03.844881"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.846594"], ["updated_at", "2019-03-27 20:32:03.846594"]]
14664
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14665
+ Processing by MrCommon::Reminders::RemindersController#update as HTML
14666
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:32:03 UTC", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:32:03 UTC", "summary"=>"new summary", "time_zone"=>"Etc/UTC"}, "id"=>"4"}
14667
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14668
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 4], ["LIMIT", 1]]
14669
+  (0.1ms) SAVEPOINT active_record_1
14670
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 AND "mr_common_reminders"."id" != $2 LIMIT $3 [["slug", "test-slug"], ["id", 4], ["LIMIT", 1]]
14671
+ MrCommon::Reminder Update (0.3ms) UPDATE "mr_common_reminders" SET "summary" = $1, "start_time" = $2, "end_time" = $3, "updated_at" = $4 WHERE "mr_common_reminders"."id" = $5 [["summary", "new summary"], ["start_time", "2019-03-28 20:32:03"], ["end_time", "2019-03-28 20:32:03"], ["updated_at", "2019-03-27 20:32:03.852963"], ["id", 4]]
14672
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14673
+ Redirected to http://test.host/common/reminders/4
14674
+ Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
14675
+  (0.2ms) ROLLBACK
14676
+  (0.2ms) BEGIN
14677
+  (0.1ms) SAVEPOINT active_record_1
14678
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14679
+ MrCommon::Reminder Create (0.5ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.856710"], ["end_time", "2019-03-28 20:32:03.856788"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.858096"], ["updated_at", "2019-03-27 20:32:03.858096"]]
14680
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14681
+ Processing by MrCommon::Reminders::RemindersController#show as HTML
14682
+ Parameters: {"id"=>"5"}
14683
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
14684
+ MrCommon::Reminder Load (0.3ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]]
14685
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/show.html.erb within layouts/mr_common/layout
14686
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14687
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/reminders/reminders/show.html.erb within layouts/mr_common/layout (0.2ms)
14688
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14689
+ Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.6ms)
14690
+  (0.2ms) ROLLBACK
14691
+  (0.1ms) BEGIN
14692
+ Processing by MrCommon::Reminders::RemindersController#create as HTML
14693
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:32:03 UTC", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:32:03 UTC", "summary"=>"test summary", "time_zone"=>"Etc/UTC"}}
14694
+ Completed 401 Unauthorized in 3ms (ActiveRecord: 0.0ms)
14695
+  (0.2ms) ROLLBACK
14696
+  (0.2ms) BEGIN
14697
+ Processing by MrCommon::Reminders::RemindersController#index as HTML
14698
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14699
+  (0.2ms) ROLLBACK
14700
+  (0.1ms) BEGIN
14701
+  (0.1ms) SAVEPOINT active_record_1
14702
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14703
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.882702"], ["end_time", "2019-03-28 20:32:03.882842"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.884405"], ["updated_at", "2019-03-27 20:32:03.884405"]]
14704
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14705
+ Processing by MrCommon::Reminders::RemindersController#destroy as HTML
14706
+ Parameters: {"id"=>"6"}
14707
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14708
+  (0.2ms) ROLLBACK
14709
+  (0.2ms) BEGIN
14710
+  (0.1ms) SAVEPOINT active_record_1
14711
+ MrCommon::Reminder Exists (0.4ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14712
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.889376"], ["end_time", "2019-03-28 20:32:03.889476"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.896636"], ["updated_at", "2019-03-27 20:32:03.896636"]]
14713
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14714
+ Processing by MrCommon::Reminders::RemindersController#show as HTML
14715
+ Parameters: {"id"=>"7"}
14716
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14717
+  (0.2ms) ROLLBACK
14718
+  (0.1ms) BEGIN
14719
+  (0.2ms) SAVEPOINT active_record_1
14720
+ MrCommon::Reminder Exists (0.2ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14721
+ MrCommon::Reminder Create (0.2ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.901177"], ["end_time", "2019-03-28 20:32:03.901266"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.902438"], ["updated_at", "2019-03-27 20:32:03.902438"]]
14722
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14723
+ Processing by MrCommon::Reminders::RemindersController#edit as HTML
14724
+ Parameters: {"id"=>"8"}
14725
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14726
+  (0.1ms) ROLLBACK
14727
+  (0.1ms) BEGIN
14728
+  (0.2ms) SAVEPOINT active_record_1
14729
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14730
+ MrCommon::Reminder Create (0.3ms) INSERT INTO "mr_common_reminders" ("start_time", "end_time", "location", "summary", "description", "slug", "all_day", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING "id" [["start_time", "2019-03-28 20:32:03.906106"], ["end_time", "2019-03-28 20:32:03.906169"], ["location", "test location"], ["summary", "test summary"], ["description", "test description"], ["slug", "test-slug"], ["all_day", true], ["created_at", "2019-03-27 20:32:03.907336"], ["updated_at", "2019-03-27 20:32:03.907336"]]
14731
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14732
+ Processing by MrCommon::Reminders::RemindersController#update as HTML
14733
+ Parameters: {"reminder"=>{"all_day"=>"true", "description"=>"test description", "end_time"=>"2019-03-28 20:32:03 UTC", "first_name"=>"new summary", "location"=>"test location", "slug"=>"test-slug", "start_time"=>"2019-03-28 20:32:03 UTC", "summary"=>"test summary", "time_zone"=>"Etc/UTC"}, "id"=>"9"}
14734
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14735
+  (0.3ms) ROLLBACK
14736
+  (0.1ms) BEGIN
14737
+ Processing by MrCommon::Registrations::PublicController#create as HTML
14738
+ Parameters: {"registration"=>{"company_name"=>"company_name", "contact_via_email"=>"false", "contact_via_phone"=>"false", "email"=>"email@website.com", "first_name"=>"first_name", "job_title"=>"job_title", "last_name"=>"last_name", "telephone"=>"telephone"}}
14739
+  (0.2ms) SAVEPOINT active_record_1
14740
+ MrCommon::Registration Create (0.6ms) INSERT INTO "mr_common_registrations" ("first_name", "last_name", "email", "company_name", "telephone", "job_title", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["first_name", "first_name"], ["last_name", "last_name"], ["email", "email@website.com"], ["company_name", "company_name"], ["telephone", "telephone"], ["job_title", "job_title"], ["created_at", "2019-03-27 20:32:03.928042"], ["updated_at", "2019-03-27 20:32:03.928042"]]
14741
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14742
+ MrCommon::Registration Load (0.3ms) SELECT "mr_common_registrations".* FROM "mr_common_registrations" WHERE "mr_common_registrations"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]]
14743
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer
14744
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."include_in_confirmation_mailer" = $1 [["include_in_confirmation_mailer", true]]
14745
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_html_reminders.html.erb (1.2ms)
14746
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer (5.5ms)
14747
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer
14748
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_text_reminders.text.erb (0.3ms)
14749
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer (3.9ms)
14750
+ MrCommon::RegistrationMailer#confirmation: processed outbound mail in 226.5ms
14751
+ Sent mail to email@website.com (9.4ms)
14752
+ Date: Wed, 27 Mar 2019 16:32:04 -0400
14753
+ From: from@example.com
14754
+ To: email@website.com
14755
+ Message-ID: <5c9bddc440fea_64e13ff474042e5c128ab@idkmpblol.local.mail>
14756
+ Subject: Your registration confirmation.
14757
+ Mime-Version: 1.0
14758
+ Content-Type: multipart/alternative;
14759
+ boundary="--==_mimepart_5c9bddc43fa44_64e13ff474042e5c127b0";
14760
+ charset=UTF-8
14761
+ Content-Transfer-Encoding: 7bit
14762
+
14763
+
14764
+ ----==_mimepart_5c9bddc43fa44_64e13ff474042e5c127b0
14765
+ Content-Type: text/plain;
14766
+ charset=UTF-8
14767
+ Content-Transfer-Encoding: 7bit
14768
+
14769
+ Thanks for registering
14770
+ ---
14771
+
14772
+ Don't forget to download the reminder and add it to your calendar.
14773
+
14774
+
14775
+
14776
+ ----==_mimepart_5c9bddc43fa44_64e13ff474042e5c127b0
14777
+ Content-Type: text/html;
14778
+ charset=UTF-8
14779
+ Content-Transfer-Encoding: 7bit
14780
+
14781
+ <!DOCTYPE html>
14782
+ <html>
14783
+ <head>
14784
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
14785
+ <style>
14786
+ /* Email styles need to be inline */
14787
+ </style>
14788
+ </head>
14789
+
14790
+ <body>
14791
+ <h1>Thanks for registering</h1>
14792
+ <p>Don't forget to download the reminder and add it to your calendar.</p>
14793
+
14794
+ <ul>
14795
+ </ul>
14796
+ </body>
14797
+ </html>
14798
+
14799
+ ----==_mimepart_5c9bddc43fa44_64e13ff474042e5c127b0--
14800
+
14801
+ Redirected to http://test.host/common/registrations/success
14802
+ Completed 302 Found in 355ms (ActiveRecord: 4.1ms)
14803
+  (0.3ms) ROLLBACK
14804
+  (0.1ms) BEGIN
14805
+  (0.4ms) SELECT COUNT(*) FROM "mr_common_registrations"
14806
+ Processing by MrCommon::Registrations::PublicController#create as HTML
14807
+ Parameters: {"registration"=>{"company_name"=>"company_name", "contact_via_email"=>"false", "contact_via_phone"=>"false", "email"=>"email@website.com", "first_name"=>"first_name", "job_title"=>"job_title", "last_name"=>"last_name", "telephone"=>"telephone"}}
14808
+  (0.2ms) SAVEPOINT active_record_1
14809
+ MrCommon::Registration Create (0.3ms) INSERT INTO "mr_common_registrations" ("first_name", "last_name", "email", "company_name", "telephone", "job_title", "created_at", "updated_at") VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING "id" [["first_name", "first_name"], ["last_name", "last_name"], ["email", "email@website.com"], ["company_name", "company_name"], ["telephone", "telephone"], ["job_title", "job_title"], ["created_at", "2019-03-27 20:32:04.277219"], ["updated_at", "2019-03-27 20:32:04.277219"]]
14810
+  (0.2ms) RELEASE SAVEPOINT active_record_1
14811
+ MrCommon::Registration Load (0.3ms) SELECT "mr_common_registrations".* FROM "mr_common_registrations" WHERE "mr_common_registrations"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]]
14812
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer
14813
+ MrCommon::Reminder Load (0.2ms) SELECT "mr_common_reminders".* FROM "mr_common_reminders" WHERE "mr_common_reminders"."include_in_confirmation_mailer" = $1 [["include_in_confirmation_mailer", true]]
14814
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_html_reminders.html.erb (0.5ms)
14815
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.html.erb within layouts/mailer (0.7ms)
14816
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer
14817
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/_text_reminders.text.erb (0.0ms)
14818
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registration_mailer/confirmation.text.erb within layouts/mailer (0.1ms)
14819
+ MrCommon::RegistrationMailer#confirmation: processed outbound mail in 3.0ms
14820
+ Sent mail to email@website.com (2.0ms)
14821
+ Date: Wed, 27 Mar 2019 16:32:04 -0400
14822
+ From: from@example.com
14823
+ To: email@website.com
14824
+ Message-ID: <5c9bddc444e4b_64e13ff474042e5c13087@idkmpblol.local.mail>
14825
+ Subject: Your registration confirmation.
14826
+ Mime-Version: 1.0
14827
+ Content-Type: multipart/alternative;
14828
+ boundary="--==_mimepart_5c9bddc44493b_64e13ff474042e5c1294f";
14829
+ charset=UTF-8
14830
+ Content-Transfer-Encoding: 7bit
14831
+
14832
+
14833
+ ----==_mimepart_5c9bddc44493b_64e13ff474042e5c1294f
14834
+ Content-Type: text/plain;
14835
+ charset=UTF-8
14836
+ Content-Transfer-Encoding: 7bit
14837
+
14838
+ Thanks for registering
14839
+ ---
14840
+
14841
+ Don't forget to download the reminder and add it to your calendar.
14842
+
14843
+
14844
+
14845
+ ----==_mimepart_5c9bddc44493b_64e13ff474042e5c1294f
14846
+ Content-Type: text/html;
14847
+ charset=UTF-8
14848
+ Content-Transfer-Encoding: 7bit
14849
+
14850
+ <!DOCTYPE html>
14851
+ <html>
14852
+ <head>
14853
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
14854
+ <style>
14855
+ /* Email styles need to be inline */
14856
+ </style>
14857
+ </head>
14858
+
14859
+ <body>
14860
+ <h1>Thanks for registering</h1>
14861
+ <p>Don't forget to download the reminder and add it to your calendar.</p>
14862
+
14863
+ <ul>
14864
+ </ul>
14865
+ </body>
14866
+ </html>
14867
+
14868
+ ----==_mimepart_5c9bddc44493b_64e13ff474042e5c1294f--
14869
+
14870
+ Redirected to http://test.host/common/registrations/success
14871
+ Completed 302 Found in 8ms (ActiveRecord: 1.1ms)
14872
+  (0.3ms) SELECT COUNT(*) FROM "mr_common_registrations"
14873
+  (0.2ms) ROLLBACK
14874
+  (0.1ms) BEGIN
14875
+ Processing by MrCommon::Registrations::PublicController#create as HTML
14876
+ Parameters: {"registration"=>{"first_name"=>""}}
14877
+  (0.2ms) SAVEPOINT active_record_1
14878
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
14879
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/registrations/public/new.html.erb within layouts/application
14880
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14881
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/registrations/public/new.html.erb within layouts/application (0.2ms)
14882
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14883
+ Completed 422 Unprocessable Entity in 9ms (Views: 6.0ms | ActiveRecord: 0.3ms)
14884
+  (0.3ms) ROLLBACK
14885
+  (0.1ms) BEGIN
14886
+ Processing by MrCommon::DashboardController#index as HTML
14887
+ Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
14888
+  (0.2ms) ROLLBACK
14889
+  (0.1ms) BEGIN
14890
+  (0.2ms) SAVEPOINT active_record_1
14891
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "user2@example.com"], ["LIMIT", 1]]
14892
+ User Create (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "user2@example.com"], ["encrypted_password", "$2a$04$of6.ryxMlrsSWd8D.RESyOGvNtOy09dkpaIZ5aCf21pdAR/F79vnu"], ["created_at", "2019-03-27 20:32:04.303533"], ["updated_at", "2019-03-27 20:32:04.303533"]]
14893
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14894
+ Processing by MrCommon::DashboardController#index as HTML
14895
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 2], ["LIMIT", 1]]
14896
+ Rendering /Users/cs/Projects/mr_common/app/views/mr_common/dashboard/index.html.erb within layouts/mr_common/layout
14897
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14898
+ Rendered /Users/cs/Projects/mr_common/app/views/mr_common/dashboard/index.html.erb within layouts/mr_common/layout (0.3ms)
14899
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
14900
+ Completed 200 OK in 6ms (Views: 1.1ms | ActiveRecord: 0.2ms)
14901
+  (0.3ms) ROLLBACK
14902
+  (0.2ms) BEGIN
14903
+  (0.1ms) SAVEPOINT active_record_1
14904
+ User Exists (0.3ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = $1 LIMIT $2 [["email", "user3@example.com"], ["LIMIT", 1]]
14905
+ User Create (0.3ms) INSERT INTO "users" ("email", "encrypted_password", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["email", "user3@example.com"], ["encrypted_password", "$2a$04$1uLUoZoYy7eDoNhMB03uvOVuWxFCYQNK5UHluPLe9ZzgbKIT4jCIq"], ["created_at", "2019-03-27 20:32:04.315354"], ["updated_at", "2019-03-27 20:32:04.315354"]]
14906
+  (0.1ms) RELEASE SAVEPOINT active_record_1
14907
+ Processing by MrCommon::DashboardController#index as HTML
14908
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 3], ["LIMIT", 1]]
14909
+ Redirected to http://test.host/
14910
+ Filter chain halted as :authorize_user rendered or redirected
14911
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
14912
+  (0.2ms) ROLLBACK
14913
+  (0.2ms) BEGIN
14914
+  (0.1ms) ROLLBACK
14915
+  (0.1ms) BEGIN
14916
+  (0.1ms) ROLLBACK
14917
+  (0.1ms) BEGIN
14918
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "test-slug"], ["LIMIT", 1]]
14919
+  (0.2ms) ROLLBACK
14920
+  (0.1ms) BEGIN
14921
+  (0.2ms) ROLLBACK
14922
+  (0.2ms) BEGIN
14923
+  (0.1ms) ROLLBACK
14924
+  (0.1ms) BEGIN
14925
+  (0.2ms) ROLLBACK
14926
+  (0.2ms) BEGIN
14927
+  (0.3ms) ROLLBACK
14928
+  (0.2ms) BEGIN
14929
+  (0.2ms) ROLLBACK
14930
+  (0.2ms) BEGIN
14931
+  (0.2ms) ROLLBACK
14932
+  (0.1ms) BEGIN
14933
+ MrCommon::Reminder Exists (0.3ms) SELECT 1 AS one FROM "mr_common_reminders" WHERE "mr_common_reminders"."slug" = $1 LIMIT $2 [["slug", "a-test-slug"], ["LIMIT", 1]]
14934
+  (0.2ms) ROLLBACK
14935
+  (0.6ms) BEGIN
14936
+  (0.2ms) ROLLBACK