diff --git a/Dockerfile b/Dockerfile index 7f8493ef..8d70699d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - && \ # Cannot find module node-sass対策 RUN yarn add node-sass +RUN yarn add axios RUN mkdir /hakohugu_winter diff --git a/app/controllers/api/questions_controller.rb b/app/controllers/api/questions_controller.rb new file mode 100644 index 00000000..710c9c6c --- /dev/null +++ b/app/controllers/api/questions_controller.rb @@ -0,0 +1,5 @@ +class Api::QuestionsController < ApplicationController + def show + render 'show', formats: 'json', handlers: 'jbuilder' + end +end diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index 1b74768c..f533dddf 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -1,5 +1,6 @@ +# coding: utf-8 class HomeController < ApplicationController def index - @question="研究の動機は?"; + @question="何が課題か?"; end end diff --git a/app/javascript/packs/hello_vue.js b/app/javascript/packs/hello_vue.js index 04136b62..36f758a9 100644 --- a/app/javascript/packs/hello_vue.js +++ b/app/javascript/packs/hello_vue.js @@ -1,17 +1,31 @@ import Vue from 'vue/dist/vue.esm' +import axios from 'axios'; document.addEventListener('DOMContentLoaded', () => { + const app = new Vue({ el: '#app', data: { answer: "", - note: "" + note: "", + question: [] }, methods: { + addAnswerToNote: function (){ + this.note += this.question[0] + this.note += "\n" this.note += this.answer this.note += "\n" this.answer = "" + }, + hoge: function(id){ + axios.get(`api/questions/${id}`) + .then(res => { + this.question.push(res.data.title); + this.addAnswerToNote(); + }); + } } }) diff --git a/app/views/api/questions/show.json.jbuilder b/app/views/api/questions/show.json.jbuilder new file mode 100644 index 00000000..51a05402 --- /dev/null +++ b/app/views/api/questions/show.json.jbuilder @@ -0,0 +1,2 @@ +# coding: utf-8 +json.title "何が課題か?" diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index 7d685837..b0b64681 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -98,8 +98,8 @@ @@ -122,7 +122,7 @@
- +
diff --git a/config/routes.rb b/config/routes.rb index 629b318e..21dbd5ed 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,6 @@ Rails.application.routes.draw do - root to: 'home#index' - # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html + root to: 'home#index' + namespace :api do + resources :questions, only: %i(show) + end end diff --git a/log/development.log b/log/development.log index bfdf12bd..514978d8 100644 --- a/log/development.log +++ b/log/development.log @@ -2577,3 +2577,1878 @@ Processing by HomeController#index as HTML Completed 200 OK in 22222ms (Views: 22229.4ms | ActiveRecord: 0.0ms) +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 06:49:13 +0000 + +ActiveRecord::NoDatabaseError (FATAL: database "hakohugu_winter_development" does not exist +): + +activerecord (5.2.0) lib/active_record/connection_adapters/postgresql_adapter.rb:688:in `rescue in connect' +activerecord (5.2.0) lib/active_record/connection_adapters/postgresql_adapter.rb:683:in `connect' +activerecord (5.2.0) lib/active_record/connection_adapters/postgresql_adapter.rb:215:in `initialize' +activerecord (5.2.0) lib/active_record/connection_adapters/postgresql_adapter.rb:40:in `new' +activerecord (5.2.0) lib/active_record/connection_adapters/postgresql_adapter.rb:40:in `postgresql_connection' +activerecord (5.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:809:in `new_connection' +activerecord (5.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:853:in `checkout_new_connection' +activerecord (5.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:832:in `try_to_checkout_new_connection' +activerecord (5.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:793:in `acquire_connection' +activerecord (5.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:521:in `checkout' +activerecord (5.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:380:in `connection' +activerecord (5.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:1008:in `retrieve_connection' +activerecord (5.2.0) lib/active_record/connection_handling.rb:118:in `retrieve_connection' +activerecord (5.2.0) lib/active_record/connection_handling.rb:90:in `connection' +activerecord (5.2.0) lib/active_record/migration.rb:554:in `call' +actionpack (5.2.0) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call' +activesupport (5.2.0) lib/active_support/callbacks.rb:98:in `run_callbacks' +actionpack (5.2.0) lib/action_dispatch/middleware/callbacks.rb:26:in `call' +actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call' +web-console (3.7.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.7.0) lib/web_console/middleware.rb:30:in `block in call' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `catch' +web-console (3.7.0) lib/web_console/middleware.rb:20:in `call' +actionpack (5.2.0) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call' +railties (5.2.0) lib/rails/rack/logger.rb:38:in `call_app' +railties (5.2.0) lib/rails/rack/logger.rb:26:in `block in call' +activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `block in tagged' +activesupport (5.2.0) lib/active_support/tagged_logging.rb:28:in `tagged' +activesupport (5.2.0) lib/active_support/tagged_logging.rb:71:in `tagged' +railties (5.2.0) 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.0) lib/action_dispatch/middleware/remote_ip.rb:81:in `call' +actionpack (5.2.0) lib/action_dispatch/middleware/request_id.rb:27:in `call' +rack (2.0.5) lib/rack/method_override.rb:22:in `call' +rack (2.0.5) lib/rack/runtime.rb:22:in `call' +activesupport (5.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call' +actionpack (5.2.0) lib/action_dispatch/middleware/executor.rb:14:in `call' +actionpack (5.2.0) lib/action_dispatch/middleware/static.rb:127:in `call' +rack (2.0.5) lib/rack/sendfile.rb:111:in `call' +webpacker (3.5.5) lib/webpacker/dev_server_proxy.rb:22:in `perform_request' +rack-proxy (0.6.5) lib/rack/proxy.rb:57:in `call' +railties (5.2.0) 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' +  (291.0ms) CREATE DATABASE "hakohugu_winter_development" ENCODING = 'unicode' + ↳ bin/rails:9 +  (285.2ms) CREATE DATABASE "hakohugu_winter_test" ENCODING = 'unicode' + ↳ bin/rails:9 +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 06:49:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (14.8ms) +Completed 200 OK in 40ms (Views: 33.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 06:52:25 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (7.2ms) +Started GET "/" for 172.19.0.1 at 2018-10-19 06:52:29 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 27951ms (Views: 27973.3ms | ActiveRecord: 0.0ms) + + +Completed 200 OK in 24855ms (Views: 24879.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 06:59:28 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:04:43 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 164ms (Views: 150.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:04:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:04:47 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 152ms (Views: 139.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:05:08 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 147ms (Views: 130.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:05:11 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:05:44 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 167ms (Views: 154.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:05:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:06:59 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 180ms (Views: 162.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:07:03 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:07:57 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 189ms (Views: 172.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:07:59 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.8ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:08:39 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 189ms (Views: 175.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:08:50 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 194ms (Views: 177.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:09:18 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 181ms (Views: 168.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:09:19 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (1.0ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:11:31 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 188ms (Views: 174.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:11:40 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 176ms (Views: 161.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:12:00 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 159ms (Views: 147.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:12:02 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:12:05 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:12:07 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:12:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:12:24 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 216ms (Views: 195.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:12:26 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:13:54 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 166ms (Views: 149.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:14:07 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 158ms (Views: 145.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:14:09 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:15:06 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 171ms (Views: 154.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:08 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 18ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:08 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:09 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:09 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:09 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:09 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:15:11 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 149ms (Views: 134.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:13 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:15:14 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:16:50 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 162ms (Views: 149.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:51 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:52 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:53 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.8ms) +Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:53 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:53 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:53 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:53 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (1.0ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (1.0ms) +Completed 200 OK in 26ms (Views: 24.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (1.0ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:55 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:16:55 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:17:07 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 185ms (Views: 164.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:17:09 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:17:48 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 156ms (Views: 141.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:17:50 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:18:35 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 168ms (Views: 152.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:18:36 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:18:38 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:18:41 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 138ms (Views: 126.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:18:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:18:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:18:54 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 163ms (Views: 149.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:00 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:03 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:19:41 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 198ms (Views: 180.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:43 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:44 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 19ms (Views: 18.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 25ms (Views: 24.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:47 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:47 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:19:49 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 192ms (Views: 175.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:52 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:19:54 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:20:26 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 177ms (Views: 162.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:20:35 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.8ms) +Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:20:36 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.8ms) +Completed 200 OK in 19ms (Views: 18.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:20:37 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:22:06 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 166ms (Views: 149.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:22:08 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:22:11 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:22:12 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:22:20 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 162ms (Views: 147.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:22:22 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:22:23 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (1.0ms) +Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:22:23 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:32:37 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:32:38 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:32:38 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:32:38 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:32:41 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 177ms (Views: 162.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:32:43 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:32:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 23ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:34:31 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 153ms (Views: 141.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:39:43 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 147ms (Views: 133.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:40:19 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 187ms (Views: 173.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:41:12 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 204ms (Views: 188.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:41:25 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 171ms (Views: 157.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:27 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:27 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:27 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 18ms (Views: 17.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:27 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 24ms (Views: 23.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:28 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:28 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:28 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:28 +0000 + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms) + + +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.2ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:28 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:28 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:29 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:29 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:29 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:29 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 19ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:29 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:29 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 25ms (Views: 23.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:29 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 24ms (Views: 23.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 29ms (Views: 28.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:41:31 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.6ms) +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:31 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:31 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 52ms (Views: 51.3ms | ActiveRecord: 0.0ms) + + +Completed 200 OK in 280ms (Views: 262.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:41:33 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (1.2ms) +Completed 200 OK in 23ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:34 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:35 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:36 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 20ms (Views: 19.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:37 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:38 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:39 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:40 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:41 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:42 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:43 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:44 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (1.4ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:46 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/undefined" for 172.19.0.1 at 2018-10-19 07:41:47 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"undefined"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:41:48 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 158ms (Views: 144.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:46:49 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 151ms (Views: 138.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:46:51 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:47:09 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 226ms (Views: 210.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:47:11 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 17ms (Views: 16.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:50:08 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 154ms (Views: 144.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:50:11 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 19ms (Views: 18.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:51:05 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 169ms (Views: 152.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:51:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:53:11 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 136ms (Views: 125.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:53:23 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:58:09 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.8ms) +Completed 200 OK in 17ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 07:58:16 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 07:58:28 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 152ms (Views: 138.5ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:07:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:07:58 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:27:19 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:29:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:30:51 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 171ms (Views: 151.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:30:53 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 151ms (Views: 137.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:30:53 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 150ms (Views: 132.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:30:54 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 133ms (Views: 120.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:31:14 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 149ms (Views: 137.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:21 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:24 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:26 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:28 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:30 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:33 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:45 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.7ms) +Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:48 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:51 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:53 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:55 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:31:57 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.9ms) +Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:32:46 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 129ms (Views: 116.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:32:47 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 140ms (Views: 127.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-19 08:32:53 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 150ms (Views: 136.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:48:23 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.19.0.1 at 2018-10-19 08:49:04 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.19.0.1 at 2018-10-22 00:10:39 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (28.5ms) +Completed 200 OK in 376ms (Views: 335.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 01:54:44 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (11.1ms) +Started GET "/" for 172.20.0.1 at 2018-10-23 01:54:48 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 23706ms (Views: 23724.2ms | ActiveRecord: 0.0ms) + + +Completed 200 OK in 22004ms (Views: 22027.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:55:15 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (8.1ms) +Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 01:57:01 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 176ms (Views: 157.1ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:57:07 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:57:10 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:57:11 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:57:13 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:57:15 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 18ms (Views: 17.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 01:57:16 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 179ms (Views: 163.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 01:57:54 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 173ms (Views: 155.8ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:57:56 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.4ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/1" for 172.20.0.1 at 2018-10-23 01:57:58 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"1"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.5ms) +Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 01:58:10 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 196ms (Views: 178.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/5" for 172.20.0.1 at 2018-10-23 01:58:12 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"5"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/5" for 172.20.0.1 at 2018-10-23 01:58:14 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"5"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 24ms (Views: 23.6ms | ActiveRecord: 0.0ms) + + +Started GET "/api/questions/5" for 172.20.0.1 at 2018-10-23 01:58:17 +0000 +Processing by Api::QuestionsController#show as HTML + Parameters: {"id"=>"5"} + Rendering api/questions/show.json.jbuilder + Rendered api/questions/show.json.jbuilder (0.6ms) +Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 01:58:25 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (192.4ms) +Completed 500 Internal Server Error in 244ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined local variable or method `unko' for #<#:0x00007f133ed11b10>): + 122: + 123:
+ 124:
+ 125: + 126: + 127:
+ 128:
+ +app/views/home/index.html.erb:125:in `_app_views_home_index_html_erb___4244470194373360381_69860317500040' +Started GET "/" for 172.20.0.1 at 2018-10-23 01:59:23 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 166ms (Views: 152.5ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:01:32 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 202ms (Views: 183.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:01:39 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 196ms (Views: 178.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:01:40 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 161ms (Views: 149.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:01:41 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 172ms (Views: 157.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:01:43 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 146ms (Views: 136.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:02:01 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 158ms (Views: 145.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:02:02 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 171ms (Views: 157.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:02:02 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 175ms (Views: 161.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:03:03 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 202ms (Views: 186.2ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 02:12:31 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 168ms (Views: 152.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-23 14:20:02 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (37.9ms) +Completed 200 OK in 386ms (Views: 359.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 172.20.0.1 at 2018-10-24 01:26:36 +0000 +Processing by HomeController#index as HTML + Rendering home/index.html.erb within layouts/application + Rendered home/index.html.erb within layouts/application (22.6ms) +Completed 200 OK in 321ms (Views: 289.4ms | ActiveRecord: 0.0ms) + + diff --git a/public/packs/manifest.json b/public/packs/manifest.json index 6c79571c..6dc40661 100644 --- a/public/packs/manifest.json +++ b/public/packs/manifest.json @@ -1,8 +1,6 @@ { - "application.js": "/packs/application-7666e9c3e31100ec8643.js", - "application.js.map": "/packs/application-7666e9c3e31100ec8643.js.map", - "hello_vue.css": "/packs/hello_vue-9cb5a7334a6577c3422968b9b9970b2f.css", - "hello_vue.css.map": "/packs/hello_vue-9cb5a7334a6577c3422968b9b9970b2f.css.map", - "hello_vue.js": "/packs/hello_vue-bbcded4dc4f9447ccabd.js", - "hello_vue.js.map": "/packs/hello_vue-bbcded4dc4f9447ccabd.js.map" + "application.js": "/packs/application-51aaa2941a4fa1720717.js", + "application.js.map": "/packs/application-51aaa2941a4fa1720717.js.map", + "hello_vue.js": "/packs/hello_vue-0c2e171c2e171daa7339.js", + "hello_vue.js.map": "/packs/hello_vue-0c2e171c2e171daa7339.js.map" } \ No newline at end of file