DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer` set to false is deprecated. SQLite databases have used 't' and 'f' to serialize boolean values and must have old data converted to 1 and 0 (its native boolean serialization) before setting this flag to true. Conversion can be accomplished by setting up a rake task which runs ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1) ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0) for all models and all boolean columns, after which the flag must be set to true by adding the following to your application.rb file: Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true (called from require at bin/rails:14)  (53.0ms) SET NAMES utf8, @@SESSION.sql_mode = CONCAT(CONCAT(@@sql_mode, ',STRICT_ALL_TABLES'), ',NO_AUTO_VALUE_ON_ZERO'), @@SESSION.sql_auto_is_null = 0, @@SESSION.wait_timeout = 2147483  (6.1ms) CREATE DATABASE `gdpr_test` DEFAULT CHARACTER SET `utf8` DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer` set to false is deprecated. SQLite databases have used 't' and 'f' to serialize boolean values and must have old data converted to 1 and 0 (its native boolean serialization) before setting this flag to true. Conversion can be accomplished by setting up a rake task which runs ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1) ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0) for all models and all boolean columns, after which the flag must be set to true by adding the following to your application.rb file: Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true (called from instance_eval at /Users/michelson/.rvm/gems/ruby-2.3.1/gems/activesupport-5.2.3/lib/active_support/lazy_load_hooks.rb:71) Started GET "/" for 127.0.0.1 at 2019-05-05 13:58:45 -0400 ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rails db:migrate RAILS_ENV=development ): activerecord (5.2.3) lib/active_record/migration.rb:579:in `check_pending!' activerecord (5.2.3) lib/active_record/migration.rb:556:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call' rack (2.0.7) lib/rack/method_override.rb:22:in `call' rack (2.0.7) lib/rack/runtime.rb:22:in `call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call' rack (2.0.7) lib/rack/sendfile.rb:111:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' puma (3.12.0) lib/puma/configuration.rb:225:in `call' puma (3.12.0) lib/puma/server.rb:658:in `handle_request' puma (3.12.0) lib/puma/server.rb:472:in `process_client' puma (3.12.0) lib/puma/server.rb:332:in `block in run' puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:58:46 -0400 ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rails db:migrate RAILS_ENV=development ): activerecord (5.2.3) lib/active_record/migration.rb:579:in `check_pending!' activerecord (5.2.3) lib/active_record/migration.rb:556:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call' rack (2.0.7) lib/rack/method_override.rb:22:in `call' rack (2.0.7) lib/rack/runtime.rb:22:in `call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call' rack (2.0.7) lib/rack/sendfile.rb:111:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' puma (3.12.0) lib/puma/configuration.rb:225:in `call' puma (3.12.0) lib/puma/server.rb:658:in `handle_request' puma (3.12.0) lib/puma/server.rb:472:in `process_client' puma (3.12.0) lib/puma/server.rb:332:in `block in run' puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:58:50 -0400 ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rails db:migrate RAILS_ENV=development ): activerecord (5.2.3) lib/active_record/migration.rb:579:in `check_pending!' activerecord (5.2.3) lib/active_record/migration.rb:556:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call' rack (2.0.7) lib/rack/method_override.rb:22:in `call' rack (2.0.7) lib/rack/runtime.rb:22:in `call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call' rack (2.0.7) lib/rack/sendfile.rb:111:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' puma (3.12.0) lib/puma/configuration.rb:225:in `call' puma (3.12.0) lib/puma/server.rb:658:in `handle_request' puma (3.12.0) lib/puma/server.rb:472:in `process_client' puma (3.12.0) lib/puma/server.rb:332:in `block in run' puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:58:50 -0400 ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rails db:migrate RAILS_ENV=development ): activerecord (5.2.3) lib/active_record/migration.rb:579:in `check_pending!' activerecord (5.2.3) lib/active_record/migration.rb:556:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call' rack (2.0.7) lib/rack/method_override.rb:22:in `call' rack (2.0.7) lib/rack/runtime.rb:22:in `call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call' rack (2.0.7) lib/rack/sendfile.rb:111:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' puma (3.12.0) lib/puma/configuration.rb:225:in `call' puma (3.12.0) lib/puma/server.rb:658:in `handle_request' puma (3.12.0) lib/puma/server.rb:472:in `process_client' puma (3.12.0) lib/puma/server.rb:332:in `block in run' puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:58:51 -0400 ActiveRecord::PendingMigrationError ( Migrations are pending. To resolve this issue, run: bin/rails db:migrate RAILS_ENV=development ): activerecord (5.2.3) lib/active_record/migration.rb:579:in `check_pending!' activerecord (5.2.3) lib/active_record/migration.rb:556:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call' rack (2.0.7) lib/rack/method_override.rb:22:in `call' rack (2.0.7) lib/rack/runtime.rb:22:in `call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call' rack (2.0.7) lib/rack/sendfile.rb:111:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' puma (3.12.0) lib/puma/configuration.rb:225:in `call' puma (3.12.0) lib/puma/server.rb:658:in `handle_request' puma (3.12.0) lib/puma/server.rb:472:in `process_client' puma (3.12.0) lib/puma/server.rb:332:in `block in run' puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer` set to false is deprecated. SQLite databases have used 't' and 'f' to serialize boolean values and must have old data converted to 1 and 0 (its native boolean serialization) before setting this flag to true. Conversion can be accomplished by setting up a rake task which runs ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1) ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0) for all models and all boolean columns, after which the flag must be set to true by adding the following to your application.rb file: Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true (called from require at bin/rails:4)  (0.2ms) SELECT sqlite_version(*)  (1.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (1.4ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Migrating to CreateUsers (20180326193826)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::SchemaMigration Create (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20180326193826"]]  (1.1ms) commit transaction Migrating to CreateAnotherUsers (20190221193827)  (0.1ms) begin transaction  (0.8ms) CREATE TABLE "another_users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::SchemaMigration Create (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20190221193827"]]  (0.9ms) commit transaction ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]]  (0.1ms) begin transaction ActiveRecord::InternalMetadata Create (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2019-05-05 17:59:06.275954"], ["updated_at", "2019-05-05 17:59:06.275954"]]  (0.9ms) commit transaction  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer` set to false is deprecated. SQLite databases have used 't' and 'f' to serialize boolean values and must have old data converted to 1 and 0 (its native boolean serialization) before setting this flag to true. Conversion can be accomplished by setting up a rake task which runs ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1) ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0) for all models and all boolean columns, after which the flag must be set to true by adding the following to your application.rb file: Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true (called from instance_eval at /Users/michelson/.rvm/gems/ruby-2.3.1/gems/activesupport-5.2.3/lib/active_support/lazy_load_hooks.rb:71) Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:59:18 -0400 Started GET "/" for 127.0.0.1 at 2019-05-05 13:59:18 -0400  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Processing by Rails::WelcomeController#index as HTML Rendering /Users/michelson/.rvm/gems/ruby-2.3.1/gems/railties-5.2.3/lib/rails/templates/rails/welcome/index.html.erb Rendered /Users/michelson/.rvm/gems/ruby-2.3.1/gems/railties-5.2.3/lib/rails/templates/rails/welcome/index.html.erb (6.7ms) Completed 200 OK in 50ms (Views: 41.4ms | ActiveRecord: 0.0ms) Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2019-05-05 13:59:18 -0400 Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) Subscription class not found: "EventsChannel" Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:59:18 -0400 Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2019-05-05 13:59:18 -0400 Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) Subscription class not found: "ConversationsChannel" Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:59:22 -0400 Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2019-05-05 13:59:22 -0400 Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) Subscription class not found: "PresenceChannel" DEPRECATION WARNING: Leaving `ActiveRecord::ConnectionAdapters::SQLite3Adapter.represent_boolean_as_integer` set to false is deprecated. SQLite databases have used 't' and 'f' to serialize boolean values and must have old data converted to 1 and 0 (its native boolean serialization) before setting this flag to true. Conversion can be accomplished by setting up a rake task which runs ExampleModel.where("boolean_column = 't'").update_all(boolean_column: 1) ExampleModel.where("boolean_column = 'f'").update_all(boolean_column: 0) for all models and all boolean columns, after which the flag must be set to true by adding the following to your application.rb file: Rails.application.config.active_record.sqlite3.represent_boolean_as_integer = true (called from instance_eval at /Users/michelson/.rvm/gems/ruby-2.3.1/gems/activesupport-5.2.3/lib/active_support/lazy_load_hooks.rb:71) Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:59:59 -0400  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2019-05-05 13:59:59 -0400 Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) Subscription class not found: "PresenceChannel" Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:59:59 -0400 Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2019-05-05 13:59:59 -0400 Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) Subscription class not found: "EventsChannel" Started GET "/cable" for 127.0.0.1 at 2019-05-05 13:59:59 -0400 Started GET "/cable/" [WebSocket] for 127.0.0.1 at 2019-05-05 13:59:59 -0400 Successfully upgraded to WebSocket (REQUEST_METHOD: GET, HTTP_CONNECTION: Upgrade, HTTP_UPGRADE: websocket) Subscription class not found: "ConversationsChannel" Started GET "/documentation" for 127.0.0.1 at 2019-05-05 14:00:02 -0400 ActionController::RoutingError (No route matches [GET] "/documentation"): actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call' rack (2.0.7) lib/rack/method_override.rb:22:in `call' rack (2.0.7) lib/rack/runtime.rb:22:in `call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call' rack (2.0.7) lib/rack/sendfile.rb:111:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' puma (3.12.0) lib/puma/configuration.rb:225:in `call' puma (3.12.0) lib/puma/server.rb:658:in `handle_request' puma (3.12.0) lib/puma/server.rb:472:in `process_client' puma (3.12.0) lib/puma/server.rb:332:in `block in run' puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' Started GET "/terms/documentation" for 127.0.0.1 at 2019-05-05 14:00:58 -0400 Processing by PolicyManager::ApplicationController#doc as HTML Completed 500 Internal Server Error in 113ms (ActiveRecord: 0.0ms) NoMethodError (super: no superclass method `current_user' for #): /Users/michelson/Documents/rubyonrails/gdpr_rails/app/controllers/policy_manager/application_controller.rb:37:in `current_user' /Users/michelson/Documents/rubyonrails/gdpr_rails/app/controllers/policy_manager/application_controller.rb:25:in `user_authenticated?' activesupport (5.2.3) lib/active_support/callbacks.rb:426:in `block in make_lambda' activesupport (5.2.3) lib/active_support/callbacks.rb:198:in `block (2 levels) in halting' actionpack (5.2.3) lib/abstract_controller/callbacks.rb:34:in `block (2 levels) in ' activesupport (5.2.3) lib/active_support/callbacks.rb:199:in `block in halting' activesupport (5.2.3) lib/active_support/callbacks.rb:513:in `block in invoke_before' activesupport (5.2.3) lib/active_support/callbacks.rb:513:in `each' activesupport (5.2.3) lib/active_support/callbacks.rb:513:in `invoke_before' activesupport (5.2.3) lib/active_support/callbacks.rb:131:in `run_callbacks' actionpack (5.2.3) lib/abstract_controller/callbacks.rb:41:in `process_action' actionpack (5.2.3) lib/action_controller/metal/rescue.rb:22:in `process_action' actionpack (5.2.3) lib/action_controller/metal/instrumentation.rb:34:in `block in process_action' activesupport (5.2.3) lib/active_support/notifications.rb:168:in `block in instrument' activesupport (5.2.3) lib/active_support/notifications/instrumenter.rb:23:in `instrument' activesupport (5.2.3) lib/active_support/notifications.rb:168:in `instrument' actionpack (5.2.3) lib/action_controller/metal/instrumentation.rb:32:in `process_action' actionpack (5.2.3) lib/action_controller/metal/params_wrapper.rb:256:in `process_action' activerecord (5.2.3) lib/active_record/railties/controller_runtime.rb:24:in `process_action' actionpack (5.2.3) lib/abstract_controller/base.rb:134:in `process' actionview (5.2.3) lib/action_view/rendering.rb:32:in `process' actionpack (5.2.3) lib/action_controller/metal.rb:191:in `dispatch' actionpack (5.2.3) lib/action_controller/metal.rb:252:in `dispatch' actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:52:in `dispatch' actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:34:in `serve' actionpack (5.2.3) lib/action_dispatch/journey/router.rb:52:in `block in serve' actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `each' actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `serve' actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:840:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' railties (5.2.3) lib/rails/railtie.rb:190:in `public_send' railties (5.2.3) lib/rails/railtie.rb:190:in `method_missing' actionpack (5.2.3) lib/action_dispatch/routing/mapper.rb:19:in `block in ' actionpack (5.2.3) lib/action_dispatch/routing/mapper.rb:48:in `serve' actionpack (5.2.3) lib/action_dispatch/journey/router.rb:52:in `block in serve' actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `each' actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `serve' actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:840:in `call' rack (2.0.7) lib/rack/tempfile_reaper.rb:15:in `call' rack (2.0.7) lib/rack/etag.rb:25:in `call' rack (2.0.7) lib/rack/conditional_get.rb:25:in `call' rack (2.0.7) lib/rack/head.rb:12:in `call' actionpack (5.2.3) lib/action_dispatch/http/content_security_policy.rb:18:in `call' rack (2.0.7) lib/rack/session/abstract/id.rb:232:in `context' rack (2.0.7) lib/rack/session/abstract/id.rb:226:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/cookies.rb:670:in `call' activerecord (5.2.3) lib/active_record/migration.rb:559:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks' actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in `call' sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call' rack (2.0.7) lib/rack/method_override.rb:22:in `call' rack (2.0.7) lib/rack/runtime.rb:22:in `call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call' rack (2.0.7) lib/rack/sendfile.rb:111:in `call' railties (5.2.3) lib/rails/engine.rb:524:in `call' puma (3.12.0) lib/puma/configuration.rb:225:in `call' puma (3.12.0) lib/puma/server.rb:658:in `handle_request' puma (3.12.0) lib/puma/server.rb:472:in `process_client' puma (3.12.0) lib/puma/server.rb:332:in `block in run' puma (3.12.0) lib/puma/thread_pool.rb:133:in `block in spawn_thread' Started GET "/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBJdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--28570bbea14808634ed8a4a437aa7eb6ca20ac02/blob.webm" for 127.0.0.1 at 2019-05-05 14:05:06 -0400 Processing by ActiveStorage::BlobsController#show as WEBM Parameters: {"signed_id"=>"eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBJdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--28570bbea14808634ed8a4a437aa7eb6ca20ac02", "filename"=>"blob"} Filter chain halted as :set_blob rendered or redirected Completed 404 Not Found in 77ms (ActiveRecord: 0.0ms) Started GET "/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--f0fccf5eb1a1b40154f71392eb7c94adc33a81fd/foo-1530322369.jpg" for 127.0.0.1 at 2019-05-05 14:05:06 -0400 Processing by ActiveStorage::BlobsController#show as JPEG Parameters: {"signed_id"=>"eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--f0fccf5eb1a1b40154f71392eb7c94adc33a81fd", "filename"=>"foo-1530322369"} Filter chain halted as :set_blob rendered or redirected Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms)