From fc5bc3377ca066ba1dbc9d047cc5a7c9ddaf4842 Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Mon, 18 Sep 2017 16:12:45 -0700 Subject: [PATCH 01/16] initial set up complete --- Gemfile | 54 +++++ Gemfile.lock | 196 ++++++++++++++++++ Rakefile | 6 + app/assets/config/manifest.js | 3 + app/assets/images/.keep | 0 app/assets/javascripts/application.js | 15 ++ app/assets/javascripts/cable.js | 13 ++ app/assets/javascripts/channels/.keep | 0 app/assets/javascripts/tasks.coffee | 3 + app/assets/stylesheets/application.css | 15 ++ app/assets/stylesheets/tasks.scss | 3 + app/channels/application_cable/channel.rb | 4 + app/channels/application_cable/connection.rb | 4 + app/controllers/application_controller.rb | 3 + app/controllers/concerns/.keep | 0 app/controllers/tasks_controller.rb | 22 ++ app/helpers/application_helper.rb | 2 + app/helpers/tasks_helper.rb | 2 + app/jobs/application_job.rb | 2 + app/mailers/application_mailer.rb | 4 + app/models/application_record.rb | 3 + app/models/concerns/.keep | 0 app/views/layouts/application.html.erb | 14 ++ app/views/layouts/mailer.html.erb | 13 ++ app/views/layouts/mailer.text.erb | 1 + app/views/tasks/create.html.erb | 2 + app/views/tasks/destroy.html.erb | 2 + app/views/tasks/edit.html.erb | 2 + app/views/tasks/index.html.erb | 2 + app/views/tasks/new.html.erb | 2 + app/views/tasks/show.html.erb | 2 + app/views/tasks/update.html.erb | 2 + bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 38 ++++ bin/spring | 17 ++ bin/update | 29 +++ bin/yarn | 11 + config.ru | 5 + config/application.rb | 18 ++ config/boot.rb | 3 + config/cable.yml | 10 + config/database.yml | 85 ++++++++ config/environment.rb | 5 + config/environments/development.rb | 54 +++++ config/environments/production.rb | 91 ++++++++ config/environments/test.rb | 42 ++++ .../application_controller_renderer.rb | 8 + config/initializers/assets.rb | 14 ++ config/initializers/backtrace_silencers.rb | 7 + config/initializers/cookies_serializer.rb | 5 + .../initializers/filter_parameter_logging.rb | 4 + config/initializers/inflections.rb | 16 ++ config/initializers/mime_types.rb | 4 + config/initializers/wrap_parameters.rb | 14 ++ config/locales/en.yml | 33 +++ config/puma.rb | 56 +++++ config/routes.rb | 18 ++ config/secrets.yml | 32 +++ config/spring.rb | 6 + db/schema.rb | 18 ++ db/seeds.rb | 7 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 log/development.log | 14 ++ package.json | 5 + public/404.html | 67 ++++++ public/422.html | 67 ++++++ public/500.html | 66 ++++++ public/apple-touch-icon-precomposed.png | 0 public/apple-touch-icon.png | 0 public/favicon.ico | 0 public/robots.txt | 1 + test/application_system_test_case.rb | 5 + test/controllers/.keep | 0 test/controllers/tasks_controller_test.rb | 39 ++++ test/fixtures/.keep | 0 test/fixtures/files/.keep | 0 test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/system/.keep | 0 test/test_helper.rb | 9 + vendor/.keep | 0 87 files changed, 1340 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 Rakefile create mode 100644 app/assets/config/manifest.js create mode 100644 app/assets/images/.keep create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/javascripts/cable.js create mode 100644 app/assets/javascripts/channels/.keep create mode 100644 app/assets/javascripts/tasks.coffee create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/assets/stylesheets/tasks.scss create mode 100644 app/channels/application_cable/channel.rb create mode 100644 app/channels/application_cable/connection.rb create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/controllers/tasks_controller.rb create mode 100644 app/helpers/application_helper.rb create mode 100644 app/helpers/tasks_helper.rb create mode 100644 app/jobs/application_job.rb create mode 100644 app/mailers/application_mailer.rb create mode 100644 app/models/application_record.rb create mode 100644 app/models/concerns/.keep create mode 100644 app/views/layouts/application.html.erb create mode 100644 app/views/layouts/mailer.html.erb create mode 100644 app/views/layouts/mailer.text.erb create mode 100644 app/views/tasks/create.html.erb create mode 100644 app/views/tasks/destroy.html.erb create mode 100644 app/views/tasks/edit.html.erb create mode 100644 app/views/tasks/index.html.erb create mode 100644 app/views/tasks/new.html.erb create mode 100644 app/views/tasks/show.html.erb create mode 100644 app/views/tasks/update.html.erb create mode 100755 bin/bundle create mode 100755 bin/rails create mode 100755 bin/rake create mode 100755 bin/setup create mode 100755 bin/spring create mode 100755 bin/update create mode 100755 bin/yarn create mode 100644 config.ru create mode 100644 config/application.rb create mode 100644 config/boot.rb create mode 100644 config/cable.yml create mode 100644 config/database.yml create mode 100644 config/environment.rb create mode 100644 config/environments/development.rb create mode 100644 config/environments/production.rb create mode 100644 config/environments/test.rb create mode 100644 config/initializers/application_controller_renderer.rb create mode 100644 config/initializers/assets.rb create mode 100644 config/initializers/backtrace_silencers.rb create mode 100644 config/initializers/cookies_serializer.rb create mode 100644 config/initializers/filter_parameter_logging.rb create mode 100644 config/initializers/inflections.rb create mode 100644 config/initializers/mime_types.rb create mode 100644 config/initializers/wrap_parameters.rb create mode 100644 config/locales/en.yml create mode 100644 config/puma.rb create mode 100644 config/routes.rb create mode 100644 config/secrets.yml create mode 100644 config/spring.rb create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 log/development.log create mode 100644 package.json create mode 100644 public/404.html create mode 100644 public/422.html create mode 100644 public/500.html create mode 100644 public/apple-touch-icon-precomposed.png create mode 100644 public/apple-touch-icon.png create mode 100644 public/favicon.ico create mode 100644 public/robots.txt create mode 100644 test/application_system_test_case.rb create mode 100644 test/controllers/.keep create mode 100644 test/controllers/tasks_controller_test.rb create mode 100644 test/fixtures/.keep create mode 100644 test/fixtures/files/.keep create mode 100644 test/helpers/.keep create mode 100644 test/integration/.keep create mode 100644 test/mailers/.keep create mode 100644 test/models/.keep create mode 100644 test/system/.keep create mode 100644 test/test_helper.rb create mode 100644 vendor/.keep diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..504af8615 --- /dev/null +++ b/Gemfile @@ -0,0 +1,54 @@ +source 'https://rubygems.org' + +git_source(:github) do |repo_name| + repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") + "https://github.com/#{repo_name}.git" +end + + +# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' +gem 'rails', '~> 5.1.4' +# Use postgresql as the database for Active Record +gem 'pg', '~> 0.18' +# Use Puma as the app server +gem 'puma', '~> 3.7' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.2' +# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks +gem 'turbolinks', '~> 5' +# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder +gem 'jbuilder', '~> 2.5' +# Use Redis adapter to run Action Cable in production +# gem 'redis', '~> 3.0' +# Use ActiveModel has_secure_password +# gem 'bcrypt', '~> 3.1.7' + +# Use Capistrano for deployment +# gem 'capistrano-rails', group: :development + +group :development, :test do + # Call 'byebug' anywhere in the code to stop execution and get a debugger console + gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] + # Adds support for Capybara system testing and selenium driver + gem 'capybara', '~> 2.13' + gem 'selenium-webdriver' +end + +group :development do + # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. + gem 'web-console', '>= 3.3.0' + gem 'listen', '>= 3.0.5', '< 3.2' + # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring + gem 'spring' + gem 'spring-watcher-listen', '~> 2.0.0' +end + +# Windows does not include zoneinfo files, so bundle the tzinfo-data gem +gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 000000000..9ff8d7c6c --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,196 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (5.1.4) + actionpack (= 5.1.4) + nio4r (~> 2.0) + websocket-driver (~> 0.6.1) + actionmailer (5.1.4) + actionpack (= 5.1.4) + actionview (= 5.1.4) + activejob (= 5.1.4) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (5.1.4) + actionview (= 5.1.4) + activesupport (= 5.1.4) + rack (~> 2.0) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.1.4) + activesupport (= 5.1.4) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activejob (5.1.4) + activesupport (= 5.1.4) + globalid (>= 0.3.6) + activemodel (5.1.4) + activesupport (= 5.1.4) + activerecord (5.1.4) + activemodel (= 5.1.4) + activesupport (= 5.1.4) + arel (~> 8.0) + activesupport (5.1.4) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (~> 0.7) + minitest (~> 5.1) + tzinfo (~> 1.1) + addressable (2.5.2) + public_suffix (>= 2.0.2, < 4.0) + arel (8.0.0) + bindex (0.5.0) + builder (3.2.3) + byebug (9.1.0) + capybara (2.15.1) + addressable + mini_mime (>= 0.1.3) + nokogiri (>= 1.3.3) + rack (>= 1.0.0) + rack-test (>= 0.5.4) + xpath (~> 2.0) + childprocess (0.7.1) + ffi (~> 1.0, >= 1.0.11) + coffee-rails (4.2.2) + coffee-script (>= 2.2.0) + railties (>= 4.0.0) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.12.2) + concurrent-ruby (1.0.5) + erubi (1.6.1) + execjs (2.7.0) + ffi (1.9.18) + globalid (0.4.0) + activesupport (>= 4.2.0) + i18n (0.8.6) + jbuilder (2.7.0) + activesupport (>= 4.2.0) + multi_json (>= 1.2) + listen (3.1.5) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + ruby_dep (~> 1.2) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.6) + mime-types (>= 1.16, < 4) + method_source (0.8.2) + mime-types (3.1) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0521) + mini_mime (0.1.4) + mini_portile2 (2.2.0) + minitest (5.10.3) + multi_json (1.12.2) + nio4r (2.1.0) + nokogiri (1.8.0) + mini_portile2 (~> 2.2.0) + pg (0.21.0) + public_suffix (3.0.0) + puma (3.10.0) + rack (2.0.3) + rack-test (0.7.0) + rack (>= 1.0, < 3) + rails (5.1.4) + actioncable (= 5.1.4) + actionmailer (= 5.1.4) + actionpack (= 5.1.4) + actionview (= 5.1.4) + activejob (= 5.1.4) + activemodel (= 5.1.4) + activerecord (= 5.1.4) + activesupport (= 5.1.4) + bundler (>= 1.3.0) + railties (= 5.1.4) + sprockets-rails (>= 2.0.0) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (5.1.4) + actionpack (= 5.1.4) + activesupport (= 5.1.4) + method_source + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (12.1.0) + rb-fsevent (0.10.2) + rb-inotify (0.9.10) + ffi (>= 0.5.0, < 2) + ruby_dep (1.5.0) + rubyzip (1.2.1) + sass (3.5.1) + sass-listen (~> 4.0.0) + sass-listen (4.0.0) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + sass-rails (5.0.6) + railties (>= 4.0.0, < 6) + sass (~> 3.1) + sprockets (>= 2.8, < 4.0) + sprockets-rails (>= 2.0, < 4.0) + tilt (>= 1.1, < 3) + selenium-webdriver (3.5.2) + childprocess (~> 0.5) + rubyzip (~> 1.0) + spring (2.0.2) + activesupport (>= 4.2) + spring-watcher-listen (2.0.1) + listen (>= 2.7, < 4.0) + spring (>= 1.2, < 3.0) + sprockets (3.7.1) + concurrent-ruby (~> 1.0) + rack (> 1, < 3) + sprockets-rails (3.2.1) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + thor (0.20.0) + thread_safe (0.3.6) + tilt (2.0.8) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.3) + tzinfo (1.2.3) + thread_safe (~> 0.1) + uglifier (3.2.0) + execjs (>= 0.3.0, < 3) + web-console (3.5.1) + actionview (>= 5.0) + activemodel (>= 5.0) + bindex (>= 0.4.0) + railties (>= 5.0) + websocket-driver (0.6.5) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.2) + xpath (2.1.0) + nokogiri (~> 1.3) + +PLATFORMS + ruby + +DEPENDENCIES + byebug + capybara (~> 2.13) + coffee-rails (~> 4.2) + jbuilder (~> 2.5) + listen (>= 3.0.5, < 3.2) + pg (~> 0.18) + puma (~> 3.7) + rails (~> 5.1.4) + sass-rails (~> 5.0) + selenium-webdriver + spring + spring-watcher-listen (~> 2.0.0) + turbolinks (~> 5) + tzinfo-data + uglifier (>= 1.3.0) + web-console (>= 3.3.0) + +BUNDLED WITH + 1.15.4 diff --git a/Rakefile b/Rakefile new file mode 100644 index 000000000..e85f91391 --- /dev/null +++ b/Rakefile @@ -0,0 +1,6 @@ +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require_relative 'config/application' + +Rails.application.load_tasks diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 000000000..b16e53d6d --- /dev/null +++ b/app/assets/config/manifest.js @@ -0,0 +1,3 @@ +//= link_tree ../images +//= link_directory ../javascripts .js +//= link_directory ../stylesheets .css diff --git a/app/assets/images/.keep b/app/assets/images/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 000000000..46b20359f --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,15 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, or any plugin's +// vendor/assets/javascripts directory can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// compiled file. JavaScript code in this file should be added after the last require_* statement. +// +// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details +// about supported directives. +// +//= require rails-ujs +//= require turbolinks +//= require_tree . diff --git a/app/assets/javascripts/cable.js b/app/assets/javascripts/cable.js new file mode 100644 index 000000000..739aa5f02 --- /dev/null +++ b/app/assets/javascripts/cable.js @@ -0,0 +1,13 @@ +// Action Cable provides the framework to deal with WebSockets in Rails. +// You can generate new channels where WebSocket features live using the `rails generate channel` command. +// +//= require action_cable +//= require_self +//= require_tree ./channels + +(function() { + this.App || (this.App = {}); + + App.cable = ActionCable.createConsumer(); + +}).call(this); diff --git a/app/assets/javascripts/channels/.keep b/app/assets/javascripts/channels/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/assets/javascripts/tasks.coffee b/app/assets/javascripts/tasks.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/tasks.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://coffeescript.org/ diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 000000000..d05ea0f51 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,15 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's + * vendor/assets/stylesheets directory can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the bottom of the + * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS + * files in this directory. Styles in this file should be added after the last require_* statement. + * It is generally better to create a new file per style scope. + * + *= require_tree . + *= require_self + */ diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..c5e7712d4 --- /dev/null +++ b/app/assets/stylesheets/tasks.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the Tasks controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/channels/application_cable/channel.rb b/app/channels/application_cable/channel.rb new file mode 100644 index 000000000..d67269728 --- /dev/null +++ b/app/channels/application_cable/channel.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Channel < ActionCable::Channel::Base + end +end diff --git a/app/channels/application_cable/connection.rb b/app/channels/application_cable/connection.rb new file mode 100644 index 000000000..0ff5442f4 --- /dev/null +++ b/app/channels/application_cable/connection.rb @@ -0,0 +1,4 @@ +module ApplicationCable + class Connection < ActionCable::Connection::Base + end +end diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 000000000..1c07694e9 --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,3 @@ +class ApplicationController < ActionController::Base + protect_from_forgery with: :exception +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb new file mode 100644 index 000000000..39df36d48 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,22 @@ +class TasksController < ApplicationController + def create + end + + def destroy + end + + def edit + end + + def index + end + + def new + end + + def show + end + + def update + end +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 000000000..de6be7945 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/helpers/tasks_helper.rb b/app/helpers/tasks_helper.rb new file mode 100644 index 000000000..ce894d00c --- /dev/null +++ b/app/helpers/tasks_helper.rb @@ -0,0 +1,2 @@ +module TasksHelper +end diff --git a/app/jobs/application_job.rb b/app/jobs/application_job.rb new file mode 100644 index 000000000..a009ace51 --- /dev/null +++ b/app/jobs/application_job.rb @@ -0,0 +1,2 @@ +class ApplicationJob < ActiveJob::Base +end diff --git a/app/mailers/application_mailer.rb b/app/mailers/application_mailer.rb new file mode 100644 index 000000000..286b2239d --- /dev/null +++ b/app/mailers/application_mailer.rb @@ -0,0 +1,4 @@ +class ApplicationMailer < ActionMailer::Base + default from: 'from@example.com' + layout 'mailer' +end diff --git a/app/models/application_record.rb b/app/models/application_record.rb new file mode 100644 index 000000000..10a4cba84 --- /dev/null +++ b/app/models/application_record.rb @@ -0,0 +1,3 @@ +class ApplicationRecord < ActiveRecord::Base + self.abstract_class = true +end diff --git a/app/models/concerns/.keep b/app/models/concerns/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 000000000..be7a9f069 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,14 @@ + + + + TaskList + <%= csrf_meta_tags %> + + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.html.erb b/app/views/layouts/mailer.html.erb new file mode 100644 index 000000000..cbd34d2e9 --- /dev/null +++ b/app/views/layouts/mailer.html.erb @@ -0,0 +1,13 @@ + + + + + + + + + <%= yield %> + + diff --git a/app/views/layouts/mailer.text.erb b/app/views/layouts/mailer.text.erb new file mode 100644 index 000000000..37f0bddbd --- /dev/null +++ b/app/views/layouts/mailer.text.erb @@ -0,0 +1 @@ +<%= yield %> diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb new file mode 100644 index 000000000..fcad439c4 --- /dev/null +++ b/app/views/tasks/create.html.erb @@ -0,0 +1,2 @@ +

Tasks#create

+

Find me in app/views/tasks/create.html.erb

diff --git a/app/views/tasks/destroy.html.erb b/app/views/tasks/destroy.html.erb new file mode 100644 index 000000000..a90559f9d --- /dev/null +++ b/app/views/tasks/destroy.html.erb @@ -0,0 +1,2 @@ +

Tasks#destroy

+

Find me in app/views/tasks/destroy.html.erb

diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb new file mode 100644 index 000000000..374190308 --- /dev/null +++ b/app/views/tasks/edit.html.erb @@ -0,0 +1,2 @@ +

Tasks#edit

+

Find me in app/views/tasks/edit.html.erb

diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb new file mode 100644 index 000000000..b16c10310 --- /dev/null +++ b/app/views/tasks/index.html.erb @@ -0,0 +1,2 @@ +

Tasks#index

+

Find me in app/views/tasks/index.html.erb

diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb new file mode 100644 index 000000000..2484008a3 --- /dev/null +++ b/app/views/tasks/new.html.erb @@ -0,0 +1,2 @@ +

Tasks#new

+

Find me in app/views/tasks/new.html.erb

diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb new file mode 100644 index 000000000..1139224db --- /dev/null +++ b/app/views/tasks/show.html.erb @@ -0,0 +1,2 @@ +

Tasks#show

+

Find me in app/views/tasks/show.html.erb

diff --git a/app/views/tasks/update.html.erb b/app/views/tasks/update.html.erb new file mode 100644 index 000000000..fdb1ea609 --- /dev/null +++ b/app/views/tasks/update.html.erb @@ -0,0 +1,2 @@ +

Tasks#update

+

Find me in app/views/tasks/update.html.erb

diff --git a/bin/bundle b/bin/bundle new file mode 100755 index 000000000..66e9889e8 --- /dev/null +++ b/bin/bundle @@ -0,0 +1,3 @@ +#!/usr/bin/env ruby +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) +load Gem.bin_path('bundler', 'bundle') diff --git a/bin/rails b/bin/rails new file mode 100755 index 000000000..5badb2fde --- /dev/null +++ b/bin/rails @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +APP_PATH = File.expand_path('../config/application', __dir__) +require_relative '../config/boot' +require 'rails/commands' diff --git a/bin/rake b/bin/rake new file mode 100755 index 000000000..d87d5f578 --- /dev/null +++ b/bin/rake @@ -0,0 +1,9 @@ +#!/usr/bin/env ruby +begin + load File.expand_path('../spring', __FILE__) +rescue LoadError => e + raise unless e.message.include?('spring') +end +require_relative '../config/boot' +require 'rake' +Rake.application.run diff --git a/bin/setup b/bin/setup new file mode 100755 index 000000000..78c4e861d --- /dev/null +++ b/bin/setup @@ -0,0 +1,38 @@ +#!/usr/bin/env ruby +require 'pathname' +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + # Install JavaScript dependencies if using Yarn + # system('bin/yarn') + + + # puts "\n== Copying sample files ==" + # unless File.exist?('config/database.yml') + # cp 'config/database.yml.sample', 'config/database.yml' + # end + + puts "\n== Preparing database ==" + system! 'bin/rails db:setup' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/spring b/bin/spring new file mode 100755 index 000000000..fb2ec2ebb --- /dev/null +++ b/bin/spring @@ -0,0 +1,17 @@ +#!/usr/bin/env ruby + +# This file loads spring without using Bundler, in order to be fast. +# It gets overwritten when you run the `spring binstub` command. + +unless defined?(Spring) + require 'rubygems' + require 'bundler' + + lockfile = Bundler::LockfileParser.new(Bundler.default_lockfile.read) + spring = lockfile.specs.detect { |spec| spec.name == "spring" } + if spring + Gem.use_paths Gem.dir, Bundler.bundle_path.to_s, *Gem.path + gem 'spring', spring.version + require 'spring/binstub' + end +end diff --git a/bin/update b/bin/update new file mode 100755 index 000000000..a8e4462f2 --- /dev/null +++ b/bin/update @@ -0,0 +1,29 @@ +#!/usr/bin/env ruby +require 'pathname' +require 'fileutils' +include FileUtils + +# path to your application root. +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) + +def system!(*args) + system(*args) || abort("\n== Command #{args} failed ==") +end + +chdir APP_ROOT do + # This script is a way to update your development environment automatically. + # Add necessary update steps to this file. + + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + + puts "\n== Updating database ==" + system! 'bin/rails db:migrate' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' +end diff --git a/bin/yarn b/bin/yarn new file mode 100755 index 000000000..c2bacef83 --- /dev/null +++ b/bin/yarn @@ -0,0 +1,11 @@ +#!/usr/bin/env ruby +VENDOR_PATH = File.expand_path('..', __dir__) +Dir.chdir(VENDOR_PATH) do + begin + exec "yarnpkg #{ARGV.join(" ")}" + rescue Errno::ENOENT + $stderr.puts "Yarn executable was not detected in the system." + $stderr.puts "Download Yarn at https://yarnpkg.com/en/docs/install" + exit 1 + end +end diff --git a/config.ru b/config.ru new file mode 100644 index 000000000..f7ba0b527 --- /dev/null +++ b/config.ru @@ -0,0 +1,5 @@ +# This file is used by Rack-based servers to start the application. + +require_relative 'config/environment' + +run Rails.application diff --git a/config/application.rb b/config/application.rb new file mode 100644 index 000000000..16136d34f --- /dev/null +++ b/config/application.rb @@ -0,0 +1,18 @@ +require_relative 'boot' + +require 'rails/all' + +# Require the gems listed in Gemfile, including any gems +# you've limited to :test, :development, or :production. +Bundler.require(*Rails.groups) + +module TaskList + class Application < Rails::Application + # Initialize configuration defaults for originally generated Rails version. + config.load_defaults 5.1 + + # Settings in config/environments/* take precedence over those specified here. + # Application configuration should go into files in config/initializers + # -- all .rb files in that directory are automatically loaded. + end +end diff --git a/config/boot.rb b/config/boot.rb new file mode 100644 index 000000000..30f5120df --- /dev/null +++ b/config/boot.rb @@ -0,0 +1,3 @@ +ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) + +require 'bundler/setup' # Set up gems listed in the Gemfile. diff --git a/config/cable.yml b/config/cable.yml new file mode 100644 index 000000000..cc73740fa --- /dev/null +++ b/config/cable.yml @@ -0,0 +1,10 @@ +development: + adapter: async + +test: + adapter: async + +production: + adapter: redis + url: redis://localhost:6379/1 + channel_prefix: TaskList_production diff --git a/config/database.yml b/config/database.yml new file mode 100644 index 000000000..40243c8b5 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,85 @@ +# PostgreSQL. Versions 9.1 and up are supported. +# +# Install the pg driver: +# gem install pg +# On OS X with Homebrew: +# gem install pg -- --with-pg-config=/usr/local/bin/pg_config +# On OS X with MacPorts: +# gem install pg -- --with-pg-config=/opt/local/lib/postgresql84/bin/pg_config +# On Windows: +# gem install pg +# Choose the win32 build. +# Install PostgreSQL and put its /bin directory on your path. +# +# Configure Using Gemfile +# gem 'pg' +# +default: &default + adapter: postgresql + encoding: unicode + # For details on connection pooling, see Rails configuration guide + # http://guides.rubyonrails.org/configuring.html#database-pooling + pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + +development: + <<: *default + database: TaskList_development + + # The specified database role being used to connect to postgres. + # To create additional roles in postgres see `$ createuser --help`. + # When left blank, postgres will use the default role. This is + # the same name as the operating system user that initialized the database. + #username: TaskList + + # The password associated with the postgres role (username). + #password: + + # Connect on a TCP socket. Omitted by default since the client uses a + # domain socket that doesn't need configuration. Windows does not have + # domain sockets, so uncomment these lines. + #host: localhost + + # The TCP port the server listens on. Defaults to 5432. + # If your server runs on a different port number, change accordingly. + #port: 5432 + + # Schema search path. The server defaults to $user,public + #schema_search_path: myapp,sharedapp,public + + # Minimum log levels, in increasing order: + # debug5, debug4, debug3, debug2, debug1, + # log, notice, warning, error, fatal, and panic + # Defaults to warning. + #min_messages: notice + +# Warning: The database defined as "test" will be erased and +# re-generated from your development database when you run "rake". +# Do not set this db to the same as development or production. +test: + <<: *default + database: TaskList_test + +# As with config/secrets.yml, you never want to store sensitive information, +# like your database password, in your source code. If your source code is +# ever seen by anyone, they now have access to your database. +# +# Instead, provide the password as a unix environment variable when you boot +# the app. Read http://guides.rubyonrails.org/configuring.html#configuring-a-database +# for a full rundown on how to provide these environment variables in a +# production deployment. +# +# On Heroku and other platform providers, you may have a full connection URL +# available as an environment variable. For example: +# +# DATABASE_URL="postgres://myuser:mypass@localhost/somedatabase" +# +# You can use this database configuration with: +# +# production: +# url: <%= ENV['DATABASE_URL'] %> +# +production: + <<: *default + database: TaskList_production + username: TaskList + password: <%= ENV['TASKLIST_DATABASE_PASSWORD'] %> diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 000000000..426333bb4 --- /dev/null +++ b/config/environment.rb @@ -0,0 +1,5 @@ +# Load the Rails application. +require_relative 'application' + +# Initialize the Rails application. +Rails.application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb new file mode 100644 index 000000000..5187e2218 --- /dev/null +++ b/config/environments/development.rb @@ -0,0 +1,54 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # In the development environment your application's code is reloaded on + # every request. This slows down response time but is perfect for development + # since you don't have to restart the web server when you make code changes. + config.cache_classes = false + + # Do not eager load code on boot. + config.eager_load = false + + # Show full error reports. + config.consider_all_requests_local = true + + # Enable/disable caching. By default caching is disabled. + if Rails.root.join('tmp/caching-dev.txt').exist? + config.action_controller.perform_caching = true + + config.cache_store = :memory_store + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}" + } + else + config.action_controller.perform_caching = false + + config.cache_store = :null_store + end + + # Don't care if the mailer can't send. + config.action_mailer.raise_delivery_errors = false + + config.action_mailer.perform_caching = false + + # Print deprecation notices to the Rails logger. + config.active_support.deprecation = :log + + # Raise an error on page load if there are pending migrations. + config.active_record.migration_error = :page_load + + # Debug mode disables concatenation and preprocessing of assets. + # This option may cause significant delays in view rendering with a large + # number of complex assets. + config.assets.debug = true + + # Suppress logger output for asset requests. + config.assets.quiet = true + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true + + # Use an evented file watcher to asynchronously detect changes in source code, + # routes, locales, etc. This feature depends on the listen gem. + config.file_watcher = ActiveSupport::EventedFileUpdateChecker +end diff --git a/config/environments/production.rb b/config/environments/production.rb new file mode 100644 index 000000000..fcd7d8b14 --- /dev/null +++ b/config/environments/production.rb @@ -0,0 +1,91 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # Code is not reloaded between requests. + config.cache_classes = true + + # Eager load code on boot. This eager loads most of Rails and + # your application in memory, allowing both threaded web servers + # and those relying on copy on write to perform better. + # Rake tasks automatically ignore this option for performance. + config.eager_load = true + + # Full error reports are disabled and caching is turned on. + config.consider_all_requests_local = false + config.action_controller.perform_caching = true + + # Attempt to read encrypted secrets from `config/secrets.yml.enc`. + # Requires an encryption key in `ENV["RAILS_MASTER_KEY"]` or + # `config/secrets.yml.key`. + config.read_encrypted_secrets = true + + # Disable serving static files from the `/public` folder by default since + # Apache or NGINX already handles this. + config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present? + + # Compress JavaScripts and CSS. + config.assets.js_compressor = :uglifier + # config.assets.css_compressor = :sass + + # Do not fallback to assets pipeline if a precompiled asset is missed. + config.assets.compile = false + + # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb + + # Enable serving of images, stylesheets, and JavaScripts from an asset server. + # config.action_controller.asset_host = 'http://assets.example.com' + + # Specifies the header that your server uses for sending files. + # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache + # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX + + # Mount Action Cable outside main process or domain + # config.action_cable.mount_path = nil + # config.action_cable.url = 'wss://example.com/cable' + # config.action_cable.allowed_request_origins = [ 'http://example.com', /http:\/\/example.*/ ] + + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. + # config.force_ssl = true + + # Use the lowest log level to ensure availability of diagnostic information + # when problems arise. + config.log_level = :debug + + # Prepend all log lines with the following tags. + config.log_tags = [ :request_id ] + + # Use a different cache store in production. + # config.cache_store = :mem_cache_store + + # Use a real queuing backend for Active Job (and separate queues per environment) + # config.active_job.queue_adapter = :resque + # config.active_job.queue_name_prefix = "TaskList_#{Rails.env}" + config.action_mailer.perform_caching = false + + # Ignore bad email addresses and do not raise email delivery errors. + # Set this to true and configure the email server for immediate delivery to raise delivery errors. + # config.action_mailer.raise_delivery_errors = false + + # Enable locale fallbacks for I18n (makes lookups for any locale fall back to + # the I18n.default_locale when a translation cannot be found). + config.i18n.fallbacks = true + + # Send deprecation notices to registered listeners. + config.active_support.deprecation = :notify + + # Use default logging formatter so that PID and timestamp are not suppressed. + config.log_formatter = ::Logger::Formatter.new + + # Use a different logger for distributed setups. + # require 'syslog/logger' + # config.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new 'app-name') + + if ENV["RAILS_LOG_TO_STDOUT"].present? + logger = ActiveSupport::Logger.new(STDOUT) + logger.formatter = config.log_formatter + config.logger = ActiveSupport::TaggedLogging.new(logger) + end + + # Do not dump schema after migrations. + config.active_record.dump_schema_after_migration = false +end diff --git a/config/environments/test.rb b/config/environments/test.rb new file mode 100644 index 000000000..8e5cbde53 --- /dev/null +++ b/config/environments/test.rb @@ -0,0 +1,42 @@ +Rails.application.configure do + # Settings specified here will take precedence over those in config/application.rb. + + # The test environment is used exclusively to run your application's + # test suite. You never need to work with it otherwise. Remember that + # your test database is "scratch space" for the test suite and is wiped + # and recreated between test runs. Don't rely on the data there! + config.cache_classes = true + + # Do not eager load code on boot. This avoids loading your whole application + # just for the purpose of running a single test. If you are using a tool that + # preloads Rails for running tests, you may have to set it to true. + config.eager_load = false + + # Configure public file server for tests with Cache-Control for performance. + config.public_file_server.enabled = true + config.public_file_server.headers = { + 'Cache-Control' => "public, max-age=#{1.hour.seconds.to_i}" + } + + # Show full error reports and disable caching. + config.consider_all_requests_local = true + config.action_controller.perform_caching = false + + # Raise exceptions instead of rendering exception templates. + config.action_dispatch.show_exceptions = false + + # Disable request forgery protection in test environment. + config.action_controller.allow_forgery_protection = false + config.action_mailer.perform_caching = false + + # Tell Action Mailer not to deliver emails to the real world. + # The :test delivery method accumulates sent emails in the + # ActionMailer::Base.deliveries array. + config.action_mailer.delivery_method = :test + + # Print deprecation notices to the stderr. + config.active_support.deprecation = :stderr + + # Raises error for missing translations + # config.action_view.raise_on_missing_translations = true +end diff --git a/config/initializers/application_controller_renderer.rb b/config/initializers/application_controller_renderer.rb new file mode 100644 index 000000000..89d2efab2 --- /dev/null +++ b/config/initializers/application_controller_renderer.rb @@ -0,0 +1,8 @@ +# Be sure to restart your server when you modify this file. + +# ActiveSupport::Reloader.to_prepare do +# ApplicationController.renderer.defaults.merge!( +# http_host: 'example.org', +# https: false +# ) +# end diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb new file mode 100644 index 000000000..4b828e80c --- /dev/null +++ b/config/initializers/assets.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# Version of your assets, change this if you want to expire all your assets. +Rails.application.config.assets.version = '1.0' + +# Add additional assets to the asset load path. +# Rails.application.config.assets.paths << Emoji.images_path +# Add Yarn node_modules folder to the asset load path. +Rails.application.config.assets.paths << Rails.root.join('node_modules') + +# Precompile additional assets. +# application.js, application.css, and all non-JS/CSS in the app/assets +# folder are already added. +# Rails.application.config.assets.precompile += %w( admin.js admin.css ) diff --git a/config/initializers/backtrace_silencers.rb b/config/initializers/backtrace_silencers.rb new file mode 100644 index 000000000..59385cdf3 --- /dev/null +++ b/config/initializers/backtrace_silencers.rb @@ -0,0 +1,7 @@ +# Be sure to restart your server when you modify this file. + +# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces. +# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ } + +# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code. +# Rails.backtrace_cleaner.remove_silencers! diff --git a/config/initializers/cookies_serializer.rb b/config/initializers/cookies_serializer.rb new file mode 100644 index 000000000..5a6a32d37 --- /dev/null +++ b/config/initializers/cookies_serializer.rb @@ -0,0 +1,5 @@ +# Be sure to restart your server when you modify this file. + +# Specify a serializer for the signed and encrypted cookie jars. +# Valid options are :json, :marshal, and :hybrid. +Rails.application.config.action_dispatch.cookies_serializer = :json diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 000000000..4a994e1e7 --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Configure sensitive parameters which will be filtered from the log file. +Rails.application.config.filter_parameters += [:password] diff --git a/config/initializers/inflections.rb b/config/initializers/inflections.rb new file mode 100644 index 000000000..ac033bf9d --- /dev/null +++ b/config/initializers/inflections.rb @@ -0,0 +1,16 @@ +# Be sure to restart your server when you modify this file. + +# Add new inflection rules using the following format. Inflections +# are locale specific, and you may define rules for as many different +# locales as you wish. All of these examples are active by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.plural /^(ox)$/i, '\1en' +# inflect.singular /^(ox)en/i, '\1' +# inflect.irregular 'person', 'people' +# inflect.uncountable %w( fish sheep ) +# end + +# These inflection rules are supported but not enabled by default: +# ActiveSupport::Inflector.inflections(:en) do |inflect| +# inflect.acronym 'RESTful' +# end diff --git a/config/initializers/mime_types.rb b/config/initializers/mime_types.rb new file mode 100644 index 000000000..dc1899682 --- /dev/null +++ b/config/initializers/mime_types.rb @@ -0,0 +1,4 @@ +# Be sure to restart your server when you modify this file. + +# Add new mime types for use in respond_to blocks: +# Mime::Type.register "text/richtext", :rtf diff --git a/config/initializers/wrap_parameters.rb b/config/initializers/wrap_parameters.rb new file mode 100644 index 000000000..bbfc3961b --- /dev/null +++ b/config/initializers/wrap_parameters.rb @@ -0,0 +1,14 @@ +# Be sure to restart your server when you modify this file. + +# This file contains settings for ActionController::ParamsWrapper which +# is enabled by default. + +# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array. +ActiveSupport.on_load(:action_controller) do + wrap_parameters format: [:json] +end + +# To enable root element in JSON for ActiveRecord objects. +# ActiveSupport.on_load(:active_record) do +# self.include_root_in_json = true +# end diff --git a/config/locales/en.yml b/config/locales/en.yml new file mode 100644 index 000000000..decc5a857 --- /dev/null +++ b/config/locales/en.yml @@ -0,0 +1,33 @@ +# Files in the config/locales directory are used for internationalization +# and are automatically loaded by Rails. If you want to use locales other +# than English, add the necessary files in this directory. +# +# To use the locales, use `I18n.t`: +# +# I18n.t 'hello' +# +# In views, this is aliased to just `t`: +# +# <%= t('hello') %> +# +# To use a different locale, set it with `I18n.locale`: +# +# I18n.locale = :es +# +# This would use the information in config/locales/es.yml. +# +# The following keys must be escaped otherwise they will not be retrieved by +# the default I18n backend: +# +# true, false, on, off, yes, no +# +# Instead, surround them with single quotes. +# +# en: +# 'true': 'foo' +# +# To learn more, please read the Rails Internationalization guide +# available at http://guides.rubyonrails.org/i18n.html. + +en: + hello: "Hello world" diff --git a/config/puma.rb b/config/puma.rb new file mode 100644 index 000000000..1e19380dc --- /dev/null +++ b/config/puma.rb @@ -0,0 +1,56 @@ +# Puma can serve each request in a thread from an internal thread pool. +# The `threads` method setting takes two numbers: a minimum and maximum. +# Any libraries that use thread pools should be configured to match +# the maximum value specified for Puma. Default is set to 5 threads for minimum +# and maximum; this matches the default thread size of Active Record. +# +threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 } +threads threads_count, threads_count + +# Specifies the `port` that Puma will listen on to receive requests; default is 3000. +# +port ENV.fetch("PORT") { 3000 } + +# Specifies the `environment` that Puma will run in. +# +environment ENV.fetch("RAILS_ENV") { "development" } + +# Specifies the number of `workers` to boot in clustered mode. +# Workers are forked webserver processes. If using threads and workers together +# the concurrency of the application would be max `threads` * `workers`. +# Workers do not work on JRuby or Windows (both of which do not support +# processes). +# +# workers ENV.fetch("WEB_CONCURRENCY") { 2 } + +# Use the `preload_app!` method when specifying a `workers` number. +# This directive tells Puma to first boot the application and load code +# before forking the application. This takes advantage of Copy On Write +# process behavior so workers use less memory. If you use this option +# you need to make sure to reconnect any threads in the `on_worker_boot` +# block. +# +# preload_app! + +# If you are preloading your application and using Active Record, it's +# recommended that you close any connections to the database before workers +# are forked to prevent connection leakage. +# +# before_fork do +# ActiveRecord::Base.connection_pool.disconnect! if defined?(ActiveRecord) +# end + +# The code in the `on_worker_boot` will be called if you are using +# clustered mode by specifying a number of `workers`. After each worker +# process is booted, this block will be run. If you are using the `preload_app!` +# option, you will want to use this block to reconnect to any threads +# or connections that may have been created at application boot, as Ruby +# cannot share connections between processes. +# +# on_worker_boot do +# ActiveRecord::Base.establish_connection if defined?(ActiveRecord) +# end +# + +# Allow puma to be restarted by `rails restart` command. +plugin :tmp_restart diff --git a/config/routes.rb b/config/routes.rb new file mode 100644 index 000000000..1be5cea13 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,18 @@ +Rails.application.routes.draw do + get '/tasks/index', to: 'tasks#index', as: 'tasks' + + get '/tasks/:id/edit', to: 'tasks#edit', as: 'edit_task' + + get '/tasks/new', to: 'tasks#new', as: 'new_task' + + get '/tasks/:id' to: 'tasks#show', as: 'task' + + patch '/tasks/:id', to: 'tasks#update', as: 'update_task' + + post '/tasks', to: 'tasks/create', as: 'create_task' + + delete '/tasks', to: 'tasks#destroy', as: 'delete_task' + + + # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..a57488a57 --- /dev/null +++ b/config/secrets.yml @@ -0,0 +1,32 @@ +# Be sure to restart your server when you modify this file. + +# Your secret key is used for verifying the integrity of signed cookies. +# If you change this key, all old signed cookies will become invalid! + +# Make sure the secret is at least 30 characters and all random, +# no regular words or you'll be exposed to dictionary attacks. +# You can use `rails secret` to generate a secure secret key. + +# Make sure the secrets in this file are kept private +# if you're sharing your code publicly. + +# Shared secrets are available across all environments. + +# shared: +# api_key: a1B2c3D4e5F6 + +# Environmental secrets are only available for that specific environment. + +development: + secret_key_base: 69e47fa24ec68a37834af9e236c4f4f1ae5529d7837d3f99a9afc17d4fda54c2bc423214d004a22e9d386d3b5a0d99d7bf4ce742cacbeacf28273b222679299b + +test: + secret_key_base: 0031e5b40b47083e1c76389687364f77b749056a01609bdc1ff7033b342d2c04ec5f64719d782fc2ff3545c94dc4e82d34e83cd8a63864e1c4e1c42850848ed6 + +# Do not keep production secrets in the unencrypted secrets file. +# Instead, either read values from the environment. +# Or, use `bin/rails secrets:setup` to configure encrypted secrets +# and move the `production:` environment over there. + +production: + secret_key_base: <%= ENV["SECRET_KEY_BASE"] %> diff --git a/config/spring.rb b/config/spring.rb new file mode 100644 index 000000000..c9119b40c --- /dev/null +++ b/config/spring.rb @@ -0,0 +1,6 @@ +%w( + .ruby-version + .rbenv-vars + tmp/restart.txt + tmp/caching-dev.txt +).each { |path| Spring.watch(path) } diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..2611543b3 --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,18 @@ +# This file is auto-generated from the current state of the database. Instead +# of editing this file, please use the migrations feature of Active Record to +# incrementally modify your database, and then regenerate this schema definition. +# +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). +# +# It's strongly recommended that you check this file into your version control system. + +ActiveRecord::Schema.define(version: 0) do + + # These are extensions that must be enabled in order to support this database + enable_extension "plpgsql" + +end diff --git a/db/seeds.rb b/db/seeds.rb new file mode 100644 index 000000000..1beea2acc --- /dev/null +++ b/db/seeds.rb @@ -0,0 +1,7 @@ +# This file should contain all the record creation needed to seed the database with its default values. +# The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup). +# +# Examples: +# +# movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }]) +# Character.create(name: 'Luke', movie: movies.first) diff --git a/lib/assets/.keep b/lib/assets/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/lib/tasks/.keep b/lib/tasks/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/.keep b/log/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/log/development.log b/log/development.log new file mode 100644 index 000000000..69e66cbad --- /dev/null +++ b/log/development.log @@ -0,0 +1,14 @@ +  (0.1ms) DROP DATABASE IF EXISTS "TaskList_development" +  (0.1ms) DROP DATABASE IF EXISTS "TaskList_test" +  (345.4ms) CREATE DATABASE "TaskList_development" ENCODING = 'unicode' +  (296.4ms) CREATE DATABASE "TaskList_test" ENCODING = 'unicode' +  (7.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) +  (2.1ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (0.2ms) SELECT pg_try_advisory_lock(4169262226251541860) +  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "development"], ["created_at", "2017-09-18 22:33:39.755846"], ["updated_at", "2017-09-18 22:33:39.755846"]] +  (0.3ms) COMMIT +  (0.2ms) SELECT pg_advisory_unlock(4169262226251541860) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC diff --git a/package.json b/package.json new file mode 100644 index 000000000..f9cbc5515 --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "name": "TaskList", + "private": true, + "dependencies": {} +} diff --git a/public/404.html b/public/404.html new file mode 100644 index 000000000..2be3af26f --- /dev/null +++ b/public/404.html @@ -0,0 +1,67 @@ + + + + The page you were looking for doesn't exist (404) + + + + + + +
+
+

The page you were looking for doesn't exist.

+

You may have mistyped the address or the page may have moved.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/422.html b/public/422.html new file mode 100644 index 000000000..c08eac0d1 --- /dev/null +++ b/public/422.html @@ -0,0 +1,67 @@ + + + + The change you wanted was rejected (422) + + + + + + +
+
+

The change you wanted was rejected.

+

Maybe you tried to change something you didn't have access to.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/500.html b/public/500.html new file mode 100644 index 000000000..78a030af2 --- /dev/null +++ b/public/500.html @@ -0,0 +1,66 @@ + + + + We're sorry, but something went wrong (500) + + + + + + +
+
+

We're sorry, but something went wrong.

+
+

If you are the application owner check the logs for more information.

+
+ + diff --git a/public/apple-touch-icon-precomposed.png b/public/apple-touch-icon-precomposed.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 000000000..e69de29bb diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 000000000..e69de29bb diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 000000000..37b576a4a --- /dev/null +++ b/public/robots.txt @@ -0,0 +1 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb new file mode 100644 index 000000000..d19212abd --- /dev/null +++ b/test/application_system_test_case.rb @@ -0,0 +1,5 @@ +require "test_helper" + +class ApplicationSystemTestCase < ActionDispatch::SystemTestCase + driven_by :selenium, using: :chrome, screen_size: [1400, 1400] +end diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..eb57e9d6c --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,39 @@ +require 'test_helper' + +class TasksControllerTest < ActionDispatch::IntegrationTest + test "should get create" do + get tasks_create_url + assert_response :success + end + + test "should get destroy" do + get tasks_destroy_url + assert_response :success + end + + test "should get edit" do + get tasks_edit_url + assert_response :success + end + + test "should get index" do + get tasks_index_url + assert_response :success + end + + test "should get new" do + get tasks_new_url + assert_response :success + end + + test "should get show" do + get tasks_show_url + assert_response :success + end + + test "should get update" do + get tasks_update_url + assert_response :success + end + +end diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/helpers/.keep b/test/helpers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/integration/.keep b/test/integration/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/mailers/.keep b/test/mailers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/models/.keep b/test/models/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/system/.keep b/test/system/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..e3c4ff0b8 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,9 @@ +require File.expand_path('../../config/environment', __FILE__) +require 'rails/test_help' + +class ActiveSupport::TestCase + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... +end diff --git a/vendor/.keep b/vendor/.keep new file mode 100644 index 000000000..e69de29bb From 13b180a5c36be75843292e3920f92d1a07f32201 Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Mon, 18 Sep 2017 23:46:06 -0700 Subject: [PATCH 02/16] baseline complete --- app/controllers/tasks_controller.rb | 15 +++++-- app/views/tasks/index.html.erb | 10 ++++- config/routes.rb | 7 ++- log/development.log | 66 +++++++++++++++++++++++++++++ 4 files changed, 89 insertions(+), 9 deletions(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 39df36d48..607df1439 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,4 +1,16 @@ class TasksController < ApplicationController + + # create a controller action for the task index page which contains an array of hard-coded tasks + TASKS = [ + {id: "clean up room"}, + {id: "wash dishes"}, + {id: "clean bathroom"} + ] + + def index + @tasks = TASKS + end + def create end @@ -8,9 +20,6 @@ def destroy def edit end - def index - end - def new end diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index b16c10310..1e1153ee0 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,2 +1,8 @@ -

Tasks#index

-

Find me in app/views/tasks/index.html.erb

+ +

TASK LIST

+ diff --git a/config/routes.rb b/config/routes.rb index 1be5cea13..b66894a32 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,18 +1,17 @@ Rails.application.routes.draw do - get '/tasks/index', to: 'tasks#index', as: 'tasks' + get '/tasks', to: 'tasks#index', as: 'tasks' get '/tasks/:id/edit', to: 'tasks#edit', as: 'edit_task' get '/tasks/new', to: 'tasks#new', as: 'new_task' - get '/tasks/:id' to: 'tasks#show', as: 'task' + get '/tasks/:id', to: 'tasks#show', as: 'task' patch '/tasks/:id', to: 'tasks#update', as: 'update_task' - post '/tasks', to: 'tasks/create', as: 'create_task' + post '/tasks', to: 'tasks#create', as: 'create_task' delete '/tasks', to: 'tasks#destroy', as: 'delete_task' - # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end diff --git a/log/development.log b/log/development.log index 69e66cbad..6b8b32144 100644 --- a/log/development.log +++ b/log/development.log @@ -12,3 +12,69 @@  (0.3ms) COMMIT  (0.2ms) SELECT pg_advisory_unlock(4169262226251541860)  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:39:57 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:40:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.3ms) +Completed 200 OK in 486ms (Views: 325.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 17:03:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 6ms + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:9: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:9: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 17:03:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 200 OK in 24ms (Views: 23.1ms) + + From 389d6d1424e3020caacb6f0e23b2c99adce7ba2d Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Tue, 19 Sep 2017 16:33:36 -0700 Subject: [PATCH 03/16] W1 completed --- app/controllers/tasks_controller.rb | 20 +- app/models/task.rb | 2 + app/views/tasks/index.html.erb | 3 +- config/routes.rb | 6 +- db/migrate/20170919222712_create_tasks.rb | 11 + db/schema.rb | 10 +- log/development.log | 310 ++++++++++++++++++++++ test/fixtures/tasks.yml | 11 + test/models/task_test.rb | 7 + 9 files changed, 370 insertions(+), 10 deletions(-) create mode 100644 app/models/task.rb create mode 100644 db/migrate/20170919222712_create_tasks.rb create mode 100644 test/fixtures/tasks.yml create mode 100644 test/models/task_test.rb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 607df1439..c407ae031 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,14 +1,18 @@ class TasksController < ApplicationController # create a controller action for the task index page which contains an array of hard-coded tasks - TASKS = [ - {id: "clean up room"}, - {id: "wash dishes"}, - {id: "clean bathroom"} - ] + # TASKS = [ + # {id: "clean up room"}, + # {id: "wash dishes"}, + # {id: "clean bathroom"} + # ] + + # def index + # @tasks = TASKS + # end def index - @tasks = TASKS + @tasks = Task.all end def create @@ -24,8 +28,12 @@ def new end def show + @task = Task.find(params[:id].to_i) end def update end + + # def '#mark_complete' + # end end diff --git a/app/models/task.rb b/app/models/task.rb new file mode 100644 index 000000000..3c2342421 --- /dev/null +++ b/app/models/task.rb @@ -0,0 +1,2 @@ +class Task < ApplicationRecord +end diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 1e1153ee0..b00733077 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,8 +1,9 @@ +

TASK LIST

    <% @tasks.each do |task| %> -
  • Task: <%=task[:id] %>
  • +
  • <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%>
  • <% end %>
diff --git a/config/routes.rb b/config/routes.rb index b66894a32..882ef2441 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,16 +1,18 @@ Rails.application.routes.draw do - get '/tasks', to: 'tasks#index', as: 'tasks' + get '/tasks', to: 'tasks#index', as: 'tasks' #tasks_path get '/tasks/:id/edit', to: 'tasks#edit', as: 'edit_task' get '/tasks/new', to: 'tasks#new', as: 'new_task' - get '/tasks/:id', to: 'tasks#show', as: 'task' + get '/tasks/:id', to: 'tasks#show', as: 'task_show' patch '/tasks/:id', to: 'tasks#update', as: 'update_task' post '/tasks', to: 'tasks#create', as: 'create_task' + patch '/tasks/:id/mark_complete', to: 'tasks#mark_complete' + delete '/tasks', to: 'tasks#destroy', as: 'delete_task' # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html diff --git a/db/migrate/20170919222712_create_tasks.rb b/db/migrate/20170919222712_create_tasks.rb new file mode 100644 index 000000000..a6ccc6db2 --- /dev/null +++ b/db/migrate/20170919222712_create_tasks.rb @@ -0,0 +1,11 @@ +class CreateTasks < ActiveRecord::Migration[5.1] + def change + create_table :tasks do |t| + t.string :name + t.text :description + t.date :completion_date + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 2611543b3..fd0974c6d 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,9 +10,17 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 0) do +ActiveRecord::Schema.define(version: 20170919222712) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" + create_table "tasks", force: :cascade do |t| + t.string "name" + t.text "description" + t.date "completion_date" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + end diff --git a/log/development.log b/log/development.log index 6b8b32144..b12b76f92 100644 --- a/log/development.log +++ b/log/development.log @@ -78,3 +78,313 @@ Processing by TasksController#index as HTML Completed 200 OK in 24ms (Views: 23.1ms) +Started GET "/" for 127.0.0.1 at 2017-09-19 15:01:55 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendering /Users/janedrozo/.rvm/gems/ruby-2.4.1/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb + Rendered /Users/janedrozo/.rvm/gems/ruby-2.4.1/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb (2.7ms) +Completed 200 OK in 152ms (Views: 6.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 15:01:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.4ms) +Completed 200 OK in 196ms (Views: 194.4ms) + + +  (0.2ms) SELECT pg_try_advisory_lock(4169262226251541860) +  (7.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateTasks (20170919222712) +  (0.2ms) BEGIN +  (26.8ms) CREATE TABLE "tasks" ("id" bigserial primary key, "name" character varying, "description" text, "completion_date" date, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) RETURNING "version" [["version", "20170919222712"]] +  (0.5ms) COMMIT + ActiveRecord::InternalMetadata Load (0.6ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +  (0.2ms) SELECT pg_advisory_unlock(4169262226251541860) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.3ms) BEGIN + SQL (0.8ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Walk the dog"], ["description", "Walk the dog in Central Park"], ["created_at", "2017-09-19 22:49:07.615378"], ["updated_at", "2017-09-19 22:49:07.615378"]] +  (1.1ms) COMMIT +  (0.2ms) BEGIN + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Pick up birthday cake"], ["description", "Pick up the cake from Belle's Bakery"], ["created_at", "2017-09-19 22:51:00.126884"], ["updated_at", "2017-09-19 22:51:00.126884"]] +  (1.1ms) COMMIT + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:12:19 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.5ms) +Completed 200 OK in 190ms (Views: 176.1ms | ActiveRecord: 4.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:12:35 -0700 +Processing by TasksController#index as HTML +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:12:45 -0700 + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 19ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:12:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:12:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:12:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:14:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:14:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:14:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:15:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 13.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:23:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 25ms (Views: 13.0ms | ActiveRecord: 2.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:23:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ',', expecting &. or :: or '[' or '.' +name, task_show_path(task.id), alt: 'link to task#show') );@ + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ')', expecting keyword_end +), alt: 'link to task#show') );@output_buffer.safe_append='< + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:7: syntax error, unexpected ',', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:7: syntax error, unexpected ')', expecting keyword_end +app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:24:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ',', expecting &. or :: or '[' or '.' +name, task_show_path(task.id), alt: 'link to task#show') );@ + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ')', expecting keyword_end +), alt: 'link to task#show') );@output_buffer.safe_append='< + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:7: syntax error, unexpected ',', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:7: syntax error, unexpected ')', expecting keyword_end +app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:24:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected '<' +buffer.append=(link_to(Task: <%=task.name, task_show_path(ta + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:7: syntax error, unexpected '<' +app/views/tasks/index.html.erb:8: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:14: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:25:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.5ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ',', expecting => +name, task_show_path(task.id), alt: 'link to task#show'));@o + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected ')', expecting keyword_end +d), alt: 'link to task#show'));@output_buffer.safe_append=' + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:7: syntax error, unexpected ',', expecting => +app/views/tasks/index.html.erb:7: syntax error, unexpected ')', expecting keyword_end +app/views/tasks/index.html.erb:12: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:25:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (177.3ms) +Completed 500 Internal Server Error in 182ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined local variable or method `book' for #<#:0x007ffc7e89ee50>): + 3:

TASK LIST

+ 4:
    + 5: <% @tasks.each do |task| %> + 6: + 7:
  • <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%>
  • + 8: <% end %> + 9:
+ +app/views/tasks/index.html.erb:6:in `block in _app_views_tasks_index_html_erb__2505052413498473630_70361215728660' +app/views/tasks/index.html.erb:5:in `_app_views_tasks_index_html_erb__2505052413498473630_70361215728660' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:26:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:26:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (206.0ms) +Completed 500 Internal Server Error in 210ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined local variable or method `book' for #<#:0x007ffc76cceb68>): + 3:

TASK LIST

+ 4:
    + 5: <% @tasks.each do |task| %> + 6: #<%= link_to(book.title, book_path(book.id), alt: 'link to') %> + 7:
  • <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%>
  • + 8: <% end %> + 9:
+ +app/views/tasks/index.html.erb:6:in `block in _app_views_tasks_index_html_erb__2505052413498473630_70361150814880' +app/views/tasks/index.html.erb:5:in `_app_views_tasks_index_html_erb__2505052413498473630_70361150814880' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:26:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (157.2ms) +Completed 500 Internal Server Error in 161ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `book' for #<#:0x007ffc78786e38>): + 3:

TASK LIST

+ 4:
    + 5: <% @tasks.each do |task| %> + 6: + 7:
  • <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%>
  • + 8: <% end %> + 9:
+ +app/views/tasks/index.html.erb:6:in `block in _app_views_tasks_index_html_erb__2505052413498473630_70361164554520' +app/views/tasks/index.html.erb:5:in `_app_views_tasks_index_html_erb__2505052413498473630_70361164554520' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:27:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:27:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:7: syntax error, unexpected tLABEL +;@output_buffer.append=( Talk: link_to(task.name, task_show_ + ^): + +app/views/tasks/index.html.erb:7: syntax error, unexpected tLABEL +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:27:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml new file mode 100644 index 000000000..062b6ee93 --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: MyText + completion_date: 2017-09-19 + +two: + name: MyString + description: MyText + completion_date: 2017-09-19 diff --git a/test/models/task_test.rb b/test/models/task_test.rb new file mode 100644 index 000000000..3ca215970 --- /dev/null +++ b/test/models/task_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TaskTest < ActiveSupport::TestCase + # test "the truth" do + # assert true + # end +end From 2b9af96a00923ff6cb5b16ff3cee67c1d372dd68 Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Wed, 20 Sep 2017 16:23:15 -0700 Subject: [PATCH 04/16] W2 base completed --- app/assets/stylesheets/application.css | 42 + app/controllers/tasks_controller.rb | 11 + app/views/layouts/application.html.erb | 14 + app/views/tasks/create.html.erb | 4 + app/views/tasks/index.html.erb | 19 +- app/views/tasks/new.html.erb | 10 +- app/views/tasks/show.html.erb | 10 +- config/routes.rb | 17 +- log/development.log | 1950 ++++++++++++++++++++++++ 9 files changed, 2061 insertions(+), 16 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index d05ea0f51..e4056b736 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -13,3 +13,45 @@ *= require_tree . *= require_self */ +header a { + text-decoration: none; +} + +.tasklist-options li { + list-style: none; + width: 85px; + border-radius: 10px; + border: 1px solid black; + text-align: center; + padding: 6px; + margin-bottom: 10px; +} + +.tasklist-options, .your-tasks-container { + display: inline-block; +} + +.tasklist-options { + float: left; +} + +.your-tasks-container { + float: left; + border-radius: 10px; + border: 1px solid black; + padding: 20px; + margin-left: 30px; + margin-bottom: 10px; + width: 50%; +} + +footer { + background: gray; + width: 100%; + left: 0; + bottom: 0; + right: 0; + text-align: center; + vertical-align: middle; + clear: both; +} diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index c407ae031..409524557 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -16,15 +16,26 @@ def index end def create + @task = Task.new(name: params[:task][:name], description:params[:task][:description]) + if @task.save + redirect_to root_path + else + render :new + end end def destroy + @task = Task.find(params[:id].to_i).destroy + if @task.save + redirect_to root_path + end end def edit end def new + @task = Task.new end def show diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index be7a9f069..1b8da7e6c 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,6 +9,20 @@ +
+

<%= link_to("TASKLIST", root_path, alt: 'homepage')%>

+
+ + + <%= yield %> +
+

© 2017

+
diff --git a/app/views/tasks/create.html.erb b/app/views/tasks/create.html.erb index fcad439c4..fbd921451 100644 --- a/app/views/tasks/create.html.erb +++ b/app/views/tasks/create.html.erb @@ -1,2 +1,6 @@

Tasks#create

Find me in app/views/tasks/create.html.erb

+ +

+ Error: You shouldn't be here, because you need to see a form to create a new task! +

diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index b00733077..2b70358b6 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,9 +1,16 @@ -

TASK LIST

-
    - <% @tasks.each do |task| %> -
  • <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%>
  • - <% end %> -
+
+

YOUR TASKS

+
    + <% @tasks.each do |task| %> +
  1. + <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> +
    + <%=link_to "Mark Complete", task_complete_path(task.id) %> | <%=link_to "Edit", edit_task_path(task.id), alt: 'link to task#edit' %> | <%=link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> +

    +
  2. + <% end %> +
+
diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 2484008a3..32be72669 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,2 +1,10 @@

Tasks#new

-

Find me in app/views/tasks/new.html.erb

+ + +<%= form_for @task do |f| %> + <%= f.label :name %> + <%= f.text_field :name %> + <%= f.label :description %> + <%= f.text_field :description %> + <%= f.submit "Add Task"%> +<% end %> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 1139224db..dd13a1cf2 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,2 +1,8 @@ -

Tasks#show

-

Find me in app/views/tasks/show.html.erb

+ + + +

Task:

+<%=@task.name%> + +

Description:

+<%=@task.description%> diff --git a/config/routes.rb b/config/routes.rb index 882ef2441..e0548264e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,19 +1,22 @@ Rails.application.routes.draw do + + root to: 'tasks#index' #explicit for saying this is the homepage + get '/tasks', to: 'tasks#index', as: 'tasks' #tasks_path - get '/tasks/:id/edit', to: 'tasks#edit', as: 'edit_task' + get '/tasks/:id/edit', to: 'tasks#edit', as: 'edit_task' #edit_task_path - get '/tasks/new', to: 'tasks#new', as: 'new_task' + get '/tasks/new', to: 'tasks#new', as: 'new_task' #new_task_path - get '/tasks/:id', to: 'tasks#show', as: 'task_show' + get '/tasks/:id', to: 'tasks#show', as: 'task_show' #task_show_path - patch '/tasks/:id', to: 'tasks#update', as: 'update_task' + patch '/tasks/:id', to: 'tasks#update', as: 'update_task' #update_task_path - post '/tasks', to: 'tasks#create', as: 'create_task' + post '/tasks', to: 'tasks#create', as: 'create_task' #create_task_path - patch '/tasks/:id/mark_complete', to: 'tasks#mark_complete' + patch '/tasks/:id/mark_complete', to: 'tasks#mark_complete', as: 'task_complete' #task_complete_path - delete '/tasks', to: 'tasks#destroy', as: 'delete_task' + delete '/tasks/:id', to: 'tasks#destroy', as: 'delete_task' #delete_task_path # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html end diff --git a/log/development.log b/log/development.log index b12b76f92..dc1c74f83 100644 --- a/log/development.log +++ b/log/development.log @@ -388,3 +388,1953 @@ Processing by TasksController#index as HTML Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.2ms) +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 22:55:57 -0700 +  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.6ms) +Completed 200 OK in 215ms (Views: 199.1ms | ActiveRecord: 4.8ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 22:56:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 23ms (Views: 10.4ms | ActiveRecord: 4.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 22:57:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 22:57:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 22:59:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 14ms (Views: 11.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 22:59:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:00:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:01:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 12.9ms | ActiveRecord: 0.3ms) + + +Started GET "/books/2" for 127.0.0.1 at 2017-09-19 23:13:44 -0700 +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + +ActionController::RoutingError (No route matches [GET] "/books/2"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:13:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (20.5ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 8.3ms) + + + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 15: + 16: + 17: + 18: + +app/views/tasks/index.html.erb:18:in `_app_views_tasks_index_html_erb___583151956109706556_70109626114420' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:14:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 175ms (Views: 172.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-19 23:14:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:14:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 23:14:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 11.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:16:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 12.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:16:58 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 33ms (Views: 22.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:17:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 33ms (Views: 23.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-19 23:17:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:17:51 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 30ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks.1" for 127.0.0.1 at 2017-09-19 23:17:53 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"+Af59N0BJeMHJZ9Hx08AvK0/jyx1+YwqfJJEeATtI8oMKxwrGeeIXQ3zBDvkYxMU/+HvbLUR8d/+CNI96LZGsA=="} + Rendering tasks/destroy.html.erb within layouts/application + Rendered tasks/destroy.html.erb within layouts/application (0.4ms) +Completed 200 OK in 31ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:18:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 36ms (Views: 23.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:18:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 29ms (Views: 19.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:19:20 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 28ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:19:44 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 31ms (Views: 20.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:20:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 31ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.1" for 127.0.0.1 at 2017-09-19 23:20:27 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 33ms (Views: 23.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-19 23:20:32 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendering /Users/janedrozo/.rvm/gems/ruby-2.4.1/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb + Rendered /Users/janedrozo/.rvm/gems/ruby-2.4.1/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb (2.4ms) +Completed 200 OK in 14ms (Views: 4.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-19 23:23:55 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:78:in `controller_class' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:43:in `controller' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:29:in `serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:24:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.4ms) +Completed 200 OK in 27ms (Views: 20.4ms | ActiveRecord: 3.8ms) + + +Started GET "/tasks/1/mark_complete" for 127.0.0.1 at 2017-09-19 23:24:06 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/mark_complete"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:24:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:29:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 31ms (Views: 25.6ms | ActiveRecord: 2.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:30:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:31:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:31:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:31:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:31:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:31:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:31:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:32:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:32:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:32:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:32:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:33:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:33:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:33:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:33:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:34:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:36:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.3ms) +Completed 200 OK in 33ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:36:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:38:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:38:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:38:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:38:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:39:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:39:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:40:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:41:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:41:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:41:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:41:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:41:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:42:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:42:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:44:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:44:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:45:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:45:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:47:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:47:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:47:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:48:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 23ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:49:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:49:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:49:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:52:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:53:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:53:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:53:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:54:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:58:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 23:58:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:00:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:01:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 00:01:33 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:78:in `controller_class' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:43:in `controller' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:29:in `serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:01:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:02:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:02:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:02:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:03:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 23ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:04:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:05:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:05:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:05:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:05:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:06:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:06:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:07:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:07:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:08:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:08:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:08:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:08:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:09:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 00:10:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:09:21 -0700 +  (0.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.4ms) +Completed 200 OK in 256ms (Views: 240.7ms | ActiveRecord: 3.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:10:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:10:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:12:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:13:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 20ms (Views: 13.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:27:20 -0700 +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 196ms (Views: 183.4ms | ActiveRecord: 3.6ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:27:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 30ms (Views: 12.2ms | ActiveRecord: 6.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:28:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:28:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:28:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 11.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:29:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 13ms (Views: 10.8ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:29:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 15ms (Views: 12.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:29:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:29:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:29:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 14.9ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:32:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 11.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:33:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:34:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 14ms (Views: 12.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:34:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:35:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:36:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:40:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 25ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:40:35 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.3ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:42:02 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.5ms) +Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new/create" for 127.0.0.1 at 2017-09-20 15:42:06 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/new/create"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/create" for 127.0.0.1 at 2017-09-20 15:42:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"create"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=0): + +app/controllers/tasks_controller.rb:33:in `show' +Started GET "/tasks/create" for 127.0.0.1 at 2017-09-20 15:42:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"create"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.2ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=0): + +app/controllers/tasks_controller.rb:33:in `show' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-20 15:43:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:45:42 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.3ms) +Completed 200 OK in 21ms (Views: 11.0ms | ActiveRecord: 2.6ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:47:37 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

Tasks#new

+ 2: + 3: + 4: <%= form_for @book do |f| %> + 5: <%= f.label :task %> + 6: <%= f.text_field :task %> + 7: <%= f.label :description %> + +app/views/tasks/new.html.erb:4:in `_app_views_tasks_new_html_erb__2573393459515263156_70174940405460' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:47:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (12.7ms) +Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `task' for #): + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :task %> + 6: <%= f.text_field :task %> + 7: <%= f.label :description %> + 8: <%= f.text_field :description %> + 9: <%= f.submit "Add Task"%> + +app/views/tasks/new.html.erb:6:in `block in _app_views_tasks_new_html_erb__2573393459515263156_70174874366700' +app/views/tasks/new.html.erb:4:in `_app_views_tasks_new_html_erb__2573393459515263156_70174874366700' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:49:17 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:50:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.3ms) +Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:50:27 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"n0rXSxcgrf/6XWqUUDcKR5AudEwrgVCeaNi7j9ScAGxrZjKU08YAQfCL8ehzGxnvwvAUDOtpLWvqQi3KOMdlFg==", "task"=>{"name"=>"", "description"=>""}, "commit"=>"Add Task"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:19:in `create' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:52:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 23ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:52:28 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DU7dsGcuqB5yj7homiV8VlODHuPJFv1gPii6fFQzY2v5Yjhvo8gFoHhZIxS5CW/+AV1+own+gJW8siw5uGgGEQ==", "task"=>{"name"=>"", "description"=>""}, "commit"=>"Add Task"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `save' for nil:NilClass): + +app/controllers/tasks_controller.rb:27:in `create' +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:52:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DU7dsGcuqB5yj7homiV8VlODHuPJFv1gPii6fFQzY2v5Yjhvo8gFoHhZIxS5CW/+AV1+own+gJW8siw5uGgGEQ==", "task"=>{"name"=>"", "description"=>""}, "commit"=>"Add Task"} +  (0.2ms) BEGIN + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", ""], ["description", ""], ["created_at", "2017-09-20 22:52:39.603835"], ["updated_at", "2017-09-20 22:52:39.603835"]] +  (0.4ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 1.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 15:52:39 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:78:in `controller_class' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:43:in `controller' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:29:in `serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:52:53 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"DU7dsGcuqB5yj7homiV8VlODHuPJFv1gPii6fFQzY2v5Yjhvo8gFoHhZIxS5CW/+AV1+own+gJW8siw5uGgGEQ==", "task"=>{"name"=>"", "description"=>""}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", ""], ["description", ""], ["created_at", "2017-09-20 22:52:53.519360"], ["updated_at", "2017-09-20 22:52:53.519360"]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 15:52:53 -0700 + +ActionController::RoutingError (uninitialized constant BooksController): + +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:78:in `controller_class' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:43:in `controller' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:29:in `serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2017-09-20 15:53:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.4ms) +Completed 200 OK in 26ms (Views: 19.8ms | ActiveRecord: 2.9ms) + + +Started DELETE "/tasks.3" for 127.0.0.1 at 2017-09-20 15:53:24 -0700 +Processing by TasksController#destroy as + Parameters: {"authenticity_token"=>"fgFk68oirOATc2NarX88T/F5g3d5TGRYQyzqhMvjEDeKLYE0DsQBXhml+CaOUy/no6fjN7mkGa3BtnzBJ7h1TQ=="} + Rendering tasks/destroy.html.erb within layouts/application + Rendered tasks/destroy.html.erb within layouts/application (0.4ms) +Completed 200 OK in 32ms (Views: 21.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/3/edit" for 127.0.0.1 at 2017-09-20 15:53:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 14.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 15:56:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 29ms (Views: 26.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 15:56:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 15:56:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:03:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 164ms (Views: 157.2ms | ActiveRecord: 2.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:03:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:03:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:03:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:05:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:06:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:06:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:12:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.7ms) +Completed 200 OK in 29ms (Views: 25.3ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/3" for 127.0.0.1 at 2017-09-20 16:12:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"SZoe09Hge5eRfGMhOcnmokU2Mx/nyb5TEaZpW2mB94e9tvsMFQbWKZuq+F0a5fUKF+hTXychw6aTPP8ehdqS/Q==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 3], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 3]] +  (1.1ms) COMMIT + Rendering tasks/destroy.html.erb within layouts/application + Rendered tasks/destroy.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 14.6ms | ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:12:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/4" for 127.0.0.1 at 2017-09-20 16:12:16 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"qAO2dHXKfCkFPqYpvwxxa/jeGJqlctUUYUgRAZy6VyBcL1OrsSzRlw/oPVWcIGLDqgB42mWaqOHj0odEcOEyWg==", "id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 4], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 4]] +  (1.0ms) COMMIT + Rendering tasks/destroy.html.erb within layouts/application + Rendered tasks/destroy.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 12.6ms | ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:12:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:13:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:13:32 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 16:13:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"T41I2DjdgHEFwnpSfC0re5PSlVu2R7crM6UfJJrYVA+7oa0H/Dstzw8U4S5fATjTwQz1G3avyt6xP4lhdoMxdQ==", "task"=>{"name"=>"Hello ", "description"=>"Friend"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Hello "], ["description", "Friend"], ["created_at", "2017-09-20 23:13:39.627874"], ["updated_at", "2017-09-20 23:13:39.627874"]] +  (6.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:13:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-20 16:13:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 18ms (Views: 14.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:13:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:14:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 24ms (Views: 18.3ms | ActiveRecord: 3.0ms) + + +Started DELETE "/tasks/5" for 127.0.0.1 at 2017-09-20 16:14:52 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"N3ARBNKqgaF6TjTI7YCs2hdXsYIBENqGH0pMUpJ3RjjDXPTbFkwsH3CYr7TOrL9yRYnRwsH4p3Od0NoXfiwjQg==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 5], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 5]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:14:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:15:58 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 24ms (Views: 22.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 16:16:02 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7RN6TjIFBqVCAqj9oqCa81mw8RwpmWnEs+pkBh/EGyoZP5+R9uOrG0jUM4GBjIlbC26RXOlxFDExcPJD859+UA==", "task"=>{"name"=>"tesaetae", "description"=>"tetret"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "tesaetae"], ["description", "tetret"], ["created_at", "2017-09-20 23:16:02.769109"], ["updated_at", "2017-09-20 23:16:02.769109"]] +  (6.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:16:02 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/6" for 127.0.0.1 at 2017-09-20 16:16:12 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"XH/w5XJYlq+XpPytC6tcNczBD7O62lzOnWwud1PeENaoUxU6tr47EZ1yZ9Eoh0+dnh9v83oyITsf9rgyv4V1rA==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 6], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 6]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:16:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:17:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 20ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:17:11 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 16:17:15 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"gaKoZTyMuyDAnv6iAbWsZ2rBXl1saLLSSXPR44PVWPR1jk26+GoWnspIZd4imb/POB8+HayAzyfL6Uemb449jg==", "task"=>{"name"=>"fadfasfdas", "description"=>"afda"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "fadfasfdas"], ["description", "afda"], ["created_at", "2017-09-20 23:17:15.765920"], ["updated_at", "2017-09-20 23:17:15.765920"]] +  (5.7ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:17:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/7" for 127.0.0.1 at 2017-09-20 16:17:18 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"N2pfXKDdySlQRzVrGpx7GtqtIX2r/5+cjgd3ntH5Yn7DRrqDZDtkl1qRrhc5sGiyiHNBPWsX4mkMneHbPaIHBA==", "id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 7], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 7]] +  (0.9ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:17:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-20 16:18:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-20 16:18:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-20 16:21:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:21:22 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:21:40 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:21:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:22:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:22:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:22:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:22:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:22:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:22:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + From 84f2b08a5595bb6157c28fb52eba87f9412030b9 Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Fri, 22 Sep 2017 13:34:19 -0700 Subject: [PATCH 05/16] W3: form_for tag and routes for task#show updated to fit convention --- app/controllers/tasks_controller.rb | 51 +- app/views/layouts/application.html.erb | 1 + app/views/tasks/_form.html.erb | 12 + app/views/tasks/edit.html.erb | 17 +- app/views/tasks/index.html.erb | 5 +- app/views/tasks/new.html.erb | 8 +- config/routes.rb | 6 +- log/development.log | 8369 ++++++++++++++++++++++++ log/test.log | 32 + 9 files changed, 8476 insertions(+), 25 deletions(-) create mode 100644 app/views/tasks/_form.html.erb create mode 100644 log/test.log diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 409524557..260af4208 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -12,7 +12,15 @@ class TasksController < ApplicationController # end def index - @tasks = Task.all + @tasks = Task.order(:name) + end + + def show + @task = Task.find(params[:id].to_i) + end + + def new + @task = Task.new end def create @@ -24,6 +32,15 @@ def create end end + def edit + @task = Task.find_by(id: params[:id].to_i) + + unless @task + redirect_to root_path + end + + end + def destroy @task = Task.find(params[:id].to_i).destroy if @task.save @@ -31,20 +48,30 @@ def destroy end end - def edit - end + def update + task = Task.find_by(id: params[:id].to_i) + task.name = params[:task][:name] + task.description = params[:task][:description] + task.completion_date = params[:task][:completion_date] + task.save - def new - @task = Task.new - end + if task.save + redirect_to root_path + else + render :edit + end - def show - @task = Task.find(params[:id].to_i) + # task = Task.find_by(id: params[:id].to_i) + # redirect_to tasks_path unless task + # + # if task.update_attributes name: params[:tasks][:name], description: params[:tasks][:description] + # redirect_to tasks_path + # else + # render :edit + # end end - def update + def mark_complete + end - - # def '#mark_complete' - # end end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 1b8da7e6c..881b009c0 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,6 +9,7 @@ +

Params are: <%= params %>

<%= link_to("TASKLIST", root_path, alt: 'homepage')%>

diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb new file mode 100644 index 000000000..e49098616 --- /dev/null +++ b/app/views/tasks/_form.html.erb @@ -0,0 +1,12 @@ +<%= form_for @task do |f| %> + <%= f.label :name %> + <%= f.text_field :name %> + + <%= f.label :description %> + <%= f.text_field :description %> + + <%= f.label :completion_date %> + <%= f.text_field :completion_date%> + + <%= f.submit button%> +<% end %> diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 374190308..606a04066 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,2 +1,17 @@

Tasks#edit

-

Find me in app/views/tasks/edit.html.erb

+ + +<%= render partial: "form", locals: { button: "Edit Task" } %> + + + diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 2b70358b6..d4f1f252f 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -6,9 +6,10 @@
    <% @tasks.each do |task| %>
  1. - <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + <%= link_to(task.name, task_path(task.id), alt: 'link to task#show')%>
    - <%=link_to "Mark Complete", task_complete_path(task.id) %> | <%=link_to "Edit", edit_task_path(task.id), alt: 'link to task#edit' %> | <%=link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + <%= link_to "Edit", edit_task_path(task.id) %> + <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %>

  2. <% end %> diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 32be72669..b1d8bad48 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,10 +1,4 @@

    Tasks#new

    -<%= form_for @task do |f| %> - <%= f.label :name %> - <%= f.text_field :name %> - <%= f.label :description %> - <%= f.text_field :description %> - <%= f.submit "Add Task"%> -<% end %> +<%= render partial: "form", locals: { button: "Add New Task" } %> diff --git a/config/routes.rb b/config/routes.rb index e0548264e..ab47219c2 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -8,14 +8,14 @@ get '/tasks/new', to: 'tasks#new', as: 'new_task' #new_task_path - get '/tasks/:id', to: 'tasks#show', as: 'task_show' #task_show_path + get '/tasks/:id', to: 'tasks#show', as: 'task' #task_path + + patch '/tasks/:id/mark_complete', to: 'tasks#mark_complete', as: 'task_complete' #task_complete_path patch '/tasks/:id', to: 'tasks#update', as: 'update_task' #update_task_path post '/tasks', to: 'tasks#create', as: 'create_task' #create_task_path - patch '/tasks/:id/mark_complete', to: 'tasks#mark_complete', as: 'task_complete' #task_complete_path - delete '/tasks/:id', to: 'tasks#destroy', as: 'delete_task' #delete_task_path # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html diff --git a/log/development.log b/log/development.log index dc1c74f83..62f388019 100644 --- a/log/development.log +++ b/log/development.log @@ -2338,3 +2338,8372 @@ Processing by TasksController#index as HTML Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.3ms) +Started GET "/" for 127.0.0.1 at 2017-09-20 16:24:56 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.6ms) +Completed 200 OK in 203ms (Views: 189.5ms | ActiveRecord: 3.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:24:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.1ms) +Completed 200 OK in 37ms (Views: 29.6ms | ActiveRecord: 6.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:25:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/2/edit" for 127.0.0.1 at 2017-09-20 16:25:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:27:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 19ms (Views: 16.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:27:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:27:35 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (11.4ms) +Completed 200 OK in 27ms (Views: 24.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 16:27:39 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kTF5BBYny18yNJcPAHfzc2jo97WtfLceHhGrVOSCwAEE3piYfwZ4L4IHbf3ZJ1mYQlDNGINM7qzT0aJlW/Z4Qg==", "task"=>{"name"=>"", "description"=>""}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.7ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", ""], ["description", ""], ["created_at", "2017-09-20 23:27:39.767415"], ["updated_at", "2017-09-20 23:27:39.767415"]] +  (6.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 7.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:27:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/8" for 127.0.0.1 at 2017-09-20 16:27:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"bvR7hvycCjrohANfoH+mXdtZEMV9ilbh/Bzo3He7hRua2J5ZOHqnhOJSmCODU7X1iYdwhb1iKxR+hn6Zm+DgYQ==", "id"=>"8"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 8], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 8]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 7ms (ActiveRecord: 2.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:27:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:32:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:32:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:34:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:43:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-20 16:43:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started DELETE "/tasks/2" for 127.0.0.1 at 2017-09-20 16:43:14 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UE1gYSP1sdbaby3Yu1EY4+OAJUzS/ux1FUWXDQZuOoKkYYW+5xMcaNC5tqSYfQtLsV5FDBIWkYCX3wFI6jVf+A==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 2], ["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 2]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:43:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:43:22 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:43:24 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 23ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:43:25 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 16:43:50 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kI+M6dJOkI/2Q95o7on8w1XCAe45/pLTOfGoM6YsFkAFYG11u28j/0ZwJJo32VYof3o7QxfOy2H0MaECGViuAw==", "task"=>{"name"=>"Pick up Book", "description"=>"Harry Potter :)"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Pick up Book"], ["description", "Harry Potter :)"], ["created_at", "2017-09-20 23:43:50.981383"], ["updated_at", "2017-09-20 23:43:50.981383"]] +  (6.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:43:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-20 16:43:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-20 16:45:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-20 16:45:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:45:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 16:45:49 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mOvrRCsA115AS7NBQ79nCxT+5ukGhZ9ONjCX8jKVMwMNBArYQiFkLvB4SbOa783gPkbcRCi1xvz78J7DjeGLQA==", "task"=>{"name"=>"trtdasfaf", "description"=>"dfadf"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "trtdasfaf"], ["description", "dfadf"], ["created_at", "2017-09-20 23:45:49.371747"], ["updated_at", "2017-09-20 23:45:49.371747"]] +  (5.7ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:45:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/10" for 127.0.0.1 at 2017-09-20 16:45:54 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ZKYZfyAm4tPu02t3H7vygoeEcr2JGSn1aONQj1xGlECQivyg5MBPbeQF8As8l+Eq1VoS/UnxVADqecbKsB3xOg==", "id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 10], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 10]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:45:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 16:47:57 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 16:47:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"L5o01BZVzOrEbHnfV9AM+36WJg8h4dsZuFBkEwh4mY26ddVIf3R/mnRfgy2OgKYQVC4cog/Rgqt1kG0itwwhzg==", "task"=>{"name"=>"", "description"=>""}, "commit"=>"Add Task"} +  (0.2ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", ""], ["description", ""], ["created_at", "2017-09-20 23:47:58.485841"], ["updated_at", "2017-09-20 23:47:58.485841"]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:47:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 16:55:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 21:31:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/11" for 127.0.0.1 at 2017-09-20 21:31:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"orAKVEJraNuNEvLA34aleR57A44muf/wIN8CKkvwjR5WnO+Lho3FZYfEabz8qrbRTKVjzuZRggWiRZRvp6voZA==", "id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 11], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 11]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 21:31:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 22:26:43 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 22:27:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"uOo4mIrULsE6bJPlLWexHFn3DE+hWwHe+3XE7RRf8g0tBdkE4/WdsYpfaRf0Nxv3c0824o9rWGw2tc3cqytKTg==", "task"=>{"name"=>"Water the Plants", "description"=>"5 pots, and 3 air plants"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Water the Plants"], ["description", "5 pots, and 3 air plants"], ["created_at", "2017-09-21 05:27:06.478064"], ["updated_at", "2017-09-21 05:27:06.478064"]] +  (6.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-20 22:27:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for 127.0.0.1 at 2017-09-20 22:27:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 12], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 18ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 21:52:23 -0700 +  (7.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +it", edit_task_path(task.id)), alt: 'link to task#edit' );@o + ^): + +app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 21:52:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +it", edit_task_path(task.id)), alt: 'link to task#edit' );@o + ^): + +app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 21:52:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (25.5ms) +Completed 200 OK in 230ms (Views: 220.1ms | ActiveRecord: 8.9ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 21:52:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (90.4ms) +Completed 500 Internal Server Error in 100ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc117333af8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1068711356588679979_70233631105900' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 21:55:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 21:55:52 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"td9ArYrfaC6dNuwYSUeJd7VLDw1m3nUgXP+jl0qdvnZB86VyTjnFkJfgd2Rqa5rf55VvTaY2CNXeZTXSpsbbDA==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 1], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 1]] +  (6.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 12ms (ActiveRecord: 6.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 21:55:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 21:55:56 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (18.0ms) +Completed 200 OK in 40ms (Views: 37.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 21:56:04 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"QbQcsEY8JEpwCC7+6rwqRppY4u/NVa0ozURhZRzrBAbUW/0sLx2XOsA71Awz7ICtsODYQuNl9JoAhGhUo5+8RQ==", "task"=>{"name"=>"edit_test", "description"=>"fdafafdaf"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "edit_test"], ["description", "fdafafdaf"], ["created_at", "2017-09-22 04:56:04.473373"], ["updated_at", "2017-09-22 04:56:04.473373"]] +  (6.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 21:56:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13/edit" for 127.0.0.1 at 2017-09-21 21:56:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 13], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (109.6ms) +Completed 500 Internal Server Error in 117ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc111c194c0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1068711356588679979_70233601658700' +Started GET "/tasks/13/edit" for 127.0.0.1 at 2017-09-21 22:00:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 13], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (96.9ms) +Completed 500 Internal Server Error in 112ms (ActiveRecord: 3.5ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc1188411e8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1068711356588679979_70233658366800' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 22:00:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:00:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (86.2ms) +Completed 500 Internal Server Error in 92ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc111b78110> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1068711356588679979_70233601328500' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:02:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (80.3ms) +Completed 500 Internal Server Error in 91ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc1175a65d8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1068711356588679979_70233648612800' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:02:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (89.4ms) +Completed 500 Internal Server Error in 95ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc1188a7830> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1068711356588679979_70233658573100' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:02:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (82.5ms) +Completed 500 Internal Server Error in 89ms (ActiveRecord: 0.5ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc117271070> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1068711356588679979_70233646929060' +Started POST "/__web_console/repl_sessions/98a36d192cc3bb40c75d3eabfe4c2e09/trace" for 127.0.0.1 at 2017-09-21 22:03:01 -0700 +Started POST "/__web_console/repl_sessions/98a36d192cc3bb40c75d3eabfe4c2e09/trace" for 127.0.0.1 at 2017-09-21 22:03:03 -0700 +Started POST "/__web_console/repl_sessions/98a36d192cc3bb40c75d3eabfe4c2e09/trace" for 127.0.0.1 at 2017-09-21 22:03:11 -0700 +Started POST "/__web_console/repl_sessions/98a36d192cc3bb40c75d3eabfe4c2e09/trace" for 127.0.0.1 at 2017-09-21 22:03:11 -0700 +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:07:08 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (77.0ms) +Completed 500 Internal Server Error in 102ms (ActiveRecord: 3.5ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fd49bc322e8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__2262743920235592364_70275561555040' +Started GET "/" for 127.0.0.1 at 2017-09-21 22:07:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 176ms (Views: 173.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:09:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (99.9ms) +Completed 500 Internal Server Error in 108ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fd4a0d0b7f0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__2262743920235592364_70275603744720' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:17:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (76.4ms) +Completed 500 Internal Server Error in 93ms (ActiveRecord: 3.7ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fd4a0a18de0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__2262743920235592364_70275544606840' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:21:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (92.4ms) +Completed 500 Internal Server Error in 98ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fd4a1ae53d0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__2262743920235592364_70275611176660' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 22:21:12 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (12.1ms) +Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 22:21:18 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"vwzz1i0y6x6hJ2Vq5FhCL6vxC0+RztHJCfBP0XUYQpdLIBYJ6dRGoKvx/hbHdFGH+S9rD1EmrDyLatmUmUMn7Q==", "task"=>{"name"=>"test", "description"=>"test"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "test"], ["description", "test"], ["created_at", "2017-09-22 05:21:18.372514"], ["updated_at", "2017-09-22 05:21:18.372514"]] +  (6.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:21:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 33ms (Views: 30.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 22:21:53 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:22:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:22:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (87.8ms) +Completed 500 Internal Server Error in 95ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fd4a1bdd468> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__2262743920235592364_70275611684640' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:27:08 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (89.7ms) +Completed 500 Internal Server Error in 123ms (ActiveRecord: 4.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc553ab4fa8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1779890148307171373_70242723605920' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 22:27:12 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (13.8ms) +Completed 200 OK in 181ms (Views: 179.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:27:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.3ms) +Completed 200 OK in 30ms (Views: 21.6ms | ActiveRecord: 6.0ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:27:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (97.3ms) +Completed 500 Internal Server Error in 104ms (ActiveRecord: 0.5ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc558008af0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1779890148307171373_70242780858980' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:30:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (87.7ms) +Completed 500 Internal Server Error in 100ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc55a04ddd8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1779890148307171373_70242776809840' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:30:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (86.2ms) +Completed 500 Internal Server Error in 97ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc553f26348> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1779890148307171373_70242746844240' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:30:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1779890148307171373_70242787870120' +Started POST "/__web_console/repl_sessions/c56b6ef5fbfbe5b9eb68f8088395b7af/trace" for 127.0.0.1 at 2017-09-21 22:35:17 -0700 +Started POST "/__web_console/repl_sessions/c56b6ef5fbfbe5b9eb68f8088395b7af/trace" for 127.0.0.1 at 2017-09-21 22:35:20 -0700 +Started GET "/" for 127.0.0.1 at 2017-09-21 22:35:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 28ms (Views: 21.6ms | ActiveRecord: 3.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:35:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/13/edit" for 127.0.0.1 at 2017-09-21 22:35:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 13], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (76.5ms) +Completed 500 Internal Server Error in 83ms (ActiveRecord: 0.5ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc553f340d8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1779890148307171373_70242746869280' +Started GET "/" for 127.0.0.1 at 2017-09-21 22:35:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/14/edit" for 127.0.0.1 at 2017-09-21 22:35:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 14], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (86.0ms) +Completed 500 Internal Server Error in 93ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc553f92a70> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1779890148307171373_70242747062940' +Started POST "/__web_console/repl_sessions/115c3eb749fd2503484c82dabdc57cda/trace" for 127.0.0.1 at 2017-09-21 22:36:03 -0700 +Started GET "/" for 127.0.0.1 at 2017-09-21 22:41:51 -0700 +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.3ms) +Completed 200 OK in 202ms (Views: 185.3ms | ActiveRecord: 3.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:41:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.4ms) +Completed 200 OK in 24ms (Views: 18.0ms | ActiveRecord: 4.6ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:41:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (87.5ms) +Completed 500 Internal Server Error in 109ms (ActiveRecord: 0.6ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fb83a8635b8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___1427291659719112497_70214616293320' +Started POST "/__web_console/repl_sessions/9a02a5279621a40f0acbaf51cba37ce2/trace" for 127.0.0.1 at 2017-09-21 22:42:03 -0700 +Started GET "/" for 127.0.0.1 at 2017-09-21 22:44:43 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.6ms) +Completed 200 OK in 225ms (Views: 209.5ms | ActiveRecord: 3.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:44:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.6ms) +Completed 200 OK in 29ms (Views: 21.7ms | ActiveRecord: 5.0ms) + + +Started GET "/tasks/13/edit" for 127.0.0.1 at 2017-09-21 22:44:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 13], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (93.3ms) +Completed 500 Internal Server Error in 102ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff3218739c8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341104567220' +Started GET "/" for 127.0.0.1 at 2017-09-21 22:44:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13/edit" for 127.0.0.1 at 2017-09-21 22:45:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 13], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (95.7ms) +Completed 500 Internal Server Error in 103ms (ActiveRecord: 0.6ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff31d834128> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341074462080' +Started GET "/" for 127.0.0.1 at 2017-09-21 22:45:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 22:45:19 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (10.1ms) +Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/14/edit" for 127.0.0.1 at 2017-09-21 22:45:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 14], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (82.6ms) +Completed 500 Internal Server Error in 90ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff321a53b58> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341109088920' +Started GET "/tasks/14/edit" for 127.0.0.1 at 2017-09-21 22:49:04 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 14], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (84.7ms) +Completed 500 Internal Server Error in 98ms (ActiveRecord: 0.5ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff31b842b08> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341074464440' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 22:49:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (108.3ms) +Completed 500 Internal Server Error in 113ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `edit_task_path' for #<#:0x007ff3205852a8> +Did you mean? edit_tasks_path + delete_task_path): + 9: <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
    + 11: <%=link_to "Mark Complete", task_complete_path(task.id) %> | + 12: <%=link_to "Edit", edit_task_path(task.id), alt: 'link to task#edit' %> | + 13: <%=link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + 14:

    + 15: + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb__607126196148504231_70341098221160' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__607126196148504231_70341098221160' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 22:49:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (91.6ms) +Completed 500 Internal Server Error in 98ms (ActiveRecord: 3.4ms) + + + +ActionView::Template::Error (undefined method `edit_task_path' for #<#:0x007ff31c683a00> +Did you mean? edit_task_path_url + delete_task_path): + 9: <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
    + 11: <%=link_to "Mark Complete", task_complete_path(task.id) %> | + 12: <%=link_to "Edit", edit_task_path(task.id), alt: 'link to task#edit' %> | + 13: <%=link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + 14:

    + 15: + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb__607126196148504231_70341065199900' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__607126196148504231_70341065199900' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:49:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (83.4ms) +Completed 500 Internal Server Error in 91ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff31d911cf8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341074916200' +Started GET "/" for 127.0.0.1 at 2017-09-21 22:49:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (100.8ms) +Completed 500 Internal Server Error in 106ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `edit_task_path' for #<#:0x007ff31a63b2c0> +Did you mean? edit_task_path_url + delete_task_path): + 9: <%=link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
    + 11: <%=link_to "Mark Complete", task_complete_path(task.id) %> | + 12: <%=link_to "Edit", edit_task_path(task.id), alt: 'link to task#edit' %> | + 13: <%=link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + 14:

    + 15: + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb__607126196148504231_70341048271980' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__607126196148504231_70341048271980' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:49:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (79.3ms) +Completed 500 Internal Server Error in 85ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff31b83a9d0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341057698260' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 22:50:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (72.2ms) +Completed 500 Internal Server Error in 86ms (ActiveRecord: 2.7ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff3219a0918> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341108766460' +Started GET "/" for 127.0.0.1 at 2017-09-21 22:51:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 22ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:51:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 22:51:25 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 22:51:28 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"nhYUdAzTrYlrrf0sYcNTW0/0eHneFBYwaalZPrdMGIoL+fXoZfIe+dueB964k/mwZUxC1PAkT4KkaVAPCDigyQ==", "task"=>{"name"=>"test", "description"=>"test"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "test"], ["description", "test"], ["created_at", "2017-09-22 05:51:28.783475"], ["updated_at", "2017-09-22 05:51:28.783475"]] +  (6.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 22:51:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/14/edit" for 127.0.0.1 at 2017-09-21 22:51:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 14], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (77.7ms) +Completed 500 Internal Server Error in 84ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007ff3202a0f38> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2465071881453721635_70341096705520' +Started GET "/tasks/14/edit" for 127.0.0.1 at 2017-09-21 23:02:32 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 14], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (91.7ms) +Completed 500 Internal Server Error in 116ms (ActiveRecord: 3.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fbfd7dcb010> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__3320312556131996996_70230968552480' +Started GET "/tasks/14/edit" for 127.0.0.1 at 2017-09-21 23:05:00 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"14"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 14], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (91.9ms) +Completed 500 Internal Server Error in 120ms (ActiveRecord: 4.6ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc71a852698> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___6754172494798555_70246560106920' +Started GET "/" for 127.0.0.1 at 2017-09-21 23:05:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (15.0ms) +Completed 200 OK in 165ms (Views: 158.5ms | ActiveRecord: 4.9ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 23:05:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (103.2ms) +Completed 500 Internal Server Error in 110ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fc7155b02c8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___6754172494798555_70246516754000' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 23:06:15 -0700 + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:06:25 -0700 +Started GET "/" for 127.0.0.1 at 2017-09-21 23:06:25 -0700 +ActionController::RoutingError (No route matches [GET] "/tasks/9/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Processing by TasksController#index as HTML +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.4ms) + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 27ms (Views: 22.3ms | ActiveRecord: 0.3ms) + + +Completed 200 OK in 37ms (Views: 29.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 23:06:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/9/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/9/edit" for 127.0.0.1 at 2017-09-21 23:09:25 -0700 +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (97.5ms) +Completed 500 Internal Server Error in 126ms (ActiveRecord: 3.6ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe058953018> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300767817120' +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.4ms) +Completed 200 OK in 164ms (Views: 156.8ms | ActiveRecord: 5.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/14" for 127.0.0.1 at 2017-09-21 23:09:36 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"9/X+wDvzwsfXrqiYdrCXVKWnmv0B32e6Fzb1iJHo/csD2Rsf/xVved14M+RVnIT893n6vcE3Gk+VrGPNfbOYsQ==", "id"=>"14"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 14], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 14]] +  (1.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/15" for 127.0.0.1 at 2017-09-21 23:09:38 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"YwMWEbg+MblmzyAVDDh9hefbkm500S5EV0gnNXpQYviXL/POfNicB2wZu2kvFG4ttQXyLrQ5U7HV0rFwlgsHgg==", "id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 15], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 15]] +  (1.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/13" for 127.0.0.1 at 2017-09-21 23:09:42 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"eCHf1BcAa/wxB0WOE7FVKvAxzrHj8YxGUGd8gDvlnleMDToL0+bGQjvR3vIwnUaCou+u8SMZ8bPS/erF1777LQ==", "id"=>"13"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 13], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 13]] +  (1.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 23:09:44 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (9.6ms) +Completed 200 OK in 26ms (Views: 24.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/12" for 127.0.0.1 at 2017-09-21 23:09:48 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"CtR0XQyfMgg0o5ps3Gz6bNMvH/O98nfTwGu8gvFQ9F7++JGCyHmftj51ARD/QOnEgfF/s30aCiZC8SrHHQuRJA==", "id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 12], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 12]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/9" for 127.0.0.1 at 2017-09-21 23:09:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"rL9/NvVAazJWURUQug5zLEwmiVkx4T6yrfN2n7cyU9BYk5rpMabGjFyHjmyZImCEHvjpGfEJQ0cvaeDaW2k2qg==", "id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 9], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 9]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 23:09:51 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 23:09:55 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KWsA2yd0pKvRgGEqGk/s2WHG/22gUn1NeirZ/dkfJ2i8hOFHTlUX22Gzm9jDH0YyS37FwI5iJP+36tDMZmufKw==", "task"=>{"name"=>"test1", "description"=>"test1"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "test1"], ["description", "test1"], ["created_at", "2017-09-22 06:09:55.168737"], ["updated_at", "2017-09-22 06:09:55.168737"]] +  (5.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:09:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:09:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (107.1ms) +Completed 500 Internal Server Error in 113ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe06094c468> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300834883360' +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:11:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300834258660' +Started GET "/" for 127.0.0.1 at 2017-09-21 23:11:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.3ms) +Completed 200 OK in 34ms (Views: 27.3ms | ActiveRecord: 3.1ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:11:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.6ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300834307140' +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:11:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (82.7ms) +Completed 500 Internal Server Error in 97ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05d099800> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300805160540' +Started GET "/" for 127.0.0.1 at 2017-09-21 23:11:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 15ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:11:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (87.1ms) +Completed 500 Internal Server Error in 93ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05d0a1f28> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300805174600' +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:12:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (85.4ms) +Completed 500 Internal Server Error in 91ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0587cb088> +Did you mean? tasks_path): + 1:

    Tasks#Edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300766985580' +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:17:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (81.9ms) +Completed 500 Internal Server Error in 87ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f69f040> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300825091340' +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:17:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (78.8ms) +Completed 500 Internal Server Error in 84ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f6d3a98> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: <%= f.label :description %> + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300825207380' +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 23:26:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (83.1ms) +Completed 500 Internal Server Error in 99ms (ActiveRecord: 3.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05a88b818> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300805252000' +Started GET "/" for 127.0.0.1 at 2017-09-21 23:26:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (97.0ms) +Completed 500 Internal Server Error in 102ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_complete_path' for #<#:0x007fe05d0d3e10> +Did you mean? tasks_path): + 8:
  3. + 9: <%= link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
    + 11: <%= link_to "Mark Complete", task_complete_path(task.id) %> | + 12: + 13: <%= link_to("Edit", edit_task_path(task.id)) %> + 14: <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + +app/views/tasks/index.html.erb:11:in `block in _app_views_tasks_index_html_erb___2747546158072201288_70300832154920' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2747546158072201288_70300832154920' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 23:27:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 23:27:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 23:27:07 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 23:27:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"j2tv1Uds2YjfFqaSgAJN7+ihS/LkuLLSpIxBvloExqIahI5JLk1q+G8lXGBZUucEwhlxX8qI62BpTEiP5XB+4Q==", "task"=>{"name"=>"fasfads", "description"=>"fafadafa"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "fasfads"], ["description", "fafadafa"], ["created_at", "2017-09-22 06:27:10.307782"], ["updated_at", "2017-09-22 06:27:10.307782"]] +  (5.8ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:27:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/17/edit" for 127.0.0.1 at 2017-09-21 23:27:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 17], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (86.4ms) +Completed 500 Internal Server Error in 92ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f60d550> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300824793480' +Started GET "/" for 127.0.0.1 at 2017-09-21 23:27:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/17" for 127.0.0.1 at 2017-09-21 23:27:33 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"gFAnivM93ceke1BfgiYNIj7PnCY+NNk+nj7B+TvtzIB0fMJVN9twea6tyyOhCh6KbBH8Zv7cpMscpFe817ap+g==", "id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 17], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 17]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:27:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 23:27:48 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"4G0wyFJ5HG7yfwkM8zjuY4O29q+B6jTwLLzz7y7KdtEUQdUXlp+x0PipknDQFP3L0WiW70ECSQWuJmWqwpETqw==", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 16], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 16]] +  (0.9ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:27:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:36:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 18ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:36:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:36:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:36:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:36:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 23:36:37 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.4ms) +Completed 200 OK in 29ms (Views: 18.6ms | ActiveRecord: 3.6ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 23:36:43 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"tekmQtvgGzf4NmH1RGiEeEocgdRxhd3ISdO5Fzide2kgBsfessGoR0gFmwedOC6TYKS7eV+1hHqEE7Amh+nDKg==", "task"=>{"name"=>"welcome friends", "description"=>"dfasfasf"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "welcome friends"], ["description", "dfasfasf"], ["created_at", "2017-09-22 06:36:43.445271"], ["updated_at", "2017-09-22 06:36:43.445271"]] +  (5.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:36:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 23:36:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 23:36:49 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"H4HBhttvVKfhJnb7yOEltN366q1LMttB7Bd/pbXTna2KbiAask7n11EVjAkRsY9f90LQAGUCgvMh13aUCqcl7g==", "task"=>{"name"=>"adfasfas", "description"=>"adfasfada"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "adfasfas"], ["description", "adfasfada"], ["created_at", "2017-09-22 06:36:49.025215"], ["updated_at", "2017-09-22 06:36:49.025215"]] +  (5.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:36:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 14.4ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/19/edit" for 127.0.0.1 at 2017-09-21 23:36:53 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/19/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/19/edit" for 127.0.0.1 at 2017-09-21 23:38:25 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/19/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/19/edit" for 127.0.0.1 at 2017-09-21 23:39:34 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/19/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/19/edit" for 127.0.0.1 at 2017-09-21 23:41:15 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/19/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2017-09-21 23:41:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 27ms (Views: 21.2ms | ActiveRecord: 3.0ms) + + +Started GET "/tasks/18" for 127.0.0.1 at 2017-09-21 23:41:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (94.0ms) +Completed 500 Internal Server Error in 100ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f4ff190> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300824239580' +Started GET "/tasks/18" for 127.0.0.1 at 2017-09-21 23:42:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 26ms (Views: 13.9ms | ActiveRecord: 3.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 23:42:33 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 23:42:36 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yIlP/8i6LmjhW4E0ILfVtU4Gg6nxG9jyW6WZxJj9gY9dZq5joZudGFFoe8b5539eZL65BN8rgUCWZZD1J4k5zA==", "task"=>{"name"=>"twasd", "description"=>"twerwe"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "twasd"], ["description", "twerwe"], ["created_at", "2017-09-22 06:42:36.864852"], ["updated_at", "2017-09-22 06:42:36.864852"]] +  (5.4ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 5.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-21 23:42:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:42:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.3ms) + + + +NoMethodError (undefined method `edit' for #): + +app/controllers/tasks_controller.rb:36:in `edit' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:42:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (79.5ms) +Completed 500 Internal Server Error in 95ms (ActiveRecord: 2.9ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe058b44098> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300768811120' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:44:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (78.7ms) +Completed 500 Internal Server Error in 92ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0600ab728> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300830351520' +app/controllers/tasks_controller.rb:42:in `edit' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:44:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (92.5ms) +Completed 500 Internal Server Error in 105ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05a695e28> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300765285680' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:45:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (78.7ms) +Completed 500 Internal Server Error in 84ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f70ca00> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300825315820' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:45:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (78.6ms) +Completed 500 Internal Server Error in 96ms (ActiveRecord: 2.9ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe06086a630> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300783995240' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:46:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (83.9ms) +Completed 500 Internal Server Error in 97ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05d0ab730> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300831683740' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:46:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (93.6ms) +Completed 500 Internal Server Error in 106ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0597d6b30> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300782368640' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:46:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (78.0ms) +Completed 500 Internal Server Error in 90ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0609c7988> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300835148120' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:46:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300824905060' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:47:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (79.2ms) +Completed 500 Internal Server Error in 95ms (ActiveRecord: 3.8ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f69e230> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300831944420' +Started POST "/__web_console/repl_sessions/c615ecfd016960e55a7946b8cff219e7/trace" for 127.0.0.1 at 2017-09-21 23:47:54 -0700 +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:47:54 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (133.9ms) +Completed 500 Internal Server Error in 152ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe060302c10> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300831456780' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:47:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (89.1ms) +Completed 500 Internal Server Error in 94ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe06097fbb0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300834964340' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:48:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (79.5ms) +Completed 500 Internal Server Error in 97ms (ActiveRecord: 3.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0609b67a0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300835112800' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:48:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (89.2ms) +Completed 500 Internal Server Error in 96ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05a88a9e0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300784155700' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:53:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (80.5ms) +Completed 500 Internal Server Error in 96ms (ActiveRecord: 2.8ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f50cd90> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300824272560' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:55:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (83.0ms) +Completed 500 Internal Server Error in 95ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0596ed188> +Did you mean? asset_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300774938320' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:55:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (80.8ms) +Completed 500 Internal Server Error in 86ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f71d508> +Did you mean? asset_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300825350340' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:57:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (82.8ms) +Completed 500 Internal Server Error in 98ms (ActiveRecord: 2.8ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0603786e0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300831843380' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:57:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (87.0ms) +Completed 500 Internal Server Error in 93ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05a71cd60> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300783419980' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:57:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (78.9ms) +Completed 500 Internal Server Error in 84ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe060a12848> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300835289580' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:57:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (81.7ms) +Completed 500 Internal Server Error in 87ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe058bccda8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300769090540' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:58:04 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:78:in `controller_class' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:43:in `controller' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:29:in `serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:50:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:58:48 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (86.7ms) +Completed 500 Internal Server Error in 102ms (ActiveRecord: 2.6ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0608d4c10> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300834653200' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:59:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @tasks do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300824046260' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-21 23:59:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (86.4ms) +Completed 500 Internal Server Error in 103ms (ActiveRecord: 3.8ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe0600fb458> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300830554140' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:00:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (82.6ms) +Completed 500 Internal Server Error in 96ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05a89d8b0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300784197360' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:00:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (79.2ms) +Completed 500 Internal Server Error in 85ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f4afca8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300824082800' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:00:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (97.3ms) +Completed 500 Internal Server Error in 104ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f741200> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300825424180' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:00:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (95.1ms) +Completed 500 Internal Server Error in 100ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe05f3a1230> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300823556560' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:00:40 -0700 + +LoadError (Unable to autoload constant TasksController, expected /Users/janedrozo/Desktop/TaskList/app/controllers/tasks_controller.rb to define it): + +activesupport (5.1.4) lib/active_support/dependencies.rb:511:in `load_missing_constant' +activesupport (5.1.4) lib/active_support/dependencies.rb:202:in `const_missing' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `const_get' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:269:in `block in constantize' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `each' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `inject' +activesupport (5.1.4) lib/active_support/inflector/methods.rb:267:in `constantize' +activesupport (5.1.4) lib/active_support/dependencies.rb:582:in `get' +activesupport (5.1.4) lib/active_support/dependencies.rb:613:in `constantize' +actionpack (5.1.4) lib/action_dispatch/http/request.rb:85:in `controller_class_for' +actionpack (5.1.4) lib/action_dispatch/http/parameters.rb:99:in `binary_params_for?' +actionpack (5.1.4) lib/action_dispatch/http/parameters.rb:90:in `set_binary_encoding' +actionpack (5.1.4) lib/action_dispatch/http/parameters.rb:67:in `path_parameters=' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:48:in `block in serve' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `each' +actionpack (5.1.4) lib/action_dispatch/journey/router.rb:33:in `serve' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:834:in `call' +rack (2.0.3) lib/rack/etag.rb:25:in `call' +rack (2.0.3) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.3) lib/rack/head.rb:12:in `call' +rack (2.0.3) lib/rack/session/abstract/id.rb:232:in `context' +rack (2.0.3) lib/rack/session/abstract/id.rb:226:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.1.4) lib/active_record/migration.rb:556:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:26:in `block in call' +activesupport (5.1.4) lib/active_support/callbacks.rb:97:in `run_callbacks' +actionpack (5.1.4) lib/action_dispatch/middleware/callbacks.rb:24:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:59:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 13ms (ActiveRecord: 3.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 30ms (Views: 26.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 00:01:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.3ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 00:01:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 00:01:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.8ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 23ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:01:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.6ms) +Completed 200 OK in 38ms (Views: 32.2ms | ActiveRecord: 2.7ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 33ms (Views: 30.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.6ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 35ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 46ms (Views: 42.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:01:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 22ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (81.0ms) +Completed 500 Internal Server Error in 88ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe058c6f8a0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300770509360' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 12ms (ActiveRecord: 3.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.8ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:02:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:02:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:03:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.6ms) +Completed 200 OK in 27ms (Views: 20.7ms | ActiveRecord: 3.0ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (2.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 3ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:03:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:04:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:04:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:04:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.7ms) +Completed 200 OK in 28ms (Views: 21.4ms | ActiveRecord: 2.7ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Completed 500 Internal Server Error in 110ms (ActiveRecord: 0.3ms) + + + +NameError (undefined local variable or method `edit_path' for # +Did you mean? edit_task_path): + +app/controllers/tasks_controller.rb:42:in `edit' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 11ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 2ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:04:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/20/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:04:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:04:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/18/edit +Completed 302 Found in 1ms (ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:05:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (100.0ms) +Completed 500 Internal Server Error in 117ms (ActiveRecord: 2.6ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe061b05920> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___561996237429999340_70300843425800' +Started PUT "/__web_console/repl_sessions/ecae07e84c11dc133d0adbbd25936ea6" for 127.0.0.1 at 2017-09-22 00:07:09 -0700 +Started PUT "/__web_console/repl_sessions/ecae07e84c11dc133d0adbbd25936ea6" for 127.0.0.1 at 2017-09-22 00:07:12 -0700 +Started PUT "/__web_console/repl_sessions/ecae07e84c11dc133d0adbbd25936ea6" for 127.0.0.1 at 2017-09-22 00:07:18 -0700 +Started PUT "/__web_console/repl_sessions/ecae07e84c11dc133d0adbbd25936ea6" for 127.0.0.1 at 2017-09-22 00:07:20 -0700 +Started GET "/" for 127.0.0.1 at 2017-09-22 00:11:43 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (96.3ms) +Completed 500 Internal Server Error in 110ms (ActiveRecord: 3.5ms) + + + +ActionView::Template::Error (undefined method `edit_task' for #<#:0x007fa741a16cc0> +Did you mean? edit_task_url): + 8:
  4. + 9: <%= link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
    + 11: <%= link_to "Edit", edit_task(task.id) %> + 12: <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + 13:

    + 14:
  5. + +app/views/tasks/index.html.erb:11:in `block in _app_views_tasks_index_html_erb___2362051270787268122_70178168714480' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2362051270787268122_70178168714480' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:11:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (15.1ms) +Completed 200 OK in 172ms (Views: 164.7ms | ActiveRecord: 5.7ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:11:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (99.2ms) +Completed 500 Internal Server Error in 108ms (ActiveRecord: 0.5ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fa744860298> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__4157741569595546400_70178192950840' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:13:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (81.9ms) +Completed 500 Internal Server Error in 88ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fa73cf3d3e8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__4157741569595546400_70178129440480' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:13:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (84.1ms) +Completed 500 Internal Server Error in 90ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fa73d527330> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__4157741569595546400_70178132550980' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:14:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (81.9ms) +Completed 500 Internal Server Error in 89ms (ActiveRecord: 0.6ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fa73eca00c0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__4157741569595546400_70178144849540' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:15:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (83.6ms) +Completed 500 Internal Server Error in 89ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fa741cb45e0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__4157741569595546400_70178170054640' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:15:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (79.7ms) +Completed 500 Internal Server Error in 85ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fa744964270> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__4157741569595546400_70178193483300' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:15:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (88.5ms) +Completed 500 Internal Server Error in 93ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `edit_tasks_path' for #<#:0x007fa7460755e0> +Did you mean? edit_task_path): + 8:
  6. + 9: <%= link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
    + 11: <%= link_to "Edit", edit_tasks_path(task.id) %> + 12: <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + 13:

    + 14:
  7. + +app/views/tasks/index.html.erb:11:in `block in _app_views_tasks_index_html_erb___2362051270787268122_70178205577180' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2362051270787268122_70178205577180' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:16:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (84.5ms) +Completed 500 Internal Server Error in 90ms (ActiveRecord: 0.5ms) + + + +ActionView::Template::Error (undefined method `edit' for #<#:0x007fa7461774c0> +Did you mean? exit): + 8:
  8. + 9: <%= link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
    + 11: <%= link_to "Edit", edit(task.id) %> + 12: <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + 13:

    + 14:
  9. + +app/views/tasks/index.html.erb:11:in `block in _app_views_tasks_index_html_erb___2362051270787268122_70178206105420' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___2362051270787268122_70178206105420' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:16:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:11: syntax error, unexpected ')', expecting keyword_end +, delete_task_path(task.id)) );@output_buffer.safe_append=' + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:11: syntax error, unexpected ')', expecting keyword_end +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:16:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (80.2ms) +Completed 500 Internal Server Error in 86ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fa744833cc0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__4157741569595546400_70178192868260' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:16:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:11: syntax error, unexpected ')', expecting keyword_end +, delete_task_path(task.id)) );@output_buffer.safe_append=' + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:11: syntax error, unexpected ')', expecting keyword_end +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/" for 127.0.0.1 at 2017-09-22 00:16:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20" for 127.0.0.1 at 2017-09-22 00:16:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 19.1ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:16:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 25ms (Views: 20.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/20" for 127.0.0.1 at 2017-09-22 00:16:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 23ms (Views: 18.7ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/20" for 127.0.0.1 at 2017-09-22 00:17:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:17:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:17:16 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:17:48 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:17:56 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:21:02 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + +ActionController::RoutingError (No route matches [GET] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 00:21:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (27.2ms) +Completed 200 OK in 198ms (Views: 185.2ms | ActiveRecord: 9.4ms) + + +Started POST "/task/20/edit" for 127.0.0.1 at 2017-09-22 00:21:12 -0700 + +ActionController::RoutingError (No route matches [POST] "/task/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:23:25 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.0ms) +Completed 200 OK in 198ms (Views: 183.1ms | ActiveRecord: 3.9ms) + + +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:23:27 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 00:41:14 -0700 +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (16.7ms) +Completed 200 OK in 188ms (Views: 170.3ms | ActiveRecord: 3.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:41:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.3ms) +Completed 200 OK in 48ms (Views: 38.8ms | ActiveRecord: 6.6ms) + + +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:41:19 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/18/" for 127.0.0.1 at 2017-09-22 00:42:20 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 185ms (Views: 165.0ms | ActiveRecord: 3.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 00:42:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (15.5ms) +Completed 200 OK in 31ms (Views: 21.8ms | ActiveRecord: 6.7ms) + + +Started GET "/tasks/20" for 127.0.0.1 at 2017-09-22 00:42:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 30ms (Views: 25.5ms | ActiveRecord: 0.7ms) + + +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:43:37 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:44:13 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:44:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 32ms (Views: 30.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:44:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (108.9ms) +Completed 500 Internal Server Error in 116ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe01b2a7260> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1990296125669978808_70300252585500' +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:44:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (85.9ms) +Completed 500 Internal Server Error in 92ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe01d66dbb8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1990296125669978808_70300271342280' +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:45:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} +Completed 500 Internal Server Error in 51ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `echo' for #): + +app/controllers/tasks_controller.rb:36:in `edit' +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:45:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (137.8ms) +Completed 500 Internal Server Error in 154ms (ActiveRecord: 2.7ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007fe01e0a1530> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1990296125669978808_70300276694260' +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:49:10 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (14.5ms) +Completed 200 OK in 192ms (Views: 172.2ms | ActiveRecord: 3.8ms) + + +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:50:01 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:51:32 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:52:58 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (15.8ms) +Completed 200 OK in 201ms (Views: 176.9ms | ActiveRecord: 4.6ms) + + +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:53:01 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:55:42 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:55:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 22ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:55:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.9ms) +Completed 200 OK in 25ms (Views: 19.5ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:55:56 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:58:27 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2017-09-22 00:58:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 24ms (Views: 18.1ms | ActiveRecord: 2.7ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:58:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.3ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/edit.html.erb:4: syntax error, unexpected =>, expecting '}' +d= form_for :task {:action => "update" } do |f| @output_buf + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/edit.html.erb:4: syntax error, unexpected '}', expecting keyword_end +r :task {:action => "update" } do |f| @output_buffer.safe_ap + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/edit.html.erb:17: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/edit.html.erb:4: syntax error, unexpected =>, expecting '}' +app/views/tasks/edit.html.erb:4: syntax error, unexpected '}', expecting keyword_end +app/views/tasks/edit.html.erb:17: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 00:59:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 16ms (Views: 13.3ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/18" for 127.0.0.1 at 2017-09-22 00:59:03 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/18" for 127.0.0.1 at 2017-09-22 00:59:11 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/18" for 127.0.0.1 at 2017-09-22 00:59:14 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/18"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 00:59:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 00:59:57 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:00:22 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/" for 127.0.0.1 at 2017-09-22 01:00:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:00:29 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started PATCH "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:06:21 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC + +ActionController::RoutingError (No route matches [PATCH] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 01:06:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (22.3ms) +Completed 200 OK in 200ms (Views: 187.7ms | ActiveRecord: 9.3ms) + + +Started GET "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 01:06:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (8.3ms) +Completed 200 OK in 28ms (Views: 22.1ms | ActiveRecord: 0.5ms) + + +Started POST "/tasks/:id" for 127.0.0.1 at 2017-09-22 01:06:26 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/:id"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/:id" for 127.0.0.1 at 2017-09-22 01:06:35 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/:id"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 01:06:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 01:06:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.6ms) +Completed 200 OK in 22ms (Views: 18.1ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 01:06:41 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/19/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started POST "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 01:08:33 -0700 +Started GET "/tasks/19/" for 127.0.0.1 at 2017-09-22 01:08:43 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/19/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Processing by TasksController#show as HTML +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 01:08:44 -0700 + Parameters: {"id"=>"19"} +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 24ms (Views: 18.7ms | ActiveRecord: 2.1ms) + + + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 41ms (Views: 14.2ms | ActiveRecord: 12.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:08:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:08:48 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/20/edit"): + +actionpack (5.1.4) lib/action_dispatch/middleware/debug_exceptions.rb:63:in `call' +web-console (3.5.1) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.5.1) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `catch' +web-console (3.5.1) lib/web_console/middleware.rb:18:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.1.4) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.1.4) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.1.4) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/request_id.rb:25:in `call' +rack (2.0.3) lib/rack/method_override.rb:22:in `call' +rack (2.0.3) lib/rack/runtime.rb:22:in `call' +activesupport (5.1.4) lib/active_support/cache/strategy/local_cache_middleware.rb:27:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.1.4) lib/action_dispatch/middleware/static.rb:125:in `call' +rack (2.0.3) lib/rack/sendfile.rb:111:in `call' +railties (5.1.4) lib/rails/engine.rb:522:in `call' +puma (3.10.0) lib/puma/configuration.rb:225:in `call' +puma (3.10.0) lib/puma/server.rb:605:in `handle_request' +puma (3.10.0) lib/puma/server.rb:437:in `process_client' +puma (3.10.0) lib/puma/server.rb:301:in `block in run' +puma (3.10.0) lib/puma/thread_pool.rb:120:in `block in spawn_thread' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 01:12:05 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 192ms (Views: 178.4ms | ActiveRecord: 3.5ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:12:08 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (10.1ms) +Completed 200 OK in 43ms (Views: 24.5ms | ActiveRecord: 7.4ms) + + +Started PATCH "/tasks/20" for 127.0.0.1 at 2017-09-22 01:12:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qW7NhNaK9K2h8yoEXMyCgb+cUabnqlh3a8TgvXoiOLrhOslga8kNe9J1H2xEkkTvAYM7Xku9t7g1YrTw5xyDUA==", "task"=>{"name"=>"twasd", "description"=>"twerwe", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:68:in `update' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 01:12:45 -0700 +Processing by TasksController#index as HTML +Started GET "/" for 127.0.0.1 at 2017-09-22 01:12:55 -0700 + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 20ms (Views: 17.1ms | ActiveRecord: 0.3ms) + + +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 22ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:12:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 19.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20" for 127.0.0.1 at 2017-09-22 01:13:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"m4x42rze8cNC1HTLawyqD8c5CvdbwypbnntjYRPowI/T2Hw+AZ0IFTFSQaNzUmxheSZgD/fUxZTA3TcsjtZ7ZQ==", "task"=>{"name"=>"twasd", "description"=>"edit ", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "description" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["description", "edit "], ["updated_at", "2017-09-22 08:13:05.020520"], ["id", 20]] +  (5.8ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 6.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:13:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20" for 127.0.0.1 at 2017-09-22 01:13:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 01:15:20 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.2ms) +Completed 200 OK in 29ms (Views: 20.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 01:15:28 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"32VMnYyCb7tn0rs22uUi+EIqXarxEcuSZ/vUVs48w49Kiq0B5aPcy9fhQcQDtYgTaJJnB98hkiCqO91ncUh7zA==", "task"=>{"name"=>"melon ball", "description"=>"make drinks"}, "commit"=>"Add Task"} +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "melon ball"], ["description", "make drinks"], ["created_at", "2017-09-22 08:15:28.645943"], ["updated_at", "2017-09-22 08:15:28.645943"]] +  (6.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:15:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/21/edit" for 127.0.0.1 at 2017-09-22 01:15:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"21"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.2ms) +Completed 200 OK in 24ms (Views: 20.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21" for 127.0.0.1 at 2017-09-22 01:15:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rybUtFb5oL0BaTnjaLgHWx7y6YgWbaPPkZu1BrgMWU3yjW16uTP0MDdR18w89POcvLF98IRb/UBYr+BICx+kKg==", "task"=>{"name"=>"melon ball", "description"=>"make drinks many drinks", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "description" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["description", "make drinks many drinks"], ["updated_at", "2017-09-22 08:15:35.399639"], ["id", 21]] +  (5.9ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:15:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/21" for 127.0.0.1 at 2017-09-22 01:15:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"21"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 01:17:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 26ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/18" for 127.0.0.1 at 2017-09-22 01:17:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qciK5Qp469m7anGFoBacki3S64uQ/jmtpB6+mzKlQJCiTx2z1CHu8EJWL4br2H4ehhWSjE96kBuyC5nsqp2ApQ==", "task"=>{"name"=>"welcome friends", "description"=>"dfasfasffsdafasfasfasfsafasfadsfasfasfasfsafadfasdfafadsfasfasf", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "description" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["description", "dfasfasffsdafasfasfasfsafasfadsfasfasfasfsafadfasdfafadsfasfasf"], ["updated_at", "2017-09-22 08:17:41.228648"], ["id", 18]] +  (5.5ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:17:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/19" for 127.0.0.1 at 2017-09-22 01:17:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 22ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:17:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/19/edit" for 127.0.0.1 at 2017-09-22 01:17:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19" for 127.0.0.1 at 2017-09-22 01:18:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"fZtPiXrKzVbW4QxfrMfsrYd15OjaSmRIA46SSLP7GnuOeMR6sg3WpioWwcDa9dKECKmQNHbDSMJSeAxg6gcG1w==", "task"=>{"name"=>"Clean Room", "description"=>"All Rooms", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"19"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "name" = $1, "description" = $2, "updated_at" = $3 WHERE "tasks"."id" = $4 [["name", "Clean Room"], ["description", "All Rooms"], ["updated_at", "2017-09-22 08:18:12.992134"], ["id", 19]] +  (5.4ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:18:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:18:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (9.3ms) +Completed 200 OK in 25ms (Views: 18.9ms | ActiveRecord: 2.8ms) + + +Started GET "/tasks/19" for 127.0.0.1 at 2017-09-22 01:18:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 27ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/21/edit" for 127.0.0.1 at 2017-09-22 01:19:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"21"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.2ms) +Completed 200 OK in 24ms (Views: 20.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21" for 127.0.0.1 at 2017-09-22 01:19:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"jrhZJUM/DmgyIpmBq8y3R8hx9LCdPrTVZXmPM3nq1LbTE+DrrPVa5QQad67/gEOAajJgyA8I6lqsTdp9yvkp0Q==", "task"=>{"name"=>"Pick up Birthday Cake", "description"=>"Saturday", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "name" = $1, "description" = $2, "updated_at" = $3 WHERE "tasks"."id" = $4 [["name", "Pick up Birthday Cake"], ["description", "Saturday"], ["updated_at", "2017-09-22 08:19:23.388114"], ["id", 21]] +  (5.9ms) COMMIT +  (0.2ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 6.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:19:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/21" for 127.0.0.1 at 2017-09-22 01:19:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 20ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:19:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20" for 127.0.0.1 at 2017-09-22 01:19:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 20ms (Views: 16.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 01:19:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20" for 127.0.0.1 at 2017-09-22 01:19:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Q3Dn0S977bYnDcsQjeuTVQPHRbPMyfymITdcDzK9qYELJOM1kjgUYFSL/niVtVU7vdgvS2DeE2l/kQhCr4MSaw==", "task"=>{"name"=>"Bathe Oreo and Nugget", "description"=>"Groom them too", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "name" = $1, "description" = $2, "updated_at" = $3 WHERE "tasks"."id" = $4 [["name", "Bathe Oreo and Nugget"], ["description", "Groom them too"], ["updated_at", "2017-09-22 08:19:51.091210"], ["id", 20]] +  (5.5ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:19:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 01:20:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 20ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/18" for 127.0.0.1 at 2017-09-22 01:20:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"B5qYyUct1aO0+FHnWvcXSK5C7RkLHip7JVKTL6AH24wMHQ+fmXTQik3ED+QROfXEBYWUHtSag80zR7RYOD8buQ==", "task"=>{"name"=>"Complete Wave 3", "description"=>"dfasfasffsdafasfasfasfsafasfadsfasfasfasfsafadfasdfafadsfasfasf", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "name" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["name", "Complete Wave 3"], ["updated_at", "2017-09-22 08:20:27.040644"], ["id", 18]] +  (5.5ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 01:20:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-22 10:46:13 -0700 +  (6.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 3.9ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/edit.html.erb:32: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/edit.html.erb:32: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 10:46:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (11.9ms) +Completed 200 OK in 193ms (Views: 186.2ms | ActiveRecord: 4.9ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:46:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.5ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/edit.html.erb:32: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/edit.html.erb:32: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:48:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.2ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/edit.html.erb:18: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/edit.html.erb:18: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:48:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (97.0ms) +Completed 500 Internal Server Error in 102ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c964ac7b8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155256555720' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:49:34 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (12.0ms) +Completed 200 OK in 28ms (Views: 25.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20" for 127.0.0.1 at 2017-09-22 10:49:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8maUpkMZx9AqY8V/BU+DbFs/YcFVpB7J7XL+08bXFa8GSnF5h/9qbiC1XgMmY5DECeEBgZVMYzxv6GiWKoxw1Q==", "task"=>{"name"=>"Bathe Oreo and Nugget", "description"=>"Groom them too!", "completion_date"=>""}, "commit"=>"Update Task", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "description" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["description", "Groom them too!"], ["updated_at", "2017-09-22 17:49:41.989826"], ["id", 20]] +  (5.6ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 6.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 10:49:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20" for 127.0.0.1 at 2017-09-22 10:49:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 25ms (Views: 20.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 10:50:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:50:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 16.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:50:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (74.1ms) +Completed 500 Internal Server Error in 80ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c9825ecc0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155272125260' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:54:24 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (103.6ms) +Completed 500 Internal Server Error in 124ms (ActiveRecord: 2.8ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c91f8d060> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155214334160' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 10:54:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:54:32 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (80.6ms) +Completed 500 Internal Server Error in 87ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c916622b0> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155215510980' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:54:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", nil], ["LIMIT", 1]] +Completed 404 Not Found in 3ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'={:id=>20}): + +app/controllers/tasks_controller.rb:36:in `edit' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:55:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", nil], ["LIMIT", 1]] +Completed 404 Not Found in 5ms (ActiveRecord: 0.2ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'={:id=>"20"}): + +app/controllers/tasks_controller.rb:36:in `edit' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:55:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (78.8ms) +Completed 500 Internal Server Error in 90ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c9630e438> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155255719220' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:55:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (74.0ms) +Completed 500 Internal Server Error in 86ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c990218a8> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155279359960' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:55:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (79.4ms) +Completed 500 Internal Server Error in 86ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c935df660> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155232033340' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:56:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:56:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 10:56:52 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:03:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (74.5ms) +Completed 500 Internal Server Error in 80ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c9629d080> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155255475520' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 11:03:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:03:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (84.1ms) +Completed 500 Internal Server Error in 90ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c937c4368> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155233016580' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:03:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 11:06:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:06:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (81.5ms) +Completed 500 Internal Server Error in 87ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `task_path' for #<#:0x007f9c982e5810> +Did you mean? tasks_path): + 1:

    Tasks#edit

    + 2: + 3: + 4: <%= form_for @task do |f| %> + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + 7: + +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb__1846083227823894524_70155272401200' +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:07:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.9ms) +Completed 200 OK in 28ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:14:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 200 OK in 33ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:19:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.6ms) + Rendered tasks/edit.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20" for 127.0.0.1 at 2017-09-22 11:19:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"D9Xa5rXHrfuuPqdW7Qp+PZ6ERtb1BTnoPLwFVj2Anjb7+T85cSEARaToPCrOJm2VzFomljXtRB2+JpMT0dv7TA==", "task"=>{"name"=>"Bathe Oreo and Nugget", "description"=>"Groom them too!", "completion_date"=>""}, "commit"=>"Edit Task", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 11:19:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (79.8ms) +Completed 500 Internal Server Error in 84ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `task_show_path' for #<#:0x007f9c96334250> +Did you mean? tasks_path): + 6:
      + 7: <% @tasks.each do |task| %> + 8:
    1. + 9: <%= link_to(task.name, task_show_path(task.id), alt: 'link to task#show')%> + 10:
      + 11: <%= link_to "Edit", edit_task_path(task.id) %> + 12: <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + +app/views/tasks/index.html.erb:9:in `block in _app_views_tasks_index_html_erb___4501343438340424692_70155255785180' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___4501343438340424692_70155255785180' +Started GET "/" for 127.0.0.1 at 2017-09-22 11:20:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 11:20:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (3.5ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20" for 127.0.0.1 at 2017-09-22 11:20:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8dT9E2yLJ5b5P0wIvKyU51AUO6SHFQByl8JRnfMWTAe5gPn30cjeQIq5eWCk8lKJ7gtRXCsC773JZAXQbij37Q==", "task"=>{"name"=>"Bathe Oreo and Nugget", "description"=>"Groom them too!!!!", "completion_date"=>""}, "commit"=>"Edit Task", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "description" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["description", "Groom them too!!!!"], ["updated_at", "2017-09-22 18:20:35.810223"], ["id", 20]] +  (6.2ms) COMMIT +  (0.2ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 7.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 11:20:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 11:21:26 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.8ms) +Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 11:22:10 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.6ms) + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 18ms (Views: 15.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 11:22:13 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"B+yQBvKHK97ZOEyJnzZ6V8hXL+s4nyDy0waABx9cFS/zwHXZNmGGYNPu1/W8Gmn/molPq/h3XQdRnBZC8wdwVQ==", "task"=>{"name"=>"", "description"=>"", "completion_date"=>""}, "commit"=>"Add New Task"} +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", ""], ["description", ""], ["created_at", "2017-09-22 18:22:13.275646"], ["updated_at", "2017-09-22 18:22:13.275646"]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 11:22:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 11:22:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (3.7ms) +Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 11:22:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PtGG/JCf8YNF1wkvMsaqcv6JDg2Tw7YNoaj0dmIYAmSq1OXvPAj+ag6IMOOby2nM62qrF+4NBLIkLTpWbc4S4w==", "task"=>{"name"=>"afdasfasf", "description"=>"fasfdas", "completion_date"=>""}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "name" = $1, "description" = $2, "updated_at" = $3 WHERE "tasks"."id" = $4 [["name", "afdasfasf"], ["description", "fasfdas"], ["updated_at", "2017-09-22 18:22:20.037444"], ["id", 22]] +  (5.7ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 11:22:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 11:22:24 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/edit.html.erb within layouts/application (3.7ms) +Completed 200 OK in 24ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 11:22:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"RqGvnP9WOcYsl6cZzsX1GJavWNn+CUSyyeu6+tLK50PSpMyPU8E2L2fIntVnyDamg0z9w4PH9g1MbnTa3Rz3xA==", "task"=>{"name"=>"BLah", "description"=>"fasfdas", "completion_date"=>""}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "name" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["name", "BLah"], ["updated_at", "2017-09-22 18:22:28.762652"], ["id", 22]] +  (6.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 11:22:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 11:22:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.2ms) + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 11:22:37 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ih1MiwBH1QuMf9CAWz3ernsj5gHhHm345io2m/o3b7K38q0XaWZmezxMKnKCbXRFUZvcrM8uNEor6j+qRUPX8Q==", "task"=>{"name"=>"Wun", "description"=>"Der", "completion_date"=>""}, "commit"=>"Add New Task"} +  (0.1ms) BEGIN + SQL (0.2ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Wun"], ["description", "Der"], ["created_at", "2017-09-22 18:22:37.409889"], ["updated_at", "2017-09-22 18:22:37.409889"]] +  (5.7ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 6.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 11:22:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 12:52:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (9.7ms) +Completed 200 OK in 31ms (Views: 24.0ms | ActiveRecord: 3.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 12:52:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 23ms (Views: 19.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/hello" for 127.0.0.1 at 2017-09-22 12:54:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"hello"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.6ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=0): + +app/controllers/tasks_controller.rb:19:in `show' + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/" for 127.0.0.1 at 2017-09-22 13:33:26 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (11.3ms) +Completed 200 OK in 222ms (Views: 206.8ms | ActiveRecord: 3.5ms) + + diff --git a/log/test.log b/log/test.log new file mode 100644 index 000000000..46d29a8b8 --- /dev/null +++ b/log/test.log @@ -0,0 +1,32 @@ +  (192.4ms) DROP DATABASE IF EXISTS "TaskList_test" +  (480.2ms) CREATE DATABASE "TaskList_test" ENCODING = 'unicode' + SQL (0.9ms) CREATE EXTENSION IF NOT EXISTS "plpgsql" +  (0.2ms) DROP TABLE IF EXISTS "tasks" CASCADE +  (4.5ms) CREATE TABLE "tasks" ("id" bigserial primary key, "name" character varying, "description" text, "completion_date" date, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) +  (2.1ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY) +  (0.4ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.5ms) INSERT INTO "schema_migrations" (version) VALUES (20170919222712) +  (19.4ms) CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) + ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key" [["key", "environment"], ["value", "test"], ["created_at", "2017-09-22 06:03:11.533808"], ["updated_at", "2017-09-22 06:03:11.533808"]] +  (0.3ms) COMMIT + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2 [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.8ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) BEGIN +  (0.4ms) ALTER TABLE "tasks" DISABLE TRIGGER ALL;ALTER TABLE "schema_migrations" DISABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" DISABLE TRIGGER ALL +  (0.1ms) COMMIT +  (0.1ms) BEGIN + Fixture Delete (0.4ms) DELETE FROM "tasks" + Fixture Insert (6.3ms) INSERT INTO "tasks" ("name", "description", "completion_date", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2017-09-19', '2017-09-22 06:03:11.622019', '2017-09-22 06:03:11.622019', 980190962) + Fixture Insert (0.2ms) INSERT INTO "tasks" ("name", "description", "completion_date", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2017-09-19', '2017-09-22 06:03:11.622019', '2017-09-22 06:03:11.622019', 298486374) +  (5.6ms) COMMIT +  (0.1ms) BEGIN +  (0.2ms) ALTER TABLE "tasks" ENABLE TRIGGER ALL;ALTER TABLE "schema_migrations" ENABLE TRIGGER ALL;ALTER TABLE "ar_internal_metadata" ENABLE TRIGGER ALL +  (0.2ms) COMMIT +  (0.1ms) BEGIN +------------------------------------------- +TasksControllerTest: test_should_get_update +------------------------------------------- From d2d711c85e102681345702d51cc2832b7c0e9586 Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Fri, 29 Sep 2017 00:00:45 -0700 Subject: [PATCH 06/16] backup for w4 (minus flash notification) --- app/assets/stylesheets/application.css | 4 + app/controllers/tasks_controller.rb | 9 + app/views/tasks/index.html.erb | 12 +- log/development.log | 2303 ++++++++++++++++++++++++ 4 files changed, 2325 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index e4056b736..5e4a36923 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -55,3 +55,7 @@ footer { vertical-align: middle; clear: both; } + +.striked { + text-decoration: line-through; +} diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 260af4208..e65098938 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -72,6 +72,15 @@ def update end def mark_complete + task = Task.find_by(id: params[:id].to_i) + if task.completion_date == nil + task.completion_date = Date.current + else + task.completion_date = nil + end + if task.save + redirect_to root_path + end end end diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index d4f1f252f..84912b508 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -6,11 +6,17 @@
        <% @tasks.each do |task| %>
      1. - <%= link_to(task.name, task_path(task.id), alt: 'link to task#show')%> -
        + <%if task.completion_date == nil%> + <%= link_to(task.name, task_path(task.id), alt: 'link to task#show')%> <%= link_to "Edit", edit_task_path(task.id) %> <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> -

        + <%= button_to "Mark Complete", task_complete_path(task.id), method: :patch %> + <% else %> + <%= link_to(task.name, task_path(task.id), alt: 'link to task#show', class: 'striked')%> + <%= link_to "Edit", edit_task_path(task.id) %> + <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + <%= button_to "Completed #{task.completion_date}", task_complete_path(task.id), method: :patch %> + <%end %>
      2. <% end %>
      diff --git a/log/development.log b/log/development.log index 62f388019..3c2e7e478 100644 --- a/log/development.log +++ b/log/development.log @@ -10707,3 +10707,2306 @@ Processing by TasksController#index as HTML Completed 200 OK in 222ms (Views: 206.8ms | ActiveRecord: 3.5ms) +Started GET "/tasks/23/edit" for 127.0.0.1 at 2017-09-22 13:40:46 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#edit as HTML + Parameters: {"id"=>"23"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (17.9ms) + Rendered tasks/edit.html.erb within layouts/application (20.0ms) +Completed 200 OK in 214ms (Views: 187.8ms | ActiveRecord: 4.7ms) + + +Started GET "/tasks/23/edit" for 127.0.0.1 at 2017-09-22 13:45:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"23"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (21.8ms) + Rendered tasks/edit.html.erb within layouts/application (23.6ms) +Completed 200 OK in 50ms (Views: 36.4ms | ActiveRecord: 5.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 13:46:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (88.5ms) +Completed 500 Internal Server Error in 94ms (ActiveRecord: 0.6ms) + + + +ActionView::Template::Error (undefined method `mark_complete_path' for #<#:0x007fb55f3fbe18> +Did you mean? task_complete_path): + 10:
      + 11: <%= link_to "Edit", edit_task_path(task.id) %> + 12: <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> + 13: <%= link_to "Mark Complete", mark_complete_path(task.id), method: :patch %> + 14:

      + 15:
    2. + 16: <% end %> + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___804216757320376698_70208491332640' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___804216757320376698_70208491332640' +Started GET "/" for 127.0.0.1 at 2017-09-22 13:46:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 47ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:21 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 40ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 44ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 44ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:23 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:23 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 41ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:23 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:23 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:23 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 44ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 41ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 45ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 44ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 42ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 44ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:25 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:25 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:25 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 44ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:25 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 40ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:26 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 42ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:26 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 41ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:26 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 40ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:26 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 42ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:26 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 47ms (ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 13:46:27 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"hIO7IwbettTGYAthMJT7Fhe6elNGLNDEBLIXdQ4jitFwr178wjgbasy2kB0TuOi+RWQaE4bErTGGKIEw4njvqw==", "id"=>"23"} +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 43ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 13:50:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 37ms (Views: 24.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 13:50:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"YlrN4OZPLtIW0RDq4TimDCJmOPWpovawZ/7WstlkVX32X67zStghO12OKSZINWWyN4Wd79RsRA/iexiS1rJF+g==", "task"=>{"name"=>"BLah", "description"=>"fasfdas", "completion_date"=>"afadsfasdfa"}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.3ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 0.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 13:50:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.4ms) + + + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks/22" for 127.0.0.1 at 2017-09-22 13:51:06 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 204ms (Views: 182.0ms | ActiveRecord: 3.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 13:51:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (15.2ms) +Completed 200 OK in 42ms (Views: 32.5ms | ActiveRecord: 7.4ms) + + +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 13:51:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (11.5ms) + Rendered tasks/edit.html.erb within layouts/application (13.3ms) +Completed 200 OK in 30ms (Views: 25.5ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 13:52:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"T1tBMlV1K0aWGalzvU1N+n4rcmh6SnxgP4Nrup4avivbXiIh+eIkr91GkL8UQI5Ea8jXcgeEzt+6BqWakcyurA==", "task"=>{"name"=>"BLah", "description"=>"fasfdas", "completion_date"=>"9/22/2017"}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 13:52:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.3ms) + + + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 13:54:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 13:54:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"4DMDZhXnS8Luv/73VYAibUbkzl1/tkE76N4wwaNC8fx0NmB1uXBEK6Xgxzv8jeHTUwdrRwJ484RtW/7hrJThew==", "task"=>{"name"=>"BLah", "description"=>"fasfdas", "completion_date"=>"Date.new(2017, 1, 1)"}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.2ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 13:54:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.3ms) + + + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 14:00:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.9ms) + Rendered tasks/edit.html.erb within layouts/application (3.5ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 14:00:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UuyccTA2bj1+uOEEs9EYqfHahINi2uV8SccDtRcBZj7G6f9inKFh1DXn2Mga3NsX5DkhmR8UV8PMQs2VGNd2uQ==", "task"=>{"name"=>"DATE TEST", "description"=>"fasfdas", "completion_date"=>"01/01/18"}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "name" = $1, "completion_date" = $2, "updated_at" = $3 WHERE "tasks"."id" = $4 [["name", "DATE TEST"], ["completion_date", "0001-01-18"], ["updated_at", "2017-09-22 21:00:22.009191"], ["id", 22]] +  (6.2ms) COMMIT +  (0.1ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 11ms (ActiveRecord: 7.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:00:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.6ms) + + + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 14:01:36 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 14:02:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"K6YpSTQksSocM5h3cAmYZgTlQFb/gvZOyZw78k3xqEC/o0pamLO+w1dsobvZBFvYEQblTIJMRPFMGfXSQie4xw==", "task"=>{"name"=>"DATE TEST", "description"=>"fasfdas", "completion_date"=>"2020/10/15"}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2020-10-15"], ["updated_at", "2017-09-22 21:02:03.535483"], ["id", 22]] +  (5.6ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:02:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" LIMIT $1 [["LIMIT", 11]] +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 14:02:55 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/20" for 127.0.0.1 at 2017-09-22 14:03:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"unepWA46kQXN0aVf8AH1whN0uMQrMZz8dr5zJY2WxqnyI628s3lo075XkDfoXzOsrWvSPIcmczMoGCdoEKh9Qw==", "task"=>{"name"=>"Bathe Oreo and Nugget", "description"=>"Groom them too!!!!", "completion_date"=>"YYYY/MM/DD"}, "commit"=>"Edit Task", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.2ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:03:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/20/edit" for 127.0.0.1 at 2017-09-22 14:23:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (3.2ms) +Completed 200 OK in 27ms (Views: 18.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:23:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:23:47 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"BwI8DogSDZVtLF7+eiPRRPe9wHEq8R97F99+lw/1+djzLtnRTPSgK2f6xYJZD8LspWOgMeoZYo6VRejS466cog==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 21:23:47.116208"], ["id", 23]] +  (5.7ms) COMMIT +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 53ms (ActiveRecord: 6.4ms) + + +Started GET "/tasks/23/edit" for 127.0.0.1 at 2017-09-22 14:23:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.6ms) + Rendered tasks/edit.html.erb within layouts/application (3.1ms) +Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:24:03 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"BwI8DogSDZVtLF7+eiPRRPe9wHEq8R97F99+lw/1+djzLtnRTPSgK2f6xYJZD8LspWOgMeoZYo6VRejS466cog==", "id"=>"23"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 44ms (ActiveRecord: 0.5ms) + + +Started GET "/tasks/23/edit" for 127.0.0.1 at 2017-09-22 14:24:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"23"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.9ms) + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:24:20 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"BwI8DogSDZVtLF7+eiPRRPe9wHEq8R97F99+lw/1+djzLtnRTPSgK2f6xYJZD8LspWOgMeoZYo6VRejS466cog==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +No template found for TasksController#mark_complete, rendering head :no_content +Completed 204 No Content in 46ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/23/edit" for 127.0.0.1 at 2017-09-22 14:24:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (4.3ms) +Completed 200 OK in 22ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/23/edit" for 127.0.0.1 at 2017-09-22 14:39:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 32ms (Views: 20.7ms | ActiveRecord: 2.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:39:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:43:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:43:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:09 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"impoCDVVfnFTI7J65V0uxSIjnWSZO2NT5kfd1kTH74h+Ro3X8bPTz1n1KQbGcT1tcP39JFnTHqZk3UuTqJyK8g==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:10 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"MSqEnw8GraEVPmPBQhjEFa4ll36/La8yMM67ezH0xwXFBmFAy+AAHx/o+L1hNNe9/Pv3Pn/F0seyVC0+3a+ifw==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:10 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"bTKD3m0ilCrvSC6MAHJFPobiW+qj2EOWRsOvbjDvRpeZHmYBqcQ5lOWetfAjXlaW1Dw7qmMwPmPEWTkr3LQj7Q==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.2ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:11 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"zOQh/C6LZo20+HOZkO6rCm2jesPWlIjzwpxmVWGhtwA4yMQj6m3LM74u6OWzwriiP30agxZ89QZABvAQjfrSeg==", "id"=>"23"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.2ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 21ms (Views: 19.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:15 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"JZmCweOhuGq1b0nDBv/U9O7Ul75JAHcphXeYiwLYUErRtWceJ0cV1L+50r8l08dcvAr3/onoCtwH7Q7O7oM1MA==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 21:45:15.225110"], ["id", 21]] +  (1.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:17 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"vOy4l2wcz9MZaZTM8mGW4FAx5Gt+S2Sb1PXMkutq/+xIwF1IqPpibRO/D7DRTYVIAu+EK76jGW5Wb1rXBzGalg==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 20ms (Views: 18.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:17 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"XmJ0VqcmULXVLaT29luvP/xt37Q39Cqt3s0kuA5VJtCqTpGJY8D9C9/7P4rVd7yXrrO/9PccV1hcV7L94g5Dqg==", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"qMucx5Nv/k8nyM87fa0c103sadLS9N7+OyY35CZY+PVc53kYV4lT8S0eVEdegQ9/HzIJkhIcowu5vKGhygOdjw==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"1PbN6Z7fRhT/D3+AlzHqSASH5Q3OjsjtIFBW3FiKvUAg2ig2WjnrqvXZ5Py0HfngVlmFTQ5mtRiiysCZtNHYOg==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"MLYjsV13kP9K4oDSjZuFppuj7e38x6053ZeAfj6VCSjEmsZumZE9QUA0G66ut5YOyX2NrTwv0MxfDRY70s5sUg==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:28 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"uXM2cjuvE4nVtVTuzut7LsYI282quW6S/YeZjMitpsRNX9Ot/0m+N99jz5Ltx2iGlNa7jWpRE2d/HQ/JJPbDvg==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:28 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"P7H30AEe0sXMAsljOHoAjwrRXZMQ61sTi/GYY3pZ3S/LnRIPxfh/e8bUUh8bVhMnWA8909ADJuYJaw4mlgK4VQ==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:33 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"9yIGp6806ifeahqGU7Yl5mKLzwfTXBd3MShIvX91VkgDDuN4a9JHmdS8gfpwmjZOMFWvRxO0aoKzst74ky4zMg==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:34 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"9jsnQIXqvNPZjKQaAs0GlT5eBQfiRaF6sjAw5cu2UpECF8KfQQwRbdNaP2Yh4RU9bIBlRyKt3I8wqqagJ+036w==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 14:45:34 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"LUqd5c4EiIFiD3+j+PpkoggTCZE5HVKJyrdf+DLmNkLZZng6CuIlP2jZ5N/b1ncKWs1p0fn1L3xILcm93r1TOA==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:45:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/22/edit" for 127.0.0.1 at 2017-09-22 14:47:28 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.2ms) + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/22" for 127.0.0.1 at 2017-09-22 14:47:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+Ubn+CKOjv0PkbiBtC8dpG3TJmOOGOj7vDIIPaSLQJVtQ4TrjhmBFETOgU0dIt4aeDCDefPWWkQ5t8Ydq11QEg==", "task"=>{"name"=>"DATE TEST", "description"=>"fasfdas", "completion_date"=>"2020-10-15"}, "commit"=>"Edit Task", "id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:47:38 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"CezsAgXcS/4kgPLGAmPaxacOQdKfrDLB1jKQ2MAPFjH9wAndwTrmQC5WabohT8lt9dAhkl9ETzRUqAadLFRzSw==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:47:38 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"kf/JqdjFv3PzQZZY1oYOP5znG74gYv3iXod5AlMP8/Rl0yx2HCMSzfmXDST1qh2Xzjl7/uCKgBfcHe9Hv1SWjg==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:47:39 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"NhZ/iw2z4LWObrLbq2xzx3XCy9w0t3dQNl1VEzH3ImvCOppUyVVNC4S4KaeIQGBvJxyrnPRfCqW0x8NW3axHEQ==", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:47:39 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"zsG07wUQJr4YtbJnOug2gq2zt4DI45B6lFMdVkvu2e067VEwwfaLABJjKRsZxCUq/23XwAgL7Y8WyYsTp7W8lw==", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.2ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:47:39 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Q56hMEas2NzgjMnsYZo1HEIpLzCYZo2+3H/U2rjnguC3skTvgkp1YupaUpBCtia0EPdPcFiO8Ete5UKfVLznmg==", "id"=>"21"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.2ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:47:40 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Lt2WGalKeLyID/JGyqlMx9StJ8xXJgq10too/Dz6yrra8XPGbazVAoLZaTrphV9vhnNHjJfOd0BQQL650KGvwA==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 14:47:40 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"7xfSXoVt25uI0JpRcsj/gUNX4T/Wxbh7AY/X6SndWCkbOzeBQYt2JYIGAS1R5OwpEYmBfxYtxY6DFUGsxYY9Uw==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:47:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/21/edit" for 127.0.0.1 at 2017-09-22 14:48:19 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/21" for 127.0.0.1 at 2017-09-22 14:48:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"dz2Zr1eqFMiLR3kJPVYm3t3DbD2hM1YHKzNN+Jl5JC0qliBhuGBARb1/lyZpGtIZf4D4RTMFCIjiBxi2KmrZSg==", "task"=>{"name"=>"Pick up Birthday Cake", "description"=>"Saturday", "completion_date"=>""}, "commit"=>"Edit Task", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 21:48:22.506228"], ["id", 21]] +  (0.9ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:48:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/18/mark_complete" for 127.0.0.1 at 2017-09-22 14:56:13 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"dgc+dn6Q0aQ1ChHFwAmvdQPOHvIkcVom+aNvPOo+/zqCK9upunZ8Gj/cirnjJbzdURB+suSZJ9N7Ofl5BmWaQA==", "id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 21:56:13.552247"], ["id", 18]] +  (5.5ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 14:56:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:00:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 33ms (Views: 28.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:00:11 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"6dZCqrX6nyK1K3XqG2ytgc06sV+AUzEPrXVtbDJVwkYd+qd1cRwynL/97pY4QL4pn+TRH0C7TPov7/sp3g6nPA==", "id"=>"20"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:00:11.020438"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:00:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:00:11 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"bhZWCqgk47ZzEOkBSqwK0j+XbIKNm3vhY/WYYFf3CLuaOrPVbMJOCHnGcn1pgBl6bUkMwk1zBhThbw4lu6xtwQ==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:00:11.642563"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:00:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:00:12 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"8l7LdAy4F7EUw0WqZDmW6tR2Yb+Sx5uUedZWtmezT9YGci6ryF66Dx4V3tZHFYVChqgB/1Iv5mH7TMDzi+gqrA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:00:12.320747"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:00:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:04:05 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"2g4MTsC/DGqX1br5q7NkQfeAuR2FXsU/dD/CgvDhE6YuIumRBFmh1J0DIYWIn3fppV7ZXUW2uMr2pVTHHLp23A==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:04:05.400630"], ["id", 19]] +  (5.8ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:04:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:48 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"e+Yt6jgxWOooa2yjmjjJ+jLndsltHaK7s90e94op8/qPysg1/Nf1VCK999+5FNpSYDkWia31304xR4iyZnKWgA==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:11:48.567502"], ["id", 19]] +  (5.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:49 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"OrC0ju6gTbCKs2NUDlKppT78uMufuZLHoFhXz2cASGrOnFFRKkbgDoBl+CgtfroNbCLYi19R7zIiwsGKi1stEA==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:11:49.284883"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:50 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Lzu2B8vlONJhMNWOCsxPiAmV8YB3CSUIhbYxTvhnmz3bF1PYDwOVbGvmTvIp4FwgW0uRwLfhWP0HLKcLFDz+Rw==", "id"=>"19"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:11:50.407990"], ["id", 19]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:50 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"k9xUTNLG2R89dmNNAxYtd96Jda8P1QtTfnsGDZRztV1n8LGTFiB0oTeg+DEgOj7fjFcV7889dqb84ZBIeCjQJw==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:11:50.938050"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:51 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"imbOaGXTJ9a8sz5BwHPVLBWcTF1JRNymWxQpcv/Kip9+Siu3oTWKaLZlpT3jX8aER0IsHYmsoVPZjr83E5Hv5Q==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:11:51.236051"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:51 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"gBS7OsYigayFHjkmZLmFL9ixe+dh1vJJJGCbitBDPrd0OF7lAsQsEo/IolpHlZaHim8bp6E+j7ym+g3PPBhbzQ==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:11:51.550861"], ["id", 19]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:52 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"cunQ5KkF1/O2uC9/SiIJkI+oGX8zsDyp4P9jxoXhfsiGxTU7beN6TbxutANpDho43XZ5P/NYQVxiZfWDabobsg==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:11:52.425654"], ["id", 19]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:53 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"+4yp86mowR1xZcyfIXtbBZghxCe7VGcXehyKuExJt0YPoEwsbU5so3uzV+MCV0ityv+kZ3u8GuL4hhz9oBLSPA==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:11:53.049019"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:53 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"tXD3ypUgGu38SSvY13h167Z3XijkLcVSla5J8j7VVwJBXBIVUca3U/afsKT0VGZD5Kk+aCTFuKcXNN+30o4yeA==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:11:53.657084"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:54 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"TMsQ1vFWka5MbubxNktALvVNAAdRuezZFSEjEiPlOqK45/UJNbA8EEa4fY0VZ1OGp5NgR5FRkSyXu7VXz75f2A==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:11:54.283645"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:55 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"RKz8S7eg1HcpNEJq8muLGyZHAA/kR9LPqpQzM9w3HQuwgBmUc0Z5ySPi2RbRR5izdJlgTySvrzooDqV2MGx4cQ==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:11:55.050940"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:11:56 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"TgK0hHjpZMesArEQt3EhHmqQKzHR1hkuUUWLDF1NULG6LlFbvA/JeabUKmyUXTK2OE5LcRE+ZNvT3x1JsRY1yw==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:11:56.245995"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:11:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:09 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"4+x4JOGPDc4lr6OL+HYceyR3/lSniISo4EVGvul/AA4XwJ37JWmgcC95OPfbWg/TdqmeFGdg+V1i39D7BSRldA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:10.000590"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:13 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"cONQXNTwdnX5wPtSrphvRMCF91AybErPjyOes2NQII6Ez7WDEBbby/MWYC6NtHzskluXEPKENzoNuQj2jwtF9A==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:56:13.212803"], ["id", 21]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/22/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:14 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"h6dmUfKiZsMfN+ezWrVQx2xqV/MQDATXHHLZwE3Vl5Rzi4OONkTLfRXhfM95mUNvPrQ3s9DkeSKe6E+FoY7y7g==", "id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:14.346797"], ["id", 22]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/18/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:15 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"rfi3YNW2JcFlMkXWR9BNfPmZ1XYx7o/qEebpNzaH98ZZ1FK/EVCIf2/k3qpk/F7Uq0e1NvEG8h+TfH9y2tySvA==", "id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:15.315976"], ["id", 18]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:16 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"jxo8Rio9W2W35fyWDA64sC7hPv+h1Y1WX/EVNekW4T97NtmZ7tv2270zZ+ovIqsYfD9ev2E98KPda4NwBU2ERQ==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:16.048569"], ["id", 19]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"A7YQYAUuUDwMn8OpmSUGJs6KFbN+E/220FDf/dfqYPn3mvW/wcj9ggZJWNW6CRWOnFR18777gENSykm4O7EFgw==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:56:18.850697"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:19 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"u06ztnzoSuD/lvWYLf2k0Jnc9sJZbt6z4rC8sn8nAitPYlZpuA7nXvVAbuQO0bd4ywKWgpmGo0ZgKir3k3xnUQ==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:19.832592"], ["id", 19]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:20 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"eI73XJVDHbKs+BcTeMvsWRFoVOA1gIgFGVvT/GYzqtOMohKDUaWwDKYujG9b5//xQ7Y0oPVo9fCbwUW5imjPqQ==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:56:20.442790"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"C+HGYKKruN4ZUign3uC7i4yC/W3/SKyC/LlmymIWhsX/zSO/Zk0VYBOEs1v9zKgj3lydLT+g0Xd+I/CPjk3jvw==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:22.413772"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:23 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"F64J9de3tQzgFttI7mUFi+3kctwtwaEtD3KLXGnjFonjguwqE1EYsurAQDTNSRYjvzoSnO0p3NiN6B0Zhbhz8w==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:56:23.821766"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/18/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:25 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"DsHi5MmHzOrQnnVkt1suWNheE/DL6+bR8Qbtwa61fvX67Qc7DWFhVNpI7hiUdz3wioBzsAsDmyRznHuEQu4bjw==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:56:25.139514"], ["id", 18]] +  (0.3ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 19ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:26 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"gC8sorZb8R6EYM67KW9BLh/C3CGYt/ThsFKXjUk1+Z90A8l9cr1coI62VccKQ1KGTRy8YVhfiRQyyAHIpW6c5Q==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:26.282164"], ["id", 21]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:31 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"vJ48pgjvqwhrbxygivBZZvVIYnrARImpld2FVO5FMoBIstl5zAkGtmG5h9yp3ErOp5YCOgCs9FwXRxMRAh5X+g==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:31.407743"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:32 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"0I0qfuuhTrUX0LxRsreFbvc1I8oQHVQgRF/lBAzpx1okoc+hL0fjCx0GJy2Rm5bGpetDitD1KdXGxXNB4LKiIA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:56:32.212983"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:33 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"tBHUFDB+Rr6rO04osEqPz+3akKmu14soPYfbof5i5y5APTHL9JjrAKHt1VSTZpxnvwTw6W4/9t2/HU3kEjmCVA==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:33.131979"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/18/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:34 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"yjh3c6xLsrwOoCD0xEKRXOL9oDk06uJBCv6tkSlJFeE+FJKsaK0fAgR2u4jnboL0sCPAefQCn7SIZDvUxRJwmw==", "id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:34.770367"], ["id", 18]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 15:56:36 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"MTWSiVYNvOLcmSW0W6KWPli7zWzwVEiwf/grHq8T/HHFGXdWkusRXNZPvsh4joWWCmWtLDC8NUX9Yr1bQ0iZCw==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:56:36.751774"], ["id", 23]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:56:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"3tGoZq0cfqIVsguB8LFSwNEHoB1p2+3ZeJRwRJPmWTYq/U25afrTHB9kkP3TnUFog9nAXakzkCz6DuYBf708TA==", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:57:18.775470"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:19 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"l/d74amSqKs2xopWmeyH69Z0FVnHj8kY0G7NGv3KjdJj254+bXQFFTwQESq6wJRDhKp1GQdntO1S9FtfEZHoqA==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:57:19.790909"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 20ms (Views: 18.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:28 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"KHl5ooJM9xGWzvDrT1YwP0jIu8j5/GymNQWUzt9ePmHcVZx9Rqpar5wYa5dseiOXGhbbiDkUEVO3nwKLMwVbGw==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:57:28.997735"], ["id", 23]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:57:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:40 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"ahEhQ/Ob7euEXV2kRFqfBycudccIS0TsBuB0mD4eL0WePcScN31AVY6LxthndoyvdfAVh8ijORmEeuLd0kVKPw==", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:57:40.920454"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:41 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"COMtsLBqhPSxK1LK0CKZP59mk7/irT95q+hI7wdvrbP8z8hvdIwpSrv9ybbzDoqXzbjz/yJFQowpct6q6zTIyQ==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:57:41.929809"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:43 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Dyj693SImsaQazQntHVWcaksS5nw9zy+ScKHjdFk2a/7BB8osG43eJq9r1uXWUXZ+/Ir2TAfQUvLWBHIPT+81Q==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:57:43.413818"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:45 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"8M3Jgkws4ms7FRyfw6+xZDULtTXvg0Aw1ppF3+3mBHcE4SxdiMpP1THDh+Pgg6LMZ9XVdS9rPcVUANOaAb1hDQ==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:57:45.371110"], ["id", 20]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:46 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"A+qg5kOZGWRWPk81W0uNubDRjrczijFi0dMOtu8n8cD3xkU5h3+02lzo1El4Z54R4g/u9/NiTJdTSZjzA3yUug==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:57:46.696045"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:57:49 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"exML65gCw0tE24QwwX0iHEzRCDEM4hcZhzjlwY5q082PP+40XORu9U4NH0ziUTG0Hg9occwKauwFonOEYjG2tw==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:57:49.524465"], ["id", 19]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:57:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:09 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"+HIWKfqVWONGYXv+Eg15gq/aeZiRz4R664TELVLZlkwMXvP2PnP1XUy34IIxIWoq/QQZ2FEn+Y9pHlJovoLzNg==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:58:09.346049"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:10 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"RxpoH0GqW6y3BmOx0SFiXE2vgPlrxagyVj7uknBZa1SzNo3AhUz2Er3Q+M3yDXH0H3Hguast1cfUpHjXnAIOLg==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:58:10.187061"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:16 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"ih6VB1agrzIF6UyeSlvgWAajbHjKXr//hMYs0f2XcZB+MnDYkkYCjA8/1+Jpd/PwVH0MOAq2wgoGXLqUEcwU6g==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:58:16.676716"], ["id", 19]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:17 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"5WLpT669Vy6Mbk4ez6BeUxA/MglACaj9wwSh/ti1EhYRTgyQalv6kIa41WLsjE37QuFSSYDh1QhBnje7NO53bA==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:58:17.500191"], ["id", 19]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"W/F80H0x4ilXS2xn5BNRkP1fATJWoACUMWffdhfujqyv3ZkPuddPl12d9xvHP0I4r4FhcpZIfWGz/Ukz+7Xr1g==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:58:18.488111"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/18/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:19 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"LQHsj+GawZz/bRe6EmnhJ6K1D9CqgNl5HJDmtfKHbpvZLQlQJXxsIvW7jMYxRfKP8GtvkGpopIyeCnDwHtwL4Q==", "id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:58:19.699767"], ["id", 18]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/18/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:20 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Kml+WcwTccJIdYy1RyAO8rHpKQ8/kJVIZ1Yc7qJKXMzeRZuGCPXcfEKjF8lkDB1a4zdJT/946L3lzIqrThE5tg==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:58:20.224102"], ["id", 18]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 18ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/22/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:21 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"W8TelUMRuKXv60YhIi+BNKXuRV32CzFDGlq0t1VW8KOv6DtKh/cVG+U93V0BA5Kc9zAlHTbjTLaYwCLyuQ2V2Q==", "id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:58:21.119360"], ["id", 22]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 1.0ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 15:58:21 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"MTm8BqYTnhFlXlH4uoHpuTBLy3mD8iN1lu6kztddh6vFFVnZYvUzr2+IyoSZrfoRYpWrOUMaXoAUdDKLOwbi0Q==", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-22"], ["updated_at", "2017-09-22 22:58:21.845660"], ["id", 21]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:58:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:59:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-22 15:59:39 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"jWcVdo5wtJDhq6G+GCgrudETwAhrrI/nPSagCCq90xh5S/CpSpYZLut9OsI7BDgRg82gSKtE8hK/vDZNxua2Yg==", "id"=>"19"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:59:39.123131"], ["id", 19]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:59:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/22/mark_complete" for 127.0.0.1 at 2017-09-22 15:59:41 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"e19vwJ7MZlRdJ7dcF2REW6yG3FED3VEGvSsgvplLQh+Pc4ofWirL6lfxLCA0SFfz/li8EcM1LPM/sbb7dRAnZQ==", "id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:59:41.884518"], ["id", 22]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:59:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/21/mark_complete" for 127.0.0.1 at 2017-09-22 15:59:46 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"XVQ0eUpJcMY3w/6Yn2OT75FTee/s6Dn6emVvFmI/01GpeNGmjq/deD0VZeS8T4BHw40ZrywARA/4//lTjmS2Kw==", "id"=>"21"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:59:46.685134"], ["id", 21]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:59:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/23/mark_complete" for 127.0.0.1 at 2017-09-22 15:59:47 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"oZPcAIWTcD6D24F4nW9k5wJt20GySQTKDu43OJdpkq5VvznfQXXdgIkNGgS+Q3dPULO7AXKheT+MdKF9ezL31A==", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-22 22:59:47.491219"], ["id", 23]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-22 15:59:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-28 18:10:20 -0700 +  (10.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (6.9ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (35.5ms) +Completed 200 OK in 250ms (Views: 214.6ms | ActiveRecord: 23.7ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-28 18:10:30 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"edJtbNyGWyCiDLeU9lHmTLi5TU3paBeVubTPhLfBkSeN/oizGGD2nqjaLOjVffXk6mctDSmAamA7LlnBW5r0XQ==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (5.6ms) BEGIN + SQL (28.6ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-29"], ["updated_at", "2017-09-29 01:10:30.194986"], ["id", 20]] +  (1.5ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 43ms (ActiveRecord: 36.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-28 18:10:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (16.8ms) +Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-28 18:10:33 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"FmWFjpc5hmNofHyCOdvb+DY0alhmQb5LiGSJXWN5uPfiSWBRU98r3WKq5/4a98hQZOoKGKapw74K/h8YjyLdjQ==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-29 01:10:33.242113"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-28 18:10:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/23" for 127.0.0.1 at 2017-09-28 18:10:38 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"S12xNOgjAk5sH134N0PIurj34uu+/oi0abCUBvCBG1q/cVTrLMWv8GbJxoQUb9sS6imCq34W9UHrKgJDHNp+IA==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 23], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 23]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-28 18:10:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/18/edit" for 127.0.0.1 at 2017-09-28 18:10:44 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (21.0ms) + Rendered tasks/edit.html.erb within layouts/application (23.3ms) +Completed 200 OK in 53ms (Views: 49.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/18" for 127.0.0.1 at 2017-09-28 18:10:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"xmWWmZMnoWaHbC27XdPcV4p7e9+/Tz+hd9p6eMZq4frN4gHPTX6kT35Qc7gWHT7bIbwC2GDLlhdhz10PXlIhzw==", "task"=>{"name"=>"Complete Wave 3", "description"=>"dfasfasffsdafasfasfasfsafasfadsfasfasfasfsafadfasdfafadsfasfasf", "completion_date"=>""}, "commit"=>"Edit Task", "id"=>"18"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-28 18:10:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.3ms) + + From 7fd90657e94497bf9af5e66fdcc460783d0bcfa0 Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Fri, 29 Sep 2017 22:31:10 -0700 Subject: [PATCH 07/16] delete confirmation added --- app/views/layouts/application.html.erb | 2 +- app/views/tasks/index.html.erb | 10 +- log/development.log | 380 +++++++++++++++++++++++++ 3 files changed, 387 insertions(+), 5 deletions(-) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 881b009c0..91745c3da 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,7 +9,7 @@ -

      Params are: <%= params %>

      +

      <%= link_to("TASKLIST", root_path, alt: 'homepage')%>

      diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 84912b508..63a6b30fa 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -8,14 +8,16 @@
    3. <%if task.completion_date == nil%> <%= link_to(task.name, task_path(task.id), alt: 'link to task#show')%> - <%= link_to "Edit", edit_task_path(task.id) %> - <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> <%= button_to "Mark Complete", task_complete_path(task.id), method: :patch %> + <%= link_to "Edit", edit_task_path(task.id) %> | + + <%= link_to 'Delete', delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure?"} %> <% else %> <%= link_to(task.name, task_path(task.id), alt: 'link to task#show', class: 'striked')%> - <%= link_to "Edit", edit_task_path(task.id) %> - <%= link_to "Delete", delete_task_path(task.id), method: :delete, alt: 'link to task#destroy' %> <%= button_to "Completed #{task.completion_date}", task_complete_path(task.id), method: :patch %> + <%= link_to "Edit", edit_task_path(task.id) %> | + + <%= link_to 'Delete', delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure?"} %> <%end %>
    4. <% end %> diff --git a/log/development.log b/log/development.log index 3c2e7e478..c4a6d2057 100644 --- a/log/development.log +++ b/log/development.log @@ -13010,3 +13010,383 @@ Processing by TasksController#index as HTML Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.3ms) +Started GET "/tasks" for 127.0.0.1 at 2017-09-29 00:21:41 -0700 +  (0.5ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (12.0ms) +Completed 200 OK in 205ms (Views: 190.4ms | ActiveRecord: 3.7ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 00:21:44 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"7rfJnzJIsKjLUgL+omjyjTbWWSxx25a0zyznSRSnewkamyxA9q4dFsGEmYKBROElZAg5bLEz60FNtnEM+Pwecw==", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-29"], ["updated_at", "2017-09-29 07:21:44.844109"], ["id", 20]] +  (0.4ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 16ms (ActiveRecord: 5.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:21:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 00:21:46 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"sWJHWrSBxIOk9K8/xRASA9q/+M+qYX8hac/+MccE36pFTqKFcGdpPa4iNEPmPAGriGGYj2qJAtTrVWh0K1+60A==", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-29 07:21:46.987731"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:21:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-29 00:21:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (13.1ms) + Rendered tasks/new.html.erb within layouts/application (14.9ms) +Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:21:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:21:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:22:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:27:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 00:27:09 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"8ziIBEFv3s/etUuqS5EWmXXy/0Hy0GyIyoFQS9SBjWsHFG3bhYlzcdRj0NZovQUxJyyfATI4EX1IG8YOONroEQ==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-29"], ["updated_at", "2017-09-29 07:27:09.255260"], ["id", 20]] +  (5.6ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:27:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 00:27:10 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"fjY6KQR5lWYcJWCaNhA9BkqoP25dFlSn7aXQVEhTwcmKGt/2wJ842Bbz++YVPC6uGHZfLp3+KVJvP0YRpAiksw==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-29 07:27:10.383087"], ["id", 20]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:27:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 00:27:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"UJ94ulwN8ZpQEtPMGw6960uDH2TSN6RbIHJJR0M/xr+ks51lmOtcJFrESLA4Iq5DGV1/JBLf2a6i6N8Cr2SjxQ==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-29"], ["updated_at", "2017-09-29 07:27:18.425881"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:27:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 00:27:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"MOuILG0T+SEhsEVvewyrRL4USBwRb8qkcXwtcJIu6cnEx23zqfVUnytm3hNYILjs7MooXNGHt1Hz5rs1fnWMsw==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-29 07:27:22.049490"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:27:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 00:28:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +task_path(task.id) | link_to "Delete", delete_task_path(task + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +h(task.id) | link_to "Delete", delete_task_path(task.id), me + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +e", delete_task_path(task.id), method: :delete, alt: 'link t + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +task_path(task.id) | link_to "Delete", delete_task_path(task + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected ',', expecting ')' +h(task.id) | link_to "Delete", delete_task_path(task.id), me + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected ',', expecting ')' +e", delete_task_path(task.id), method: :delete, alt: 'link t + ^): + +app/views/tasks/index.html.erb:12: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +app/views/tasks/index.html.erb:12: syntax error, unexpected ',', expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' +app/views/tasks/index.html.erb:16: syntax error, unexpected ',', expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected ',', expecting ')' +Started GET "/" for 127.0.0.1 at 2017-09-29 00:28:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 22:02:20 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"2arDQBd1pr56bEEAxUnP5C77RdPivDnrtho0Z0YMQ2Mthiaf05MLAHC62nzmZdxMfCUlkyJURB40gKIiqlcmGQ==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 05:02:20.838187"], ["id", 20]] +  (12.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 16ms (ActiveRecord: 12.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:02:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 22:02:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"RE1yYleeIAgyG6BqBFnxtNYqfWYXodxqJrPTMKONnX6wYZe9k3iNtjjNOxYndeIchPQdJtdJoZ+kKUV1T9b4BA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 05:02:24.353886"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:02:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-29 22:04:36 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/new.html.erb within layouts/application (3.6ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-29 22:04:44 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9IW/+X+ax1xKaAoI9h8y9zoHmDDz28f/KztSazNvAChhal5lFrt0LPpb8PovT5gcEL+ind3rnk3m+1tajBu4aw==", "task"=>{"name"=>"delete test", "description"=>"dfafafafaafa", "completion_date"=>""}, "commit"=>"Add New Task"} +  (0.1ms) BEGIN + SQL (18.0ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "delete test"], ["description", "dfafafafaafa"], ["created_at", "2017-09-30 05:04:44.410212"], ["updated_at", "2017-09-30 05:04:44.410212"]] +  (0.3ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 21ms (ActiveRecord: 18.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:04:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/24" for 127.0.0.1 at 2017-09-29 22:04:48 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"bd3TExoJR7sEtv6XMxiXc3TEtY/jsWr/WNcQyQwFE3eZ8TbM3u/qBQ5gZesQNITbJhrVzyNZFwraTYaM4F52DQ==", "id"=>"24"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 24], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 24]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:04:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:08:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:08:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:12:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (No route matches {:action=>"delete", :controller=>"tasks", :id=>20}): + 11: <%= button_to "Mark Complete", task_complete_path(task.id), method: :patch %> + 12: <%= link_to "Edit", edit_task_path(task.id) %> | + 13: + 14: <%= link_to 'Delete',url_for(action: :delete,id: task.id),method: :delete, data: {confirm: "Are you sure?"} %> + 15: <% else %> + 16: <%= link_to(task.name, task_path(task.id), alt: 'link to task#show', class: 'striked')%> + 17: <%= button_to "Completed #{task.completion_date}", task_complete_path(task.id), method: :patch %> + +app/views/tasks/index.html.erb:14:in `block in _app_views_tasks_index_html_erb__37960741738189440_70241105039400' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__37960741738189440_70241105039400' +Started GET "/" for 127.0.0.1 at 2017-09-29 22:12:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-29 22:13:03 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-29 22:13:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vt8/Ed0L/IqL4mo1CbTPDsvq35bt6+wHM2AYllr+T8PDMN6NtCpP+jvRkMfQ5GXl4VLlO8PbtbX+oBGn5Yr3gA==", "task"=>{"name"=>"delete test", "description"=>"dfasfafadfads", "completion_date"=>""}, "commit"=>"Add New Task"} +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "delete test"], ["description", "dfasfafadfads"], ["created_at", "2017-09-30 05:13:10.386111"], ["updated_at", "2017-09-30 05:13:10.386111"]] +  (5.5ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 8ms (ActiveRecord: 5.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:13:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/25" for 127.0.0.1 at 2017-09-29 22:13:17 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"n4WN/UxT3bpmlsoYXHpI72g4TSFAZ4JPvjeYbuz0jPxrqWgiiLVwBGxAUWR/VltHOuYtYYCP/7o8rQ4rAK/phg==", "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 25], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 25]] +  (1.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 22:13:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + From e0f08dce24f868fb36061f7fb654b26643393642 Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Fri, 29 Sep 2017 23:42:17 -0700 Subject: [PATCH 08/16] edit form text_area added for description and updated delete verification message --- app/assets/stylesheets/application.css | 9 +- app/controllers/tasks_controller.rb | 4 +- app/views/tasks/_form.html.erb | 6 +- app/views/tasks/index.html.erb | 26 +- log/development.log | 1020 ++++++++++++++++++++++++ 5 files changed, 1045 insertions(+), 20 deletions(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 5e4a36923..197af8c48 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -27,14 +27,18 @@ header a { margin-bottom: 10px; } -.tasklist-options, .your-tasks-container { +/*.tasklist-options, .your-tasks-container { display: inline-block; -} +}*/ .tasklist-options { float: left; } +.task-options-row { + display: inline-block; +} + .your-tasks-container { float: left; border-radius: 10px; @@ -46,7 +50,6 @@ header a { } footer { - background: gray; width: 100%; left: 0; bottom: 0; diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index e65098938..bf4b36e5d 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -12,7 +12,7 @@ class TasksController < ApplicationController # end def index - @tasks = Task.order(:name) + @tasks = Task.order(:created_at) end def show @@ -78,7 +78,7 @@ def mark_complete else task.completion_date = nil end - + if task.save redirect_to root_path end diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index e49098616..9ddc4a7fb 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -3,10 +3,6 @@ <%= f.text_field :name %> <%= f.label :description %> - <%= f.text_field :description %> - - <%= f.label :completion_date %> - <%= f.text_field :completion_date%> - + <%= f.text_area(:description, size: '50x5') %> <%= f.submit button%> <% end %> diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 63a6b30fa..c2b864c99 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -7,17 +7,23 @@ <% @tasks.each do |task| %>
    5. <%if task.completion_date == nil%> - <%= link_to(task.name, task_path(task.id), alt: 'link to task#show')%> - <%= button_to "Mark Complete", task_complete_path(task.id), method: :patch %> - <%= link_to "Edit", edit_task_path(task.id) %> | - - <%= link_to 'Delete', delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure?"} %> + <%= link_to(task.name, task_path(task.id), alt: 'link to task#show')%> +
      +
      + <%= link_to "Mark Complete", task_complete_path(task.id), method: :patch %> + <%= link_to "Edit", edit_task_path(task.id) %> | + + <%= link_to 'Delete', delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure you would like to delete this task?"} %> +
      <% else %> - <%= link_to(task.name, task_path(task.id), alt: 'link to task#show', class: 'striked')%> - <%= button_to "Completed #{task.completion_date}", task_complete_path(task.id), method: :patch %> - <%= link_to "Edit", edit_task_path(task.id) %> | - - <%= link_to 'Delete', delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure?"} %> + <%= link_to(task.name, task_path(task.id), alt: 'link to task#show', class: 'striked')%> +
      +
      + <%= link_to "Completed #{task.completion_date}", task_complete_path(task.id), method: :patch %> + <%= link_to "Edit", edit_task_path(task.id) %> | + + <%= link_to 'Delete', delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure you would like to delete this task?"} %> +
      <%end %>
    6. <% end %> diff --git a/log/development.log b/log/development.log index c4a6d2057..93a9f6490 100644 --- a/log/development.log +++ b/log/development.log @@ -13390,3 +13390,1023 @@ Processing by TasksController#index as HTML Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.2ms) +Started GET "/" for 127.0.0.1 at 2017-09-29 23:04:26 -0700 +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (15.2ms) +Completed 200 OK in 231ms (Views: 214.5ms | ActiveRecord: 4.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:15:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (12.7ms) +Completed 200 OK in 101ms (Views: 94.4ms | ActiveRecord: 4.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:16:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:16:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:17:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:18:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:18:19 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"JHE4gF4xGziCQPJ0+vEQSxSi6WoTDhj7awvR8j79TKXQXd1fmte2hoiWaQjZ3QPjRnyJKtPmZQ7pkUe30qYp3w==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:18:19.591085"], ["id", 20]] +  (5.7ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 12ms (ActiveRecord: 6.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:18:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:18:22 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"d7FWM01dRI409U9IJchOSmKRAkTpwaArCFOSADUZNNmDnbPsibvpMD4j1DQG5F3iME9iBCkp3d6KyQRF2UJRow==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:18:22.796043"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:18:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:18:23 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"KhNT8i6BaVf/0g6O+NqNEBLOHle6vdvSOgXk4mikYH7eP7Yt6mfE6fUElfLb9p64QBB+F3pVpie4n3KnhP8FBA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:18:23.667111"], ["id", 20]] +  (0.4ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:18:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:18:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"jXHaiy9TUvIv6fBY6CKAlZrC7UyEJAiFjFRYYMX5jLh5XT9U67X/TCU/ayTLDpM9yByNDETMdXAOzs4lKaLpwg==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:18:24.387788"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:18:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:19:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:19:10 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"ardNor6C75eryzWZlQjp6X/wTe7wkZb7mupgnhYvq9qem6h9emRCKaEdruW2JPpBLS4trjB56w4YcPbb+nTOoA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:19:10.265723"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:19:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:19:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 21.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:19:53 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"l5sSsy/AVx7Q2Hi4OjE43yY0NI/LnThNZOy8ImRM6gFjt/ds6yb6oNoO48QZHSt3dOpUzwt1RbjmdipniBePew==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:19:53.109751"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:19:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:19:55 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"x5KksxRLpZ2zdwWLHWFpYRvJjvl7GQgf5R9FRh6EkYMzvkFs0K0II7mhnvc+TXrJSRfuubvxdepnhdMD8t/0+Q==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:19:55.007782"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:19:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:20:00 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Y4cegP31hAGLhmxnCjjwes9dhI/aqbSxe7pjuqsA2zmXq/tfORMpv4FQ9xspFOPSnYPkzxpByUT5IPX/R1u+Qw==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:20:00.408970"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:20:18 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"nTd+ypZ7mU+n8iR1O8WQDC2fo4RSzoABFOapNWfYmTJpG5sVUp008a0kvwkY6YOkf0HDxJIm/fSWfD9wi4P8SA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:20:18.266945"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:20:19 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"nDtXjB4dcv2qbXssX17qOLdbCqRKcU2eO9Ne7OgVtHtoF7JT2vvfQ6C74FB8cvmQ5YVq5IqZMGu5ScipBE7RAQ==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:20:19.729747"], ["id", 20]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:20:20 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"PI8LU3kLQdBpwCLn3CpPKsYe7LFrejnRnjFc4NcD1z3Io+6Mve3sbmMWuZv/BlyClMCM8auSRCQcq8qlO1iyRw==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:20:20.527904"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:20:27 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"ZR4Fq23XP+Ir0QaPmE0uDjtOWP0w6CNVl7d/Qnx6ejGRMuB0qTGSXCEHnfO7YT2maZA4vfAAXqAVLekHkCEfSw==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:20:27.048274"], ["id", 20]] +  (6.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 10ms (ActiveRecord: 6.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:20:52 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"KYH1gLy7rOk5wSA5hy0anEgqNvX1zEQ9JHjWeGeIQt3drRBfeF0BVzMXu0WkAQk0GvRWtTUkOcim4kA9i9Mnpw==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:20:52.334607"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:20:56 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"BBjVjFhQS7yxz4iAoecw12mSt2Tsf/YmbVIpunG628XwNDBTnLbmArsZE/yCyyN/O0zXJCyXi9PvyL//neG+vw==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:20:56.480252"], ["id", 20]] +  (0.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:20:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:21:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected $undefined +ppend=( link_to "Completed #{\(task.completion_date\)}", tas + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected $undefined +eted #{\(task.completion_date\)}", task_complete_path(task.i + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected tCONSTANT, expecting ')' +_buffer.append=( link_to "Edit", edit_task_path(task.id) );@ + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:24: syntax error, unexpected tCONSTANT, expecting ')' +uffer.append=( link_to "Delete", delete_task_path(task.id), + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:25: syntax error, unexpected tCONSTANT, expecting ')' + :delete, data: {confirm: "Are you sure you would like to de + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:25: unterminated string meets end of file +/Users/janedrozo/Desktop/TaskList/app/views/tasks/index.html.erb:25: syntax error, unexpected end-of-input, expecting ')'): + +app/views/tasks/index.html.erb:22: syntax error, unexpected $undefined +app/views/tasks/index.html.erb:22: syntax error, unexpected $undefined +app/views/tasks/index.html.erb:23: syntax error, unexpected tCONSTANT, expecting ')' +app/views/tasks/index.html.erb:24: syntax error, unexpected tCONSTANT, expecting ')' +app/views/tasks/index.html.erb:25: syntax error, unexpected tCONSTANT, expecting ')' +app/views/tasks/index.html.erb:25: unterminated string meets end of file +app/views/tasks/index.html.erb:25: syntax error, unexpected end-of-input, expecting ')' +Started GET "/" for 127.0.0.1 at 2017-09-29 23:21:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:21:26 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Z8A18WoIX6kRgmQbyUyJH92XOfXusyicCsCd/WitR2iT7NAuru7yFxtU/2fqYJq3j0lZtS5bVWmIWgu4hPYiEg==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:21:26.856081"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:21:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:21:28 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"VmboGx3BuGMERfJXiMmTcwrY8baQTTcOCxtYo60uiy6iSg3E2ScV3Q6TaSur5YDbWAaR9lClSvuJgc7mQXXuVA==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:21:28.408038"], ["id", 20]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:21:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:21:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:23:48 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"k828Pk8ZgDlfY5+Gpzi7lMgsyZXuvyYbBWLrCVGXzrBn4Vnhi/8th1W1BPqEFKg8mvKp1S5XW+6H+H1Mvcyryg==", "id"=>"20"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:23:48.446213"], ["id", 20]] +  (0.3ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.0ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:23:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/20/mark_complete" for 127.0.0.1 at 2017-09-29 23:23:49 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"5s6JPriuasFcSapVbA8mlDrGaKZqSBigv5ytXVBCn1oS4mzhfEjHf1afMSlPIzU8aBgI5qqgZVU9BjsYvBn6IA==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:23:49.801477"], ["id", 20]] +  (1.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:23:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/19/mark_complete" for 127.0.0.1 at 2017-09-29 23:23:50 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"wakShNxbpge3lB4ndFORXhfFd9o+2iEYmX/sshpptl81hfdbGL0Lub1ChVtXf4L2RRsXmv4yXO0b5Xr39jLTJQ==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:23:50.850761"], ["id", 19]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:23:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/18/mark_complete" for 127.0.0.1 at 2017-09-29 23:23:52 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"jX+hlUugEV7Hxe6aITdQZPkTRDreQmvrZdBSaH9hYbx5U0RKj0a84M0TdeYCG0PMq80keh6qFh7nSsQtkzoExg==", "id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:23:52.671943"], ["id", 18]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:23:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18" for 127.0.0.1 at 2017-09-29 23:23:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 14.5ms | ActiveRecord: 0.2ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:23:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:24:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/19" for 127.0.0.1 at 2017-09-29 23:24:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 15.1ms | ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:24:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:26:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/22/mark_complete" for 127.0.0.1 at 2017-09-29 23:28:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"0yrRO0Su/9dZX2UTPcVGFvTK32oJq+GslzCvHOlafNgnBjTkgEhSaVOJ/m8e6VW+phS/KslDnFkVqjlZBQEZog==", "id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.2ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:28:24.168615"], ["id", 22]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:28:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:29:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (11.1ms) +Completed 200 OK in 26ms (Views: 19.9ms | ActiveRecord: 3.2ms) + + +Started DELETE "/tasks/18" for 127.0.0.1 at 2017-09-29 23:30:04 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"sA/2bgHGIA9qed+IKWAUNCMyE02TRMCiYTLSKkmKMGtEIxOxxSCNsWCvRPQKTAeccexzDVOsvVfjqERvpdFVEQ==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 18], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 18]] +  (1.1ms) COMMIT +  (0.1ms) BEGIN +  (0.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:30:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/19" for 127.0.0.1 at 2017-09-29 23:30:06 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"4Syc/YC/wjPrDa0O+pXr8f7Oz2xDjs6UAAzQsTWqMeIVAHkiRFlvjeHbNnLZufhZrBCvLINms2GClkb02fFUmA==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 19], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 19]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:30:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.4ms) + + +Started DELETE "/tasks/20" for 127.0.0.1 at 2017-09-29 23:30:08 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"cjxA/+xxTvvx9gpVQNZj6CDlyHg3azaA3r+/+GqoyL+GEKUgKJfjRfsgkSlj+nBAcjuoOPeDS3VcJSm9hvOtxQ==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 20], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 20]] +  (0.2ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:30:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.2ms) +Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/21" for 127.0.0.1 at 2017-09-29 23:30:10 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ad8zuqEdwmrHp2Fa9UK0chCvzUpvToVw6C4SWY/FY3Wd89ZlZftv1M1x+ibWbqfaQnGtCq+m+IVqtIQcY54GDw==", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 21], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 21]] +  (1.0ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:30:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/22" for 127.0.0.1 at 2017-09-29 23:30:12 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"JBsANjjjra769ddDYEDvfI8LISoGy1udUdhgNZ1uQgfQN+Xp/AUAEPAjTD9DbPzU3dVBasYjJmjTQvZwcTUnfQ==", "id"=>"22"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 22], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = $1 [["id", 22]] +  (0.9ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:30:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-29 23:30:15 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (14.2ms) + Rendered tasks/new.html.erb within layouts/application (16.1ms) +Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-29 23:31:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.3ms) + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 16ms (Views: 14.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-29 23:31:57 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UjnrTFRfhNY//UzsxmjnR5+0RCll2iq6XwXEcSnFGcSmFQ6TkLkpaDUr15DlRPTvzWokaaUyV0/dn1I0xZ58vg==", "task"=>{"name"=>"Clean Room", "description"=>"Nulla eget massa at magna aliquam convallis. Proin pharetra urna ac lorem tincidunt sagittis. Pellentesque mollis viverra erat, quis tincidunt diam tristique sit amet. Sed suscipit elit semper porta tincidunt. Ut maximus mollis purus, a iaculis ex euismod iaculis. Integer eu orci quis quam facilisis efficitur. Mauris ultrices sagittis auctor. Phasellus blandit ex quis eros pulvinar viverra quis non massa."}, "commit"=>"Add New Task"} +  (0.1ms) BEGIN + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Clean Room"], ["description", "Nulla eget massa at magna aliquam convallis. Proin pharetra urna ac lorem tincidunt sagittis. Pellentesque mollis viverra erat, quis tincidunt diam tristique sit amet. Sed suscipit elit semper porta tincidunt. Ut maximus mollis purus, a iaculis ex euismod iaculis. Integer eu orci quis quam facilisis efficitur. Mauris ultrices sagittis auctor. Phasellus blandit ex quis eros pulvinar viverra quis non massa."], ["created_at", "2017-09-30 06:31:57.253369"], ["updated_at", "2017-09-30 06:31:57.253369"]] +  (5.9ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:31:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/26/mark_complete" for 127.0.0.1 at 2017-09-29 23:31:59 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"2i1+HRmQS2/drW9/DqNeaX2A8QNboA2fFAx54SfG27QuAZvC3Xbm0dd79AMtj03BL16RQ5tIcGqWlu+ky52+zg==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 26], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:31:59.808310"], ["id", 26]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:31:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/26/mark_complete" for 127.0.0.1 at 2017-09-29 23:32:01 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"/VQs6AtiEzDdkpZ/LeuL9wT4VVVlOrOAhdWOVqxxdcsJeMk3z4S+jtdEDQMOx5hfViY1FaXSznUHTxgTQCoQsQ==", "id"=>"26"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 26], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:32:01.636035"], ["id", 26]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:32:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-29 23:32:07 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.6ms) + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-29 23:32:19 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"5BsJ5whepPcrzXCZjTel3aIOYob74ICxBfc8o1QBuW5x9Oh7YX8Xh5v+imtUZw82iLZYK9XQ2QPINzWS63UBLQ==", "task"=>{"name"=>"Bathe Oreo and Nugget", "description"=>"Nulla eget massa at magna aliquam convallis. Proin pharetra urna ac lorem tincidunt sagittis. Pellentesque mollis viverra erat, quis tincidunt diam tristique sit amet. Sed suscipit elit semper porta tincidunt. Ut maximus mollis purus, a iaculis ex euismod iaculis. Integer eu orci quis quam facilisis efficitur. Mauris ultrices sagittis auctor. Phasellus blandit ex quis eros pulvinar viverra quis non massa."}, "commit"=>"Add New Task"} +  (0.1ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Bathe Oreo and Nugget"], ["description", "Nulla eget massa at magna aliquam convallis. Proin pharetra urna ac lorem tincidunt sagittis. Pellentesque mollis viverra erat, quis tincidunt diam tristique sit amet. Sed suscipit elit semper porta tincidunt. Ut maximus mollis purus, a iaculis ex euismod iaculis. Integer eu orci quis quam facilisis efficitur. Mauris ultrices sagittis auctor. Phasellus blandit ex quis eros pulvinar viverra quis non massa."], ["created_at", "2017-09-30 06:32:19.627842"], ["updated_at", "2017-09-30 06:32:19.627842"]] +  (6.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.3ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:32:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27/mark_complete" for 127.0.0.1 at 2017-09-29 23:32:24 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"QVnK7BcKFQgDjIfk5sfxbqldKd3xx17ArXORppbQijO1dS8z0+y4tglaHJjF6+LG+4NJnTEvIzUv6QfjeovvSQ==", "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 27], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:32:24.395816"], ["id", 27]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:32:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.0ms) +Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27/mark_complete" for 127.0.0.1 at 2017-09-29 23:32:25 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"+PrbwOH5FIMMrCg+IS1EqmWIZK6GLfzxduW/x2YzWlYM1j4fJR+5PQZ6s0ICAVcCN1YE7kbFgQT0fymCimg/LA==", "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 27], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.2ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:32:25.321964"], ["id", 27]] +  (1.2ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:32:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-29 23:32:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/new.html.erb within layouts/application (4.0ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-29 23:32:41 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"NcxhTODyVBt9DyVuKL/rFyCTiO22F/M+QRb4dJ8xKuqgI4DQidPna80835zx70H8CiuyQJgnqoyM1vFFIEWSqQ==", "task"=>{"name"=>"Wave 4", "description"=>"Nulla eget massa at magna aliquam convallis. Proin pharetra urna ac lorem tincidunt sagittis. Pellentesque mollis viverra erat, quis tincidunt diam tristique sit amet. Sed suscipit elit semper porta tincidunt. Ut maximus mollis purus, a iaculis ex euismod iaculis. Integer eu orci quis quam facilisis efficitur. Mauris ultrices sagittis auctor. Phasellus blandit ex quis eros pulvinar viverra quis non massa."}, "commit"=>"Add New Task"} +  (0.2ms) BEGIN + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "id" [["name", "Wave 4"], ["description", "Nulla eget massa at magna aliquam convallis. Proin pharetra urna ac lorem tincidunt sagittis. Pellentesque mollis viverra erat, quis tincidunt diam tristique sit amet. Sed suscipit elit semper porta tincidunt. Ut maximus mollis purus, a iaculis ex euismod iaculis. Integer eu orci quis quam facilisis efficitur. Mauris ultrices sagittis auctor. Phasellus blandit ex quis eros pulvinar viverra quis non massa."], ["created_at", "2017-09-30 06:32:41.377705"], ["updated_at", "2017-09-30 06:32:41.377705"]] +  (5.7ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 9ms (ActiveRecord: 6.1ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:32:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/28/mark_complete" for 127.0.0.1 at 2017-09-29 23:32:43 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"JWYyJHakgWw6XD0A1oM1+ZJ9V6oA2QYHBROfNd2mM+LRStf7skIs0jCKpnz1ryZRwKM36sAxe/KHiQlwMf1WmA==", "id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", "2017-09-30"], ["updated_at", "2017-09-30 06:32:43.034976"], ["id", 28]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:32:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 20.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/28/mark_complete" for 127.0.0.1 at 2017-09-29 23:32:44 -0700 +Processing by TasksController#mark_complete as HTML + Parameters: {"authenticity_token"=>"Vxx12lUGxdX2R7Q29ItF3gjLFMJe2fZmr24W5LnyUJijMJAFkeBoa/yRL0rXp1Z2WhV0gp4xi5Mt9IChVak14g==", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] +  (0.1ms) BEGIN + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = $1, "updated_at" = $2 WHERE "tasks"."id" = $3 [["completion_date", nil], ["updated_at", "2017-09-30 06:32:44.949573"], ["id", 28]] +  (1.0ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:32:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:38:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/28/edit" for 127.0.0.1 at 2017-09-29 23:38:17 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (0.9ms) + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.4ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/_form.html.erb:6: syntax error, unexpected ',', expecting ')' +d=( f.text_area (:description, size: '50x10') );@output_buff + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/_form.html.erb:6: syntax error, unexpected ')', expecting keyword_end +:description, size: '50x10') );@output_buffer.safe_append=' + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/_form.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/_form.html.erb:6: syntax error, unexpected ',', expecting ')' +app/views/tasks/_form.html.erb:6: syntax error, unexpected ')', expecting keyword_end +app/views/tasks/_form.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2538814600528484065_70317086720060' +Started GET "/tasks/28/edit" for 127.0.0.1 at 2017-09-29 23:38:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (0.6ms) + Rendered tasks/edit.html.erb within layouts/application (1.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.3ms) + + + +SyntaxError (/Users/janedrozo/Desktop/TaskList/app/views/tasks/_form.html.erb:6: syntax error, unexpected ',', expecting ')' +d=( f.text_area (:description, size: '50x10') );@output_buff + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/_form.html.erb:6: syntax error, unexpected ')', expecting keyword_end +:description, size: '50x10') );@output_buffer.safe_append=' + ^ +/Users/janedrozo/Desktop/TaskList/app/views/tasks/_form.html.erb:10: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/_form.html.erb:6: syntax error, unexpected ',', expecting ')' +app/views/tasks/_form.html.erb:6: syntax error, unexpected ')', expecting keyword_end +app/views/tasks/_form.html.erb:10: syntax error, unexpected keyword_ensure, expecting end-of-input +app/views/tasks/edit.html.erb:4:in `_app_views_tasks_edit_html_erb___2538814600528484065_70317067632460' +Started GET "/tasks/28/edit" for 127.0.0.1 at 2017-09-29 23:38:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.3ms) + Rendered tasks/edit.html.erb within layouts/application (4.7ms) +Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for 127.0.0.1 at 2017-09-29 23:39:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.4ms) + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 19ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for 127.0.0.1 at 2017-09-29 23:40:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.4ms) + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for 127.0.0.1 at 2017-09-29 23:40:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.3ms) + Rendered tasks/edit.html.erb within layouts/application (2.9ms) +Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for 127.0.0.1 at 2017-09-29 23:40:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.4ms) + Rendered tasks/edit.html.erb within layouts/application (2.7ms) +Completed 200 OK in 18ms (Views: 15.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28" for 127.0.0.1 at 2017-09-29 23:40:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Exqn/eTY+dXN4ij75pdhHiTyFddWwUWKDORTftHQ8ZvnNkIiID5Ua8c0s4fFu3K2dix1l5YpOH+OfsU7PYuU4Q==", "task"=>{"name"=>"Wave 4", "description"=>"Nulla eget massa at magna aliquam convallis. Proin pharetra urna ac lorem tincidunt sagittis. Pellentesque mollis viverra erat, quis tincidunt diam tristique sit amet. Sed suscipit elit semper porta tincidunt. Ut maximus mollis purus, a iaculis ex euismod iaculis. Integer eu orci quis quam facilisis efficitur. Mauris ultrices sagittis auctor. Phasellus blandit ex quis eros pulvinar viverra quis non massa."}, "commit"=>"Edit Task", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = $1 LIMIT $2 [["id", 28], ["LIMIT", 1]] +  (0.1ms) BEGIN +  (0.1ms) COMMIT +  (0.1ms) BEGIN +  (0.1ms) COMMIT +Redirected to http://localhost:3000/ +Completed 302 Found in 3ms (ActiveRecord: 0.6ms) + + +Started GET "/" for 127.0.0.1 at 2017-09-29 23:40:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."created_at" ASC + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.3ms) + + From 051624cdefc469b9d9d4f454bc96ffefd08716bb Mon Sep 17 00:00:00 2001 From: Jan Edrozo Date: Sat, 30 Sep 2017 00:01:19 -0700 Subject: [PATCH 09/16] Changed index to only include nav and updated new and edit headers --- app/views/layouts/application.html.erb | 7 - app/views/tasks/_form.html.erb | 4 + app/views/tasks/edit.html.erb | 8 +- app/views/tasks/index.html.erb | 7 + app/views/tasks/new.html.erb | 2 +- log/development.log | 254 +++++++++++++++++++++++++ 6 files changed, 270 insertions(+), 12 deletions(-) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 91745c3da..825b3f283 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -14,13 +14,6 @@

      <%= link_to("TASKLIST", root_path, alt: 'homepage')%>

      - - <%= yield %>