From ac9badbb1c87e29bb092790f96e9c96cdace5cf0 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Tue, 19 Sep 2017 09:43:14 -0700 Subject: [PATCH 1/9] setup and wave 0 with some design creation --- .ruby-gemset | 1 - .ruby-version | 1 - 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/books.coffee | 3 + app/assets/javascripts/cable.js | 13 + app/assets/javascripts/channels/.keep | 0 app/assets/javascripts/tasks.coffee | 3 + app/assets/stylesheets/application.css | 75 ++ app/assets/stylesheets/tasks.scss | 33 + 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 | 29 + app/helpers/application_helper.rb | 2 + app/helpers/books_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 | 40 + app/views/layouts/mailer.html.erb | 13 + app/views/layouts/mailer.text.erb | 1 + app/views/tasks/index.html.erb | 16 + 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 | 25 + 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 | 16 + config/secrets.yml | 32 + config/spring.rb | 6 + db/seeds.rb | 7 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 log/development.log | 1084 +++++++++++++++++ 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/books_controller_test.rb | 7 + test/controllers/tasks_controller_test.rb | 7 + 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 85 files changed, 2435 insertions(+), 2 deletions(-) delete mode 100644 .ruby-gemset delete mode 100644 .ruby-version 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/books.coffee 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/books_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/index.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/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/books_controller_test.rb 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/.ruby-gemset b/.ruby-gemset deleted file mode 100644 index 5d2410e51..000000000 --- a/.ruby-gemset +++ /dev/null @@ -1 +0,0 @@ -TaskListRails diff --git a/.ruby-version b/.ruby-version deleted file mode 100644 index 005119baa..000000000 --- a/.ruby-version +++ /dev/null @@ -1 +0,0 @@ -2.4.1 diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..13ab51252 --- /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 sqlite3 as the database for Active Record +gem 'sqlite3' +# 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..dbd6acac2 --- /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) + 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) + sqlite3 (1.3.13) + 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) + puma (~> 3.7) + rails (~> 5.1.4) + sass-rails (~> 5.0) + selenium-webdriver + spring + spring-watcher-listen (~> 2.0.0) + sqlite3 + turbolinks (~> 5) + tzinfo-data + uglifier (>= 1.3.0) + web-console (>= 3.3.0) + +BUNDLED WITH + 1.15.3 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/books.coffee b/app/assets/javascripts/books.coffee new file mode 100644 index 000000000..24f83d18b --- /dev/null +++ b/app/assets/javascripts/books.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/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..948d5db4b --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,75 @@ +/* +* 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 +*/ +@import url('https://fonts.googleapis.com/css?family=Lobster|Montserrat'); + +body { + font-family: 'Lobster'; + background-color: ivory; +} + +header { + float:left; + width: 45%; +} + +header h1 { + background: skyblue; + border-radius: 2em; + width: 100%; + text-align: center; + color: navy; + font-size: 3em; + box-shadow: 6px 10px 9px #888899; + +} + +header p { + text-align: center; + font-family: cursive; + font-size: 1.5em; +} + +header ul { + padding-left: 20%; + margin: auto 0; + text-align: center; +} + +header li { + display: inline-block; + padding-bottom: 30px; + padding-top: 30px; + margin-right: 6em; + min-width: 150px; + background-color: rgb(66, 17, 120); + color: skyblue; + box-shadow: 6px 10px 9px #888899; + margin-bottom: 20px; + text-align: center; + padding: 10px; + border-radius: 1em; + +} + +main { + float: right; +} + +footer{ + clear: both; + text-align: center; + padding-top: 10%; +} diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss new file mode 100644 index 000000000..2c58e32fd --- /dev/null +++ b/app/assets/stylesheets/tasks.scss @@ -0,0 +1,33 @@ +// 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/ + +.tasklist { + background-color: skyblue; + padding: 50%; + margin-top: 30%; + border-radius: 1em; + width: 100%; +} + +h2 { + background: navy; + border-radius: 2em; + width: 100%; + text-align: center; + color: skyblue; + font-size: 2em; + box-shadow: 6px 10px 9px #888899; + padding: 5%; +} + +ol { + padding: 15%; + margin: 10%; +} + +li { + font-family: serif; + margin: 5%; +padding: 5%; +} 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..4ed176545 --- /dev/null +++ b/app/controllers/tasks_controller.rb @@ -0,0 +1,29 @@ +class TasksController < ApplicationController + def index + @tasks = [ + {title: "Study for Mock Interview", description: "buy tomatoes and apples", due_date:"sept 4, 2017", status: "done"}, + {title: "Bake Bread", description: "clean kitchen", due_date:"sept 22, 2017", status: "done"}, + {title: "Watch Star Wars", description: "read assignment", due_date:"sept 15, 2017", status: "done"} + ] + + end + + def new + end + + def create + end + + def show + end + + def edit + end + + def update + end + + def destroy + 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/books_helper.rb b/app/helpers/books_helper.rb new file mode 100644 index 000000000..4b9311e0b --- /dev/null +++ b/app/helpers/books_helper.rb @@ -0,0 +1,2 @@ +module BooksHelper +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..e6b999030 --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,40 @@ + + + + TaskList + <%= csrf_meta_tags %> + + <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + + + + + +
+

Your Fabulous Task List

+

+ Let's get Productive! +

+ + +
+ +
+ <%= 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/index.html.erb b/app/views/tasks/index.html.erb new file mode 100644 index 000000000..f2da848e8 --- /dev/null +++ b/app/views/tasks/index.html.erb @@ -0,0 +1,16 @@ + +
+ + +

Your Tasks

+ +
    + <% @tasks.each do |task| %> +
  1. + <%= task[:title] %> + +
  2. + <% end %> +
+ +
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..0d02f2498 --- /dev/null +++ b/config/database.yml @@ -0,0 +1,25 @@ +# SQLite version 3.x +# gem install sqlite3 +# +# Ensure the SQLite 3 gem is defined in your Gemfile +# gem 'sqlite3' +# +default: &default + adapter: sqlite3 + pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %> + timeout: 5000 + +development: + <<: *default + database: db/development.sqlite3 + +# 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: db/test.sqlite3 + +production: + <<: *default + database: db/production.sqlite3 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..028d45475 --- /dev/null +++ b/config/routes.rb @@ -0,0 +1,16 @@ +Rails.application.routes.draw do + + get "/tasks", to: "tasks#index", as: "tasks" + + get "/tasks/new", to: "tasks#new", as: "new_task" + post "/tasks", to: "tasks#create" + + get "/tasks/:id", to: "tasks#show", as: "task" + + get "/tasks/:id/edit", to: "tasks#edit", as: "edit_task" + patch "/tasks/:id", to: "tasks#update" + + delete "/tasks/:id", to: "tasks#destroy" + + #resources :tasks +end diff --git a/config/secrets.yml b/config/secrets.yml new file mode 100644 index 000000000..55b1fe55a --- /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: 9a594ea005b15a63d0380942e3cfcf0f391f532efb90f25ac92205b33e856f75f85ea4841af6e90a8ad4d433d85bca41294e6a3808b34a21da08641a1e48e177 + +test: + secret_key_base: 470def355740239d58a2f1fba6ed331c338f08dfc2a61484bca27fe5d51bd232183e5dc0a0b361947e2c5ab956d6804c2106a8a10f9ccfa7c4538b4bb71aae8a + +# 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/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..73d95035a --- /dev/null +++ b/log/development.log @@ -0,0 +1,1084 @@ +Started GET "/" for 127.0.0.1 at 2017-09-18 14:49:40 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendering /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb + Rendered /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb (3.0ms) +Completed 200 OK in 220ms (Views: 7.9ms) + + +Started GET "/tasks/index" for 127.0.0.1 at 2017-09-18 14:49:54 -0700 + +AbstractController::ActionNotFound (The action 'show' could not be found for TasksController): + +actionpack (5.1.4) lib/abstract_controller/base.rb:119:in `process' +actionview (5.1.4) lib/action_view/rendering.rb:30:in `process' +actionpack (5.1.4) lib/action_controller/metal.rb:189:in `dispatch' +actionpack (5.1.4) lib/action_controller/metal.rb:253:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:31: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/index" for 127.0.0.1 at 2017-09-18 14:50:12 -0700 + +AbstractController::ActionNotFound (The action 'show' could not be found for TasksController): + +actionpack (5.1.4) lib/abstract_controller/base.rb:119:in `process' +actionview (5.1.4) lib/action_view/rendering.rb:30:in `process' +actionpack (5.1.4) lib/action_controller/metal.rb:189:in `dispatch' +actionpack (5.1.4) lib/action_controller/metal.rb:253:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:31: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/index" for 127.0.0.1 at 2017-09-18 14:50:20 -0700 + +AbstractController::ActionNotFound (The action 'show' could not be found for TasksController): + +actionpack (5.1.4) lib/abstract_controller/base.rb:119:in `process' +actionview (5.1.4) lib/action_view/rendering.rb:30:in `process' +actionpack (5.1.4) lib/action_controller/metal.rb:189:in `dispatch' +actionpack (5.1.4) lib/action_controller/metal.rb:253:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:31: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/index" for 127.0.0.1 at 2017-09-18 15:01:45 -0700 + +AbstractController::ActionNotFound (The action 'show' could not be found for TasksController): + +actionpack (5.1.4) lib/abstract_controller/base.rb:119:in `process' +actionview (5.1.4) lib/action_view/rendering.rb:30:in `process' +actionpack (5.1.4) lib/action_controller/metal.rb:189:in `dispatch' +actionpack (5.1.4) lib/action_controller/metal.rb:253:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:31: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-18 15:02: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.3ms) +Completed 200 OK in 312ms (Views: 309.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:06:07 -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 21ms (Views: 18.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:06:13 -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 34ms (Views: 32.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:08: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 16ms (Views: 14.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:09:12 -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 17ms (Views: 15.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:15:14 -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 53ms (Views: 50.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:15:41 -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 31ms (Views: 29.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:16:00 -0700 + +ArgumentError (Invalid route name, already in use: 'tasks' +You may have defined two routes with the same name using the `:as` option, or you may be overriding a route already defined by a resource with the same naming. For the latter, you can restrict the routes created with `resources` as explained here: +http://guides.rubyonrails.org/routing.html#restricting-the-routes-created): + +config/routes.rb:6:in `block in ' +config/routes.rb:1:in `' +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:16:21 -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 29ms (Views: 26.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:17:24 -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 20ms (Views: 18.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:32:02 -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 24ms (Views: 22.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:34:28 -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 16ms (Views: 14.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:35:34 -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 17ms (Views: 15.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:36:14 -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 20ms (Views: 17.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:36:24 -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 25ms (Views: 23.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:39:54 -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 17ms (Views: 14.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:40:05 -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 20ms (Views: 18.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:42:21 -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 44ms (Views: 41.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:45: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.4ms) +Completed 200 OK in 16ms (Views: 13.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:45:11 -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 18ms (Views: 16.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:46:16 -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 17ms (Views: 15.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:46:53 -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 20ms (Views: 18.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:47: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.4ms) +Completed 200 OK in 18ms (Views: 16.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:47:56 -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 200 OK in 28ms (Views: 26.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:48:09 -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 30ms (Views: 28.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:48:20 -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 27ms (Views: 25.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:48: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.4ms) +Completed 200 OK in 35ms (Views: 33.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:49:13 -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 26ms (Views: 24.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:49: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.5ms) +Completed 200 OK in 28ms (Views: 25.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:50:04 -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 29ms (Views: 27.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:50:23 -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 29ms (Views: 27.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:50:29 -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 200 OK in 34ms (Views: 32.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:50:36 -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 30ms (Views: 28.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:52:36 -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 33ms (Views: 31.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:52:48 -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 30ms (Views: 28.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:52: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.5ms) +Completed 200 OK in 17ms (Views: 15.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:53:54 -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 27ms (Views: 24.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:54:39 -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 26ms (Views: 23.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:55:03 -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 23ms (Views: 21.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:55:20 -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 23ms (Views: 21.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:55:31 -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 22ms (Views: 20.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:56:14 -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 21ms (Views: 19.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:56:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 27ms (Views: 25.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:56:43 -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 200 OK in 22ms (Views: 20.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:56: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.5ms) +Completed 200 OK in 21ms (Views: 18.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:57:14 -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 22ms (Views: 20.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:57:21 -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 200 OK in 20ms (Views: 18.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:57: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.5ms) +Completed 200 OK in 29ms (Views: 26.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:57:48 -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 200 OK in 25ms (Views: 23.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:58:36 -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 25ms (Views: 22.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:58:45 -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 200 OK in 23ms (Views: 21.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:59:03 -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 200 OK in 17ms (Views: 15.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:59:21 -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 18ms (Views: 16.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:59:34 -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 200 OK in 18ms (Views: 16.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 15:59:51 -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 27ms (Views: 25.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:00:06 -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 21ms (Views: 19.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:00:12 -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 22ms (Views: 20.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:01:23 -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 22ms (Views: 20.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:01:54 -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 23ms (Views: 20.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:03:56 -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 31ms (Views: 29.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:04:45 -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 23ms (Views: 20.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:05:02 -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 22ms (Views: 20.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:05:20 -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 22ms (Views: 20.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:05:34 -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 21ms (Views: 19.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:05: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 200 OK in 24ms (Views: 22.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:05:57 -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 200 OK in 21ms (Views: 19.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:06:36 -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 22ms (Views: 20.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:07:16 -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 200 OK in 23ms (Views: 21.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:07:33 -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 22ms (Views: 19.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:08:29 -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 23ms (Views: 21.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:08:40 -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 26ms (Views: 24.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:09:28 -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 27ms (Views: 25.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:09:33 -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 200 OK in 24ms (Views: 22.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:10:02 -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 25ms (Views: 23.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:10:48 -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 25ms (Views: 23.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:11: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.6ms) +Completed 200 OK in 27ms (Views: 25.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:11:06 -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 21ms (Views: 19.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:12:11 -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 200 OK in 28ms (Views: 26.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:12:31 -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 30ms (Views: 27.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:12:44 -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 29ms (Views: 27.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:13:37 -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 200 OK in 31ms (Views: 29.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:14:05 -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 31ms (Views: 29.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:14:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 29ms (Views: 27.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:14:52 -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 30ms (Views: 28.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:15:10 -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 200 OK in 34ms (Views: 32.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:15:16 -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 30ms (Views: 28.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:15:25 -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 33ms (Views: 31.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:15:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 30ms (Views: 28.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:15:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 33ms (Views: 31.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:16: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 200 OK in 30ms (Views: 28.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:16:48 -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 30ms (Views: 28.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:16:56 -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 32ms (Views: 30.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:17:18 -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 28ms (Views: 26.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:17:46 -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 17ms (Views: 15.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:18:31 -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 29ms (Views: 27.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:18: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.4ms) +Completed 200 OK in 33ms (Views: 31.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:19:28 -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 41ms (Views: 39.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:20:32 -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 29ms (Views: 27.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:20:56 -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 30ms (Views: 27.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:21: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 200 OK in 29ms (Views: 27.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:21:57 -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 26ms (Views: 24.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:22:23 -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 200 OK in 31ms (Views: 29.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:22:37 -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 200 OK in 35ms (Views: 32.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:22:53 -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 200 OK in 18ms (Views: 16.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:23:48 -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 37ms (Views: 35.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:24:18 -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 32ms (Views: 30.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:24:33 -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 200 OK in 31ms (Views: 29.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:24:53 -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 200 OK in 33ms (Views: 31.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:25:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 37ms (Views: 35.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:25:32 -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 33ms (Views: 31.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:25:41 -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 33ms (Views: 31.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:25: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.7ms) +Completed 200 OK in 40ms (Views: 38.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:26:04 -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 34ms (Views: 32.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:26:32 -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 53ms (Views: 51.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:27:18 -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 51ms (Views: 49.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 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.6ms) +Completed 200 OK in 19ms (Views: 17.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:27:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 16.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:27:45 -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 36ms (Views: 33.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:27:52 -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 35ms (Views: 33.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:29:20 -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 200 OK in 20ms (Views: 18.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:29:34 -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 22ms (Views: 20.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:29:50 -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 17ms (Views: 15.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:30:03 -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 200 OK in 33ms (Views: 31.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-18 16:45:54 -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 41ms (Views: 38.5ms) + + 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/books_controller_test.rb b/test/controllers/books_controller_test.rb new file mode 100644 index 000000000..d8c430698 --- /dev/null +++ b/test/controllers/books_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class BooksControllerTest < ActionDispatch::IntegrationTest + # test "the truth" do + # assert true + # end +end diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..6b6f55454 --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class TasksControllerTest < ActionDispatch::IntegrationTest + # test "the truth" do + # assert true + # 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 a7bfdd54d609196775ad8053e97b76591c62bce5 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Wed, 20 Sep 2017 11:44:06 -0700 Subject: [PATCH 2/9] Add new task page linking to db, links in main nav page --- app/assets/stylesheets/tasks.scss | 4 + app/controllers/tasks_controller.rb | 17 +- app/models/task.rb | 2 + app/views/layouts/application.html.erb | 4 +- app/views/tasks/index.html.erb | 4 +- app/views/tasks/new.html.erb | 18 + app/views/tasks/show.html.erb | 7 + db/development.sqlite3 | Bin 0 -> 28672 bytes db/migrate/20170919222809_create_tasks.rb | 13 + db/schema.rb | 25 + log/development.log | 1112 +++++++++++++++++++++ test/fixtures/tasks.yml | 15 + test/models/task_test.rb | 7 + 13 files changed, 1217 insertions(+), 11 deletions(-) create mode 100644 app/models/task.rb create mode 100644 app/views/tasks/new.html.erb create mode 100644 app/views/tasks/show.html.erb create mode 100644 db/development.sqlite3 create mode 100644 db/migrate/20170919222809_create_tasks.rb create mode 100644 db/schema.rb create mode 100644 test/fixtures/tasks.yml create mode 100644 test/models/task_test.rb diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss index 2c58e32fd..a49df9d52 100644 --- a/app/assets/stylesheets/tasks.scss +++ b/app/assets/stylesheets/tasks.scss @@ -31,3 +31,7 @@ li { margin: 5%; padding: 5%; } + +ol p { + display: inline-block; +} diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 4ed176545..2488c56cc 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,20 +1,21 @@ class TasksController < ApplicationController def index - @tasks = [ - {title: "Study for Mock Interview", description: "buy tomatoes and apples", due_date:"sept 4, 2017", status: "done"}, - {title: "Bake Bread", description: "clean kitchen", due_date:"sept 22, 2017", status: "done"}, - {title: "Watch Star Wars", description: "read assignment", due_date:"sept 15, 2017", status: "done"} - ] - + @tasks = Task.all end - def new + def new #only cares about showing the form + end - def create + def create # has access to user data, from the form + # puts params + task = Task.new(name: params[:task][:name], description: params[:task][:description], due_date: params[:task][:due_date]) + task.save + redirect_to('/tasks') end def show + @task = Task.find (params[:id].to_i) end def edit 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/layouts/application.html.erb b/app/views/layouts/application.html.erb index e6b999030..2656993c3 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -20,10 +20,10 @@ diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index f2da848e8..2e7006537 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -7,8 +7,10 @@
    <% @tasks.each do |task| %>
  1. - <%= task[:title] %> + + <%= link_to(task.name, task_path(task.id)) %> +

    Mark Complete | Edit | Delete

  2. <% end %>
diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb new file mode 100644 index 000000000..b0503129a --- /dev/null +++ b/app/views/tasks/new.html.erb @@ -0,0 +1,18 @@ +

Time to add a Task?

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

Task

+ +<%= @task.name %> + +
diff --git a/db/development.sqlite3 b/db/development.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..7661fc7fb30fd844cfb761b1d48a29cdf7f60ec4 GIT binary patch literal 28672 zcmeI*Z%^As90%|-Az>MVv=6F0n5JIBgEgWJwiCyR_h9vC#87FV5LB^gijL#}564dJ zODIoPWqUz=w3o5hF=-DbbyB50+}R;C3Gj$YtE#VsgYTd3?qlbHbK%F{^DRekdgKRP zCTNM=A&NpCQ%VR~l>36*$6G=k%#RcDw=!{j)8Qg1CLb?l{w1j|{vereGQTh9mj7A0 zFB8}x009U<00Izz00bZa0SMeiU?-KzuC6Kvf*ra%eCf(3n^wqQ_PN)dO)jkO*6n7U zHtp}W>U5^=1CMq2L)o%0e4Sj#X0ys~KgH)1EIbY4m(*1Ie4Ll35AseYPd6LQ`bK@1 z?(A+pvv&{Z)A|9m_nX_B4cX{fz0stNZMpAnZ9SycENjwg8FF}Ky_g2|@ry1e;mpX;hbT&Mi}a;TSMnuL=x9Wb{)MRdCfZOo^# zKN<>gybgbLap75C_;I>*-9TH~b-Bq`%0hN+O&Q)F-EQp@-es+>a~!bfs)XTe#@sZ? zmGa1Az=Lq|%3o_zu;)_Q{k5B>aOK1;?MhbkEdN>bR$G$0lKGp+A8ZhS00bZa0SG_< z0uX=z1Rwwb2z(L(ca*t;u4<-Q(`ve|SJm3*a$b1;|0FIhCIJBmKmY;|fB*y_009U< z00I!W5V)Htq^F<%N9+G@NahWYAOHafKmY;|fB*y_009U<00I#BNCdW(OErttiYk|yFYAm3H&OCSB2B*9&k?zN{lus1 zd-VGkTfTovW!U-kJwv4fr^Efxi~~M!_!;$lF)?qg;R}hw0vW4t+)K35U9wceDwT^> zy<(WPn@fhtxindOn#8X$m2mA@?*!N zM~>?{-Z6CqJ#)lKTxHz3uJ*Xsk)`8|(fWT`vs8IwlvUj@XG%(zp%rU}3<6LcegFR* r$-MjUH#g1*0SG_<0uX=z1Rwwb2tWV=5P-n{D3DeXStb6L70LeqBV6_0 literal 0 HcmV?d00001 diff --git a/db/migrate/20170919222809_create_tasks.rb b/db/migrate/20170919222809_create_tasks.rb new file mode 100644 index 000000000..e247f31d9 --- /dev/null +++ b/db/migrate/20170919222809_create_tasks.rb @@ -0,0 +1,13 @@ +class CreateTasks < ActiveRecord::Migration[5.1] + def change + create_table :tasks do |t| + t.string :name + t.string :description + t.date :due_date + t.date :completion_date + t.string :status + + t.timestamps + end + end +end diff --git a/db/schema.rb b/db/schema.rb new file mode 100644 index 000000000..368250d4b --- /dev/null +++ b/db/schema.rb @@ -0,0 +1,25 @@ +# 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: 20170919222809) do + + create_table "tasks", force: :cascade do |t| + t.string "name" + t.string "description" + t.date "due_date" + t.date "completion_date" + t.string "status" + 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 73d95035a..943c19d65 100644 --- a/log/development.log +++ b/log/development.log @@ -1082,3 +1082,1115 @@ Processing by TasksController#index as HTML Completed 200 OK in 41ms (Views: 38.5ms) +  (0.1ms) SELECT sqlite_version(*) +  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY) +  (1.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to CreateTasks (20170919222809) +  (0.1ms) begin transaction +  (0.4ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" varchar, "due_date" date, "completion_date" date, "status" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170919222809"]] +  (0.8ms) commit transaction + ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", "2017-09-19 22:30:54.048711"], ["updated_at", "2017-09-19 22:30:54.048711"]] +  (0.7ms) commit transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Complete Wave 1"], ["description", "Create database and begin filling it with data"], ["due_date", 2017920], ["status", "pending"], ["created_at", "2017-09-19 22:41:09.640257"], ["updated_at", "2017-09-19 22:41:09.640257"]] +  (1.2ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 11]] + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-20"], ["updated_at", "2017-09-19 22:43:51.959198"], ["id", 1]] +  (0.7ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 11]] +Started GET "/" for 127.0.0.1 at 2017-09-19 15:50:01 -0700 +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by Rails::WelcomeController#index as HTML + Rendering /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb + Rendered /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb (4.0ms) +Completed 200 OK in 21ms (Views: 10.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 15:50:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 295ms (Views: 289.7ms | ActiveRecord: 0.8ms) + + +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "completion_date", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["name", "Rails for Zombies"], ["description", "Complete level 1 and take notes"], ["due_date", "2017-09-20"], ["completion_date", "2017-09-19"], ["status", "Done"], ["created_at", "2017-09-19 23:02:46.467510"], ["updated_at", "2017-09-19 23:02:46.467510"]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "status", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["name", "Do CS HW"], ["description", "Look at CS50 videos and review notes"], ["due_date", "2017-09-21"], ["status", "Not started"], ["created_at", "2017-09-19 23:05:34.826579"], ["updated_at", "2017-09-19 23:05:34.826579"]] +  (1.3ms) commit transaction + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 11]] +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:09:42 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 3ms + + + +ArgumentError (The method .order() must contain arguments.): + +app/controllers/tasks_controller.rb:3:in `index' + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 11]] +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:10:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" ASC + Rendered tasks/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 25ms (Views: 21.2ms | ActiveRecord: 0.8ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 11]] +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:11:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."name" ASC + Rendered tasks/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 29ms (Views: 24.5ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:11:40 -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 (1.2ms) +Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:24:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 27ms (Views: 23.2ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:24: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 (8.3ms) +Completed 200 OK in 34ms (Views: 28.1ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:24: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.4ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:25:23 -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 17ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:28: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.2ms) +Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:29:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 31ms (Views: 29.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:29: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 (1.2ms) +Completed 200 OK in 32ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:29:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 16:31: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.6ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:31:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 406 Not Acceptable in 68ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat (TasksController#show is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.1.4) lib/action_controller/metal/implicit_render.rb:53:in `default_render' +actionpack (5.1.4) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.1.4) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.1.4) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.1.4) lib/abstract_controller/base.rb:186:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.1.4) lib/active_support/callbacks.rb:131:in `run_callbacks' +actionpack (5.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.1.4) lib/active_support/notifications.rb:166:in `block in instrument' +activesupport (5.1.4) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.1.4) lib/active_support/notifications.rb:166:in `instrument' +actionpack (5.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/params_wrapper.rb:252:in `process_action' +activerecord (5.1.4) lib/active_record/railties/controller_runtime.rb:22:in `process_action' +actionpack (5.1.4) lib/abstract_controller/base.rb:124:in `process' +actionview (5.1.4) lib/action_view/rendering.rb:30:in `process' +actionpack (5.1.4) lib/action_controller/metal.rb:189:in `dispatch' +actionpack (5.1.4) lib/action_controller/metal.rb:253:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:31: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/1" for 127.0.0.1 at 2017-09-19 16:32:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 5ms + + + +NoMethodError (undefined method `id' for Task (call 'Task.connection' to establish a connection):Class +Did you mean? ids): + +app/controllers/tasks_controller.rb:14:in `show' +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:32:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 5ms + + + +NoMethodError (undefined method `[]' for Task (call 'Task.connection' to establish a connection):Class): + +app/controllers/tasks_controller.rb:14:in `show' +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:35:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 4ms + + + +NoMethodError (undefined method `[]' for Task (call 'Task.connection' to establish a connection):Class): + +app/controllers/tasks_controller.rb:14:in `show' +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:35:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 6ms + + + +NoMethodError (undefined method `[]' for Task (call 'Task.connection' to establish a connection):Class): + +app/controllers/tasks_controller.rb:14:in `show' +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:35:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} +Completed 500 Internal Server Error in 7ms + + + +NoMethodError (undefined method `id' for Task (call 'Task.connection' to establish a connection):Class +Did you mean? ids): + +app/controllers/tasks_controller.rb:14:in `show' +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:37:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 406 Not Acceptable in 73ms (ActiveRecord: 0.9ms) + + + +ActionController::UnknownFormat (TasksController#show is missing a template for this request format and variant. + +request.formats: ["text/html"] +request.variant: [] + +NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.): + +actionpack (5.1.4) lib/action_controller/metal/implicit_render.rb:53:in `default_render' +actionpack (5.1.4) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.1.4) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.1.4) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.1.4) lib/abstract_controller/base.rb:186:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.1.4) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.1.4) lib/active_support/callbacks.rb:131:in `run_callbacks' +actionpack (5.1.4) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.1.4) lib/active_support/notifications.rb:166:in `block in instrument' +activesupport (5.1.4) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.1.4) lib/active_support/notifications.rb:166:in `instrument' +actionpack (5.1.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.1.4) lib/action_controller/metal/params_wrapper.rb:252:in `process_action' +activerecord (5.1.4) lib/active_record/railties/controller_runtime.rb:22:in `process_action' +actionpack (5.1.4) lib/abstract_controller/base.rb:124:in `process' +actionview (5.1.4) lib/action_view/rendering.rb:30:in `process' +actionpack (5.1.4) lib/action_controller/metal.rb:189:in `dispatch' +actionpack (5.1.4) lib/action_controller/metal.rb:253:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:49:in `dispatch' +actionpack (5.1.4) lib/action_dispatch/routing/route_set.rb:31: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/1" for 127.0.0.1 at 2017-09-19 16:50:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:51:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-19 16:51: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.4ms) +Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-19 16:53:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:53:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 23ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-19 16:55:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 25ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-19 16:56:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", nil], ["LIMIT", 1]] +Completed 404 Not Found in 7ms (ActiveRecord: 1.2ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=): + +app/controllers/tasks_controller.rb:14:in `show' +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-19 16:57:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 31ms (Views: 17.0ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-19 16:57:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-19 16:57:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-19 16:57:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 22ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:57:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 17.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-19 16:59:15 -0700 + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/controllers/tasks_controller.rb:14: syntax error, unexpected tLABEL + @task = Task.find_by (name: "Complete Wave 1") + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/controllers/tasks_controller.rb:14: syntax error, unexpected ')', expecting keyword_end +d_by (name: "Complete Wave 1") + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/controllers/tasks_controller.rb:26: syntax error, unexpected end-of-input, expecting keyword_end): + +app/controllers/tasks_controller.rb:14: syntax error, unexpected tLABEL +app/controllers/tasks_controller.rb:14: syntax error, unexpected ')', expecting keyword_end +app/controllers/tasks_controller.rb:26: syntax error, unexpected end-of-input, expecting keyword_end +Started GET "/tasks/" for 127.0.0.1 at 2017-09-19 16:59:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.3ms) +Completed 200 OK in 30ms (Views: 24.4ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 16:59:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."name" = ? LIMIT ? [["name", "Complete Wave 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 27ms (Views: 23.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-19 16:59:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."name" = ? LIMIT ? [["name", "Complete Wave 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 30ms (Views: 26.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-19 17:00:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 31ms (Views: 26.9ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 17:00:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 21ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-19 17:00:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-19 18:31:32 -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.4ms) +Completed 200 OK in 253ms (Views: 239.4ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-19 18:31:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 26ms (Views: 18.4ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-19 18:32: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 (1.9ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 10:10:36 -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.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.1ms) +Completed 200 OK in 229ms (Views: 214.7ms | ActiveRecord: 1.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:10:40 -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.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:12:58 -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 16ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:14:47 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:16:33 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:22:33 -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 17ms (Views: 14.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:22:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 15ms (Views: 13.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:31:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:33:23 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:33: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.5ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:33:48 -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 19ms (Views: 17.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:35:22 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:35:47 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:43:59 -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 15ms (Views: 13.4ms) + + +Started POST "/books" for 127.0.0.1 at 2017-09-20 10:44:01 -0700 + +ActionController::RoutingError (No route matches [POST] "/books"): + +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 "/books" for 127.0.0.1 at 2017-09-20 10:44:25 -0700 + +ActionController::RoutingError (No route matches [POST] "/books"): + +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 "/books" for 127.0.0.1 at 2017-09-20 10:44:29 -0700 + +ActionController::RoutingError (No route matches [POST] "/books"): + +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 "/books" for 127.0.0.1 at 2017-09-20 10:45:43 -0700 + +ActionController::RoutingError (No route matches [POST] "/books"): + +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 "/books" for 127.0.0.1 at 2017-09-20 10:51:08 -0700 + +ActionController::RoutingError (No route matches [POST] "/books"): + +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-20 10:51:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.2ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 10:51:31 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"YGmuXMSs6Q3JoMOhD4ZW2eXwHHp7ivD3ZxhqEt6y2QvrnLW2/voBPtDGNodZBNjl+56qtGi7ez4LsPOiVMxLwA==", "task"=>{"name"=>"", "description"=>""}, "due_date"=>""} +Redirected to http://localhost:3000/tasks +Completed 302 Found in 1ms + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 10:51:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.2ms) +Completed 200 OK in 32ms (Views: 27.2ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 10:51:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 27ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 10:51:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.3ms) +Completed 200 OK in 22ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/task" for 127.0.0.1 at 2017-09-20 10:52:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/task"): + +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-20 10:53:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 10:53: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 (1.3ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:54:13 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 10:54:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.4ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:54:24 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (6.6ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 10:54:44 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"eTlBi0oz1kBLLHcS4L73zrMI73xVwJRZIT31h+Ra1iXyzFphcGU+c1JKgjS2PHnyrWZZskbxH5BNlWw3biRE7g==", "task"=>{"name"=>"Fill out the form", "description"=>"Lo form to be an ambassafor"}, "due_date"=>"2017, 09, 22"} +Redirected to http://localhost:3000/tasks +Completed 302 Found in 1ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 10:54: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.4ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 10:59:50 -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 16ms (Views: 14.2ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 11:00:07 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"0eBbPICY73/a7zQW20Csmox+zlVGPlageX/MBoLLKcZaFUDWus4HTMOJwTCNwiKmkhB4m1UP3WkV11W2CLW7DQ==", "task"=>{"name"=>"Grocery store", "description"=>"peaches and apples"}, "due_date"=>"2017, 09, 22"} +  (0.2ms) begin transaction + SQL (0.8ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Plan your week"], ["description", "Take time to answer the important questions"], ["due_date", "2017-09-22"], ["created_at", "2017-09-20 18:00:07.860871"], ["updated_at", "2017-09-20 18:00:07.860871"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 14ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:00: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 (1.6ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 11:00:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["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.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:04:41 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 13.6ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 11:04:49 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"hZQEvyt8Uug02q8ffoKQXoWKS/JwiVUXfP9vMSYbmp0OYR9VESq62y28WjkoAB5im+T9PGO43t4QV/aBrGUIVg==", "task"=>{"name"=>"Grocery store", "description"=>"peaches and apples"}, "due_date"=>""} +  (0.0ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Grocery store"], ["description", "peaches and apples"], ["created_at", "2017-09-20 18:04:49.627762"], ["updated_at", "2017-09-20 18:04:49.627762"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 19ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:04: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 19ms (Views: 17.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-20 11:04:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 25ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-22"], ["updated_at", "2017-09-20 18:08:43.533777"], ["id", 5]] +  (1.2ms) commit transaction +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:20:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:42:12 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:42:15 -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 18ms (Views: 15.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:42: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.6ms) +Completed 200 OK in 16ms (Views: 14.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:42:20 -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 19ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:42:55 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:42: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 (1.5ms) +Completed 200 OK in 29ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:43:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:43: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.8ms) +Completed 200 OK in 23ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-20 11:43:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["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: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:43:06 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 25ms (Views: 21.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:43:07 -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 24ms (Views: 21.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:43:11 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.0ms) + + diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml new file mode 100644 index 000000000..fdb4d9072 --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,15 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: MyString + due_date: 2017-09-19 + completion_date: 2017-09-19 + status: MyString + +two: + name: MyString + description: MyString + due_date: 2017-09-19 + completion_date: 2017-09-19 + status: MyString 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 705d2e9fc2a477d0ef2ac69af9c1fa5d8546a4d3 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Thu, 21 Sep 2017 16:34:07 -0700 Subject: [PATCH 3/9] complete wave 3 with working edit button --- app/assets/images/bee.png | Bin 0 -> 82502 bytes app/assets/images/honeycomb.jpg | Bin 0 -> 37180 bytes app/assets/stylesheets/application.css | 39 +- app/assets/stylesheets/tasks.scss | 14 +- app/controllers/tasks_controller.rb | 29 +- app/views/layouts/application.html.erb | 12 +- app/views/tasks/delete.html.erb | 6 + app/views/tasks/edit.html.erb | 16 + app/views/tasks/index.html.erb | 20 +- app/views/tasks/new.html.erb | 30 +- app/views/tasks/show.html.erb | 20 +- config/routes.rb | 2 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 5174 ++++++++++++++++++++++++ 14 files changed, 5323 insertions(+), 39 deletions(-) create mode 100644 app/assets/images/bee.png create mode 100644 app/assets/images/honeycomb.jpg create mode 100644 app/views/tasks/delete.html.erb create mode 100644 app/views/tasks/edit.html.erb diff --git a/app/assets/images/bee.png b/app/assets/images/bee.png new file mode 100644 index 0000000000000000000000000000000000000000..0659cf9b0f4d81b89cea97b68057c95a114d9c2b GIT binary patch literal 82502 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 z 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 NUPf8EK+-tq{{gDg#-{)P literal 0 HcmV?d00001 diff --git a/app/assets/images/honeycomb.jpg b/app/assets/images/honeycomb.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f3ee152d2d9325732331a7d64d957efbe2641cac GIT binary patch literal 37180 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�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 - TaskList + BusyBee <%= csrf_meta_tags %> <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> @@ -12,18 +12,20 @@
-

Your Fabulous Task List

+

The Busy Bee

- Let's get Productive! + Let's get Busy!

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

Delete Task

+ +

+ Are you sure you want to delete this task? +

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

Edit that Task

+ + +<%= form_for @task do |f| %> + <%= f.label :name %> + <%= f.text_field :name %> + + <%= f.label :description %> + <%= f.text_field :description %> + + <%= f.label :due_date %> + <%= f.text_field :due_date %> + + <%= f.submit "Edit that task!"%> +<% end %> diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 2e7006537..fbc0b97bd 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -2,17 +2,17 @@
-

Your Tasks

+

Your Tasks

-
    - <% @tasks.each do |task| %> +
      + <% @tasks.each do |task| %>
    1. - <%= link_to(task.name, task_path(task.id)) %> - -

      Mark Complete | Edit | Delete

      -
    2. - <% end %> -
    + <%=button_to "Edit", edit_task_path(task.id), method: :get%> + <%= link_to "Delete", delete_task_path(task.id) %> +

    Mark Complete | Delete

    + + <% end %> +
-
+ diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index b0503129a..0097e0ed8 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,18 +1,32 @@

Time to add a Task?

- +<%= form_for @task do |f| %> +<%= f.label :name %> +<%= f.text_field :name %> - - +<%= f.label :description %> +<%= f.text_field :description %> - - +<%= f.label :due_date %> +<%= f.text_field :due_date %> - - - +<%= f.submit "Add that task!"%> +<% end %> +
+ + + diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index a0d34a811..aa6b573e2 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,7 +1,23 @@
+

+ <%= "Task #{@task.id}: #{@task.name}" %> +

-

Task

+
    +
  • + <%= "#{@task.description}" %> +
  • +
  • + <% if @task.due_date == nil %> +

    No due date

    + <% else %> +

    Due: <%= @task.due_date.strftime("%A, %B %d, %Y") %>

    + <% end %> +
  • +
  • + <%= link_to "Edit", edit_task_path %> +
  • +
-<%= @task.name %>
diff --git a/config/routes.rb b/config/routes.rb index 028d45475..0e8fd3bbd 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -10,7 +10,7 @@ get "/tasks/:id/edit", to: "tasks#edit", as: "edit_task" patch "/tasks/:id", to: "tasks#update" - delete "/tasks/:id", to: "tasks#destroy" + delete "/tasks/:id", to: "tasks#destroy", as: "delete_task" #resources :tasks end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 7661fc7fb30fd844cfb761b1d48a29cdf7f60ec4..d07c7b1abd342cbf293c31a609a4b6bd7b654c74 100644 GIT binary patch delta 1106 zcmb`Gzi-n(6vrnVg3`i`AdW|o!8^?$2OH277 zHxdgA0!3nBVrD9P|CeqZkoXti>?olWiiCu2d3Rs?z3;vExx zX#3OVV*M0Vjbk+bs-D*`&3&GGR6DITt8c0c#_?nwjXoNAyKbO`_yNVlUB%uirL%|tv3-m91e=~^H=VyIyK@G*xl!id83sL}I;r4F0Ecp$ zE9lA;67fvIz7YLs35KT;#XzZVGoLn1LKyYji>N385T_eVO(XAp%em zdJ?-5eCp`k6lF3L*&ko=EN}{h?AKDSkN+3V0F#PX$PQ5(?N4BYlA# z$I7*TpKf&=2N(Slb&4Dr5KulIgo=$L&-IiLXU(8+HP7*LR(X8YK#jX)=G|Nl(}c&V=*FU>fk;XU!8wzccs}!d?3j+_ zQ1%mb4Cj;=R}AE}%Dh`qrw_xY(2?D)5YUZcCDLrb`vS6|CP`y-P$Ko904j}oVNqLT zunO68&HK-;6g8SYWhTX#>6dn)GR|A!WrQjp#$Q|cBuLsXi{QriTl;lQ`+AF(qeawM i8=tlwjyKzl@mAZoPJrsS<@gpeiA8k!FWcYeEA=03NhOK^ delta 222 zcmZp8z}WDBae_1>_e2?IM(&LX3;hKd7#LW2>lyfq_+Ig4@jmCR-z+GQ%R9L~He+&a zyx(NgI8&B7W=@95d2ux?jjT+Zli$U))HiZ7ax!RVDl$krIy&d)7UZOsq$-3bmZd5f zIv1rT0y!y(C5cIi#isp*+{3Tc@+IhlFs3YjGe<(VZJU?oNdhUU5kmbyj; z1*v%{Kv|f8p{0V6k(G&|m4T(6nTdgssX3AiKS;{h%G6NL($vz>(qdD>e||<*06GXi A"new_task_path"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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:18:in `show' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:46:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:46:39 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:46:40 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 16.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:46: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 (1.9ms) +Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:46:43 -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 22ms (Views: 20.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:46: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 37ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:46:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:47:18 -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 20ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:47: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 (1.4ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:47:21 -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 25ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11:47:23 -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 20ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:47:24 -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 24ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:50:37 -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 62ms (Views: 60.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:50:44 -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 27ms (Views: 24.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:51:04 -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 25ms (Views: 22.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:51:22 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:52:24 -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 28ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:52:37 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:52:52 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:52:58 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:53:17 -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 32ms (Views: 29.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11: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" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 11: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" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:56:36 -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 17ms (Views: 15.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:57:15 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 11:57:28 -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 16ms (Views: 14.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:03:04 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 12:03:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"7D3v9QKVPryxL4t+BgDo9MkqD21dyBJwqgcVoyKoHSpnyPQfOMPWj6hJflhQgmbI10S5o075mbnGr4wTqNaP4Q=="} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:12:in `create' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:07:01 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.6ms) +Completed 200 OK in 58ms (Views: 55.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:07:43 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.0ms) + + +Started GET "/images/honeycomb.jpg" for 127.0.0.1 at 2017-09-20 12:07:44 -0700 + +ActionController::RoutingError (No route matches [GET] "/images/honeycomb.jpg"): + +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-20 12:08:08 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.2ms) +Completed 200 OK in 61ms (Views: 58.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:08:57 -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 24ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:09:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:09:37 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 22.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:12:07 -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 23ms (Views: 21.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:12:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 22.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:12:20 -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 22ms (Views: 20.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:12:32 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:12:51 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12: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 (0.5ms) +Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:15:23 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 12:15:25 -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 (4.2ms) +Completed 200 OK in 28ms (Views: 24.2ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:15:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 30ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:17:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 23ms (Views: 20.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:18:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 17ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:18:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 17ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:19:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 17ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:19:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 19ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:19:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["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: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 12:24:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 43ms (Views: 41.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-20 12:24:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 12:24:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 16ms (Views: 14.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 12:28:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-20 12:28:23 -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 18ms (Views: 15.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:28:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 26ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 12:28:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-20 12:28:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 23ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 12:28:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 12:28:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["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: 21.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-20 12:29: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 23ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 12:29:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 12:29:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["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.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-20 12:29:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-20 12:29:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["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: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:37:55 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 12:38:23 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"gWMX3YSBs6Gjzr0spbFHTfl0OeVWIhCoQsskHC+EdBcKlgw3vtdbkrqoSArzM8lx5xqPK0UTm2EuY72spfrm3A==", "task"=>{"name"=>"Pick up coffee filters", "description"=>"make sure they are the right ones - sz 2"}, "due_date"=>"\"2017-9-23\""} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Pick up coffee filters"], ["description", "make sure they are the right ones - sz 2"], ["created_at", "2017-09-20 19:38:23.200386"], ["updated_at", "2017-09-20 19:38:23.200386"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 12:38:23 -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.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 12:38:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 25ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 12:38:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (0.4ms) +Completed 200 OK in 21ms (Views: 18.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 12:39:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"H3yHuH+qbZK3uqAII14QyT1rGl/KJJLutfylM0rxoRWUiZxSRfyFoa7cVS513J71IwWskdkVGSfZVDyDwI8z3g==", "task"=>{"name"=>"journal", "description"=>"reflect on week 6"}, "due_date"=>"2017-9-25"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "journal"], ["description", "reflect on week 6"], ["created_at", "2017-09-20 19:39:06.646232"], ["updated_at", "2017-09-20 19:39:06.646232"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 12:39: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 (2.3ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/7" for 127.0.0.1 at 2017-09-20 12:39:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 12:39: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 (3.1ms) +Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:40:31 -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 (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected '=' +k.id), method: :delete, class="delete_book_form" do @output_ + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected keyword_do_block, expecting keyword_end +e, class="delete_book_form" do @output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:14: syntax error, unexpected '=' +app/views/tasks/index.html.erb:14: syntax error, unexpected keyword_do_block, expecting keyword_end +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:40: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.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected '=' +k.id), method: :delete, class="delete_task_form" do @output_ + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected keyword_do_block, expecting keyword_end +e, class="delete_task_form" do @output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:14: syntax error, unexpected '=' +app/views/tasks/index.html.erb:14: syntax error, unexpected keyword_do_block, expecting keyword_end +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:42: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.6ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:44:32 -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 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:46: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 (4.4ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:48: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 (4.0ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:48: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 (8.9ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/4" for 127.0.0.1 at 2017-09-20 13:49:05 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"mvyn+Pzo2H78VQRi/XTWfHTkX1Qu+1DZRUY9xwG+/ewRCbwSxr4wTeUz8USr9lhAaorpmj3K2xAp7qR3i8BvJw==", "commit"=>"Delete Task", "id"=>"4"} +No template found for TasksController#destroy, rendering head :no_content +Completed 204 No Content in 62ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:49: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 (4.2ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 13:52:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.5ms) +Completed 200 OK in 31ms (Views: 25.3ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-20 13:57:41 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yGMtzShsEechgiTaXeg0XsEn703H4frlDNLXp61FaNhDljYnEjr51Djk0fwLarpi30lZg9TQcSxgek4XJzv6Ew==", "task"=>{"name"=>"Complete Wave 1"}, "commit"=>"Delete Task", "id"=>"1"} +No template found for TasksController#destroy, rendering head :no_content +Completed 204 No Content in 60ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:35:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (199.4ms) +Completed 500 Internal Server Error in 208ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f997f9cbc68> +Did you mean? @tasks): + 21: + 22: + 23: + 24: + +app/views/tasks/index.html.erb:24:in `_app_views_tasks_index_html_erb___4435418077258163873_70148623892540' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:36:10 -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 (237.0ms) +Completed 500 Internal Server Error in 243ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f997fd3e530> +Did you mean? @tasks): + 21: + 22: + 23: + 24: + +app/views/tasks/index.html.erb:24:in `_app_views_tasks_index_html_erb___4435418077258163873_70148625659780' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14: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 (161.6ms) +Completed 500 Internal Server Error in 167ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f997f9dbf28> +Did you mean? @tasks): + 21: + 22: + 23: + 24: + +app/views/tasks/index.html.erb:24:in `_app_views_tasks_index_html_erb___4435418077258163873_70148623895940' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:36:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting end-of-input +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:36: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 (1.5ms) +Completed 200 OK in 18ms (Views: 14.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:36:57 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 17: --> + 18: + 19: + 20: <%= form_for @book do |f| %> + 21: <%= f.label :name %> + 22: <%= f.text_field :name %> + 23: + +app/views/tasks/new.html.erb:20:in `_app_views_tasks_new_html_erb__2668169924915331655_70148574109880' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:37:29 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (12.8ms) +Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:38: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.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/new.html.erb:27: syntax error, unexpected tSTRING_BEG, expecting ')' +r.append=( f.label :due_date "Due Date");@output_buffer.safe + ^): + +app/views/tasks/new.html.erb:27: syntax error, unexpected tSTRING_BEG, expecting ')' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:38:50 -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 20ms (Views: 18.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:39:08 -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: 16.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:39:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:39: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.7ms) +Completed 200 OK in 22ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:43: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.7ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:47:13 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (7.7ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/4/edit" for 127.0.0.1 at 2017-09-20 14:52:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 500 Internal Server Error in 7ms + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 2:

Edit that Task

+ 3: + 4: + 5: <%= form_for @task do |f| %> + 6: <%= f.label :name %> + 7: <%= f.text_field :name %> + 8: + +app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb__3261763465248169043_70148625818400' +Started GET "/tasks/4/edit" for 127.0.0.1 at 2017-09-20 14:53:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 34ms (Views: 18.3ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/4" for 127.0.0.1 at 2017-09-20 14:54:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qsKEaLVf4aQ+cqvzPKTMYvdgQG7RZlzyMe1A/huVYlohN5+CjwkJlycUXtVqJkJe6Q72oMJX1ztdRdlOkevwkQ==", "task"=>{"name"=>"Plan your week", "description"=>"Need to answer those word questions", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!", "id"=>"4"} +No template found for TasksController#update, rendering head :no_content +Completed 204 No Content in 59ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks/4/edit" for 127.0.0.1 at 2017-09-20 14:54:51 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 34ms (Views: 19.0ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/4" for 127.0.0.1 at 2017-09-20 14:54:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SmexEwie+bgT5rzwANLwbCPec5RF4fuz+iAjkC1Ur53Bkqr5MsgRiwqASdZWUH5QPbDFWlbQcHqWiLogpyo9Vg==", "task"=>{"name"=>"Plan your week", "description"=>"Need to answer those word questions", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!", "id"=>"4"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `save' for nil:NilClass): + +app/controllers/tasks_controller.rb:33:in `update' +Started PATCH "/tasks/4" for 127.0.0.1 at 2017-09-20 14:55:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SmexEwie+bgT5rzwANLwbCPec5RF4fuz+iAjkC1Ur53Bkqr5MsgRiwqASdZWUH5QPbDFWlbQcHqWiLogpyo9Vg==", "task"=>{"name"=>"Plan your week", "description"=>"Need to answer those word questions", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!", "id"=>"4"} +Completed 500 Internal Server Error in 109ms + + + +NameError (undefined local variable or method `task' for #): + +app/controllers/tasks_controller.rb:33:in `update' +Started PATCH "/tasks/4" for 127.0.0.1 at 2017-09-20 14:55:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SmexEwie+bgT5rzwANLwbCPec5RF4fuz+iAjkC1Ur53Bkqr5MsgRiwqASdZWUH5QPbDFWlbQcHqWiLogpyo9Vg==", "task"=>{"name"=>"Plan your week", "description"=>"Need to answer those word questions", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!", "id"=>"4"} +Completed 500 Internal Server Error in 106ms + + + +NameError (undefined local variable or method `task' for #): + +app/controllers/tasks_controller.rb:33:in `update' +Started PATCH "/tasks/4" for 127.0.0.1 at 2017-09-20 14:56:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SmexEwie+bgT5rzwANLwbCPec5RF4fuz+iAjkC1Ur53Bkqr5MsgRiwqASdZWUH5QPbDFWlbQcHqWiLogpyo9Vg==", "task"=>{"name"=>"Plan your week", "description"=>"Need to answer those word questions", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 0.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:56: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 (1.5ms) +Completed 200 OK in 17ms (Views: 14.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 14:56:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["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.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 14:56:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 31ms (Views: 17.8ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 14:56:28 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/3/edit" for 127.0.0.1 at 2017-09-20 14:56:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/3" for 127.0.0.1 at 2017-09-20 14:56:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7QXVz7OWctGIbIynkDPK6tl+UT66l9LMgyzgo3M6Rmlm8M4licCa4pEKeYHGsUTWxxDn8KmmWQXvhHkT+UTUog==", "task"=>{"name"=>"Do CS HW", "description"=>"finish those videos", "due_date"=>"2017-09-21"}, "commit"=>"Add that task!", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:56: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 (2.0ms) +Completed 200 OK in 18ms (Views: 16.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-20 14:56:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3" for 127.0.0.1 at 2017-09-20 14:57:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7QXVz7OWctGIbIynkDPK6tl+UT66l9LMgyzgo3M6Rmlm8M4licCa4pEKeYHGsUTWxxDn8KmmWQXvhHkT+UTUog==", "task"=>{"name"=>"Do CS HW", "description"=>"finish those videos", "due_date"=>"2017-09-21"}, "commit"=>"Add that task!", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 18ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 14:57: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.7ms) +Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-20 14:57:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 14:58:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 29ms (Views: 15.6ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-20 14:59:05 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 18ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-20 14:59:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"EUi64aH+dIvm23kQ+5DGmqZnGpLMnX+Kgqqe60rAZPyavaELm6icuP+9jDatEkimuAmsXN+s9EPuAgdbwL72Nw==", "task"=>{"name"=>"Complete Wave 1", "description"=>"change database", "due_date"=>"2017-09-20"}, "commit"=>"Edit that task!", "id"=>"1"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `save' for nil:NilClass): + +app/controllers/tasks_controller.rb:32:in `update' +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-20 14:59:48 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"EUi64aH+dIvm23kQ+5DGmqZnGpLMnX+Kgqqe60rAZPyavaELm6icuP+9jDatEkimuAmsXN+s9EPuAgdbwL72Nw==", "task"=>{"name"=>"Complete Wave 1", "description"=>"change database", "due_date"=>"2017-09-20"}, "commit"=>"Edit that task!", "id"=>"1"} +Completed 500 Internal Server Error in 86ms + + + +NameError (undefined local variable or method `task' for #): + +app/controllers/tasks_controller.rb:32:in `update' +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-20 14:59:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"EUi64aH+dIvm23kQ+5DGmqZnGpLMnX+Kgqqe60rAZPyavaELm6icuP+9jDatEkimuAmsXN+s9EPuAgdbwL72Nw==", "task"=>{"name"=>"Complete Wave 1", "description"=>"change database", "due_date"=>"2017-09-20"}, "commit"=>"Edit that task!", "id"=>"1"} +Completed 500 Internal Server Error in 90ms + + + +NameError (undefined local variable or method `task' for #): + +app/controllers/tasks_controller.rb:32:in `update' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:00:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.7ms) +Completed 200 OK in 48ms (Views: 27.4ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:00:36 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JONlTTBPGrHfc3MU3WUHhoT9OQzqcb8FkVdBc0iZWCDBCkPrnl/2BQDOjVuOF1sJvuYwtHND6JWKPHMnUkKmtw==", "task"=>{"name"=>"Call mom", "description"=>"it has been a while", "due_date"=>""}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Call mom"], ["description", "it has been a while"], ["created_at", "2017-09-20 22:00:36.314480"], ["updated_at", "2017-09-20 22:00:36.314480"]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:00: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.7ms) +Completed 200 OK in 37ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for 127.0.0.1 at 2017-09-20 15:07:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.4ms) +Completed 200 OK in 29ms (Views: 15.4ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/8/edit" for 127.0.0.1 at 2017-09-20 15:07:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/8" for 127.0.0.1 at 2017-09-20 15:08:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZoqYQ5PWswWpNrL961GnOZ6L3cm6PdlReJefFgEGF9btf4OpqYBbNrBQR9u90ykFgOVrB6kMUpgUPwami3iFHQ==", "task"=>{"name"=>"Call mom", "description"=>"she's in spain", "due_date"=>""}, "commit"=>"Edit that task!", "id"=>"8"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `update' for nil:NilClass): + +app/controllers/tasks_controller.rb:32:in `update' +Started PATCH "/tasks/8" for 127.0.0.1 at 2017-09-20 15:08:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZoqYQ5PWswWpNrL961GnOZ6L3cm6PdlReJefFgEGF9btf4OpqYBbNrBQR9u90ykFgOVrB6kMUpgUPwami3iFHQ==", "task"=>{"name"=>"Call mom", "description"=>"she's in spain", "due_date"=>""}, "commit"=>"Edit that task!", "id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.8ms) + + + +ArgumentError (wrong number of arguments (given 0, expected 1)): + +app/controllers/tasks_controller.rb:33:in `update' +Started PATCH "/tasks/8" for 127.0.0.1 at 2017-09-20 15:08:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZoqYQ5PWswWpNrL961GnOZ6L3cm6PdlReJefFgEGF9btf4OpqYBbNrBQR9u90ykFgOVrB6kMUpgUPwami3iFHQ==", "task"=>{"name"=>"Call mom", "description"=>"she's in spain", "due_date"=>""}, "commit"=>"Edit that task!", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + + + +ArgumentError (wrong number of arguments (given 0, expected 1)): + +app/controllers/tasks_controller.rb:33:in `update' +Started PATCH "/tasks/8" for 127.0.0.1 at 2017-09-20 15:09:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZoqYQ5PWswWpNrL961GnOZ6L3cm6PdlReJefFgEGF9btf4OpqYBbNrBQR9u90ykFgOVrB6kMUpgUPwami3iFHQ==", "task"=>{"name"=>"Call mom", "description"=>"she's in spain", "due_date"=>""}, "commit"=>"Edit that task!", "id"=>"8"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.9ms) + + + +NoMethodError (undefined method `update_all' for # +Did you mean? updated_at + updated_at= + updated_at?): + +app/controllers/tasks_controller.rb:33:in `update' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:12: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 (1.7ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:15:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.7ms) +Completed 500 Internal Server Error in 35ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (Invalid CSS after " padding: ": expected expression (e.g. 1px, bold), was ";"): + 4: BusyBee + 5: <%= csrf_meta_tags %> + 6: + 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + 9: + 10: + +app/assets/stylesheets/tasks.scss:25 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb___731541804799749403_70148580517080' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:15: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 (1.8ms) +Completed 200 OK in 53ms (Views: 50.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:16: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.1ms) +Completed 200 OK in 37ms (Views: 35.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:16: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.0ms) +Completed 200 OK in 52ms (Views: 50.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:16: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 53ms (Views: 51.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:16: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.5ms) +Completed 200 OK in 50ms (Views: 47.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:18: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 40ms (Views: 37.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:19: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.0ms) +Completed 200 OK in 39ms (Views: 37.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:19: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 (1.6ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:19: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.8ms) +Completed 200 OK in 36ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:19: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 (1.9ms) +Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:19: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.7ms) +Completed 200 OK in 32ms (Views: 29.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:20: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.8ms) +Completed 200 OK in 43ms (Views: 41.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:21:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 21.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:21: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 (1.9ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:21:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 23ms (Views: 18.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:21:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["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.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-20 15:21:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["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: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:23: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 (1.7ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:23:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 22ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:24:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 17ms (Views: 14.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:25:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 19ms (Views: 16.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:25:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 19ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:25:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 18ms (Views: 15.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:25:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:26:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 23ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:27:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 18ms (Views: 14.9ms | ActiveRecord: 0.1ms) + + +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.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 17ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:27:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 19ms (Views: 15.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:27:31 -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 24ms (Views: 21.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15: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 (2.3ms) +Completed 200 OK in 31ms (Views: 27.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:27:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:27:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:28: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.3ms) +Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:28:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 32ms (Views: 28.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:28:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 32ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-20 15:28:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 36ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-20 15:28:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 24ms (Views: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/7" for 127.0.0.1 at 2017-09-20 15:28:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 9: + 10: + 11:
  • + 12: <%= "Due: #{@task.due_date.strftime("%A %B %d, %Y")}" %> + 13: + 14:
  • + 15: + +app/views/tasks/show.html.erb:12:in `_app_views_tasks_show_html_erb___2022616394815612444_70148625819980' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:29: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.8ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for 127.0.0.1 at 2017-09-20 15:29:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.1ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 9: + 10: + 11:
  • + 12: <%= "Due: #{@task.due_date.strftime("%A %B %d, %Y")}" %> + 13: + 14:
  • + 15: + +app/views/tasks/show.html.erb:12:in `_app_views_tasks_show_html_erb___2022616394815612444_70148573320060' +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:29: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.6ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-20 15:29:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/7" for 127.0.0.1 at 2017-09-20 15:29:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.3ms) +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `strftime' for nil:NilClass): + 9: + 10: + 11:
  • + 12: <%= "Due: #{@task.due_date.strftime("%A %B %d, %Y")}" %> + 13: + 14:
  • + 15: + +app/views/tasks/show.html.erb:12:in `_app_views_tasks_show_html_erb___2022616394815612444_70148579082200' +Started GET "/tasks/7" for 127.0.0.1 at 2017-09-20 15:30:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:12: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +append=( if @task.due == nil );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:13: void value expression +( return "Due: No due date" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_else +e;@output_buffer.append=( else );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: void value expression +.strftime("%A %B %d, %Y")}" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:26: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:12: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +append=( if @task.due == nil );@output_buffer.safe_append=' +app/views/tasks/show.html.erb:13: void value expression +app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_else +app/views/tasks/show.html.erb:15: void value expression +app/views/tasks/show.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:26: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:31:06 -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 23ms (Views: 20.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:31:06 -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 GET "/tasks" for 127.0.0.1 at 2017-09-20 15:31: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 (1.8ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:31:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:12: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +append=( if @task.due == nil );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:13: void value expression +( return "Due: No due date" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_else +e;@output_buffer.append=( else );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: void value expression +.strftime("%A %B %d, %Y")}" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:26: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:12: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +append=( if @task.due == nil );@output_buffer.safe_append=' +app/views/tasks/show.html.erb:13: void value expression +app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_else +app/views/tasks/show.html.erb:15: void value expression +app/views/tasks/show.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:26: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:31:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:12: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +d=( if @task.due_date == nil );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:13: void value expression +( return "Due: No due date" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_else +e;@output_buffer.append=( else );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: void value expression +.strftime("%A %B %d, %Y")}" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:26: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:12: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +app/views/tasks/show.html.erb:13: void value expression +app/views/tasks/show.html.erb:14: syntax error, unexpected keyword_else +app/views/tasks/show.html.erb:15: void value expression +app/views/tasks/show.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:24: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:26: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:34:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:14: void value expression +( return "Due: No due date" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_else +e;@output_buffer.append=( else );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:25: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:27: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:14: void value expression +app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_else +app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:25: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:27: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:35:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:14: void value expression +( return "Due: No due date" );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_else +e;@output_buffer.append=( else );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')' + end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:25: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:27: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:14: void value expression +app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_else +app/views/tasks/show.html.erb:17: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:25: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:27: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:36:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["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.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:36: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.3ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:36:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.8ms) +Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:37:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 17ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:38:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:38:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["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: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:38:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 17ms (Views: 14.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:39:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:39:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 24ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:39:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 24ms (Views: 21.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:41: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.8ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-20 15:41:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:42: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 24ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:42:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 22ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:42:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["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.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:42:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["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.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:43:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["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.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:43:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["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: 20.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:45:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:46:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:46:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:46:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["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: 21.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:47:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["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.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15: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.2ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for 127.0.0.1 at 2017-09-20 15:47:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-20 15:47:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.5ms) +Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-20 15:47:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 23ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:48:39 -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 23ms (Views: 20.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:49:03 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"fvuXDgPUgkdRO2VnOy5kZjiUoSPpzPQx0nwhdCAJXeCbErGorcRu846GmyhoXDjpAo+om3D+o6HJFxMgOtKjdw==", "task"=>{"name"=>"Call dad", "description"=>"Give him a ring on Friday", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call dad"], ["description", "Give him a ring on Friday"], ["due_date", "2017-09-22"], ["created_at", "2017-09-20 22:49:03.475037"], ["updated_at", "2017-09-20 22:49:03.475037"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:49: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: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9" for 127.0.0.1 at 2017-09-20 15:49:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 23ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:49:34 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.0ms) +Completed 200 OK in 29ms (Views: 26.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:49:56 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"8RtMN8+CdtP97D7vEF5TWmMOFUAQrZs/Cn963bgXh1cU8mqRYZKaZyJRwKBDLA/VWRUc+ImfzK8RFEiJosx5wA==", "task"=>{"name"=>"do homework", "description"=>"need to go through list of tasks that i haven't gotten to yet and are on the white board ", "due_date"=>"2017-09-25"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "do homework"], ["description", "need to go through list of tasks that i haven't gotten to yet and are on the white board "], ["due_date", "2017-09-25"], ["created_at", "2017-09-20 22:49:56.936011"], ["updated_at", "2017-09-20 22:49:56.936011"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:49:56 -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 21ms (Views: 18.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/10" for 127.0.0.1 at 2017-09-20 15:49:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["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: 19.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/10" for 127.0.0.1 at 2017-09-20 15:50:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["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: 15.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:50: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 (2.4ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:50:47 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"MmdlW5CEQOebLplg8eMTw4pxVGy15qSDJUcjb2hP6+y5kn6xqtKo1IJIbEanYZ3/lB/ioqbXL0pJ77rf4jF5Jw==", "task"=>{"name"=>"do homework", "description"=>"need to go through list of tasks that i haven't gotten to yet and are on the white board ", "due_date"=>"2017-09-25"}, "commit"=>"Add that task!"} +  (0.0ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "do homework"], ["description", "need to go through list of tasks that i haven't gotten to yet and are on the white board "], ["due_date", "2017-09-25"], ["created_at", "2017-09-20 22:50:47.776541"], ["updated_at", "2017-09-20 22:50:47.776541"]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:50: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.3ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-20 15:53:09 -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 22ms (Views: 19.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-20 15:53:28 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"s1a0MofdS5exDj7QlLg8PnhfWrxVt9sN9LxDnZuBtLZWv5KUKc2nI26zwJ/HymCxQkRTBMyFjJ3v13HJgVpKIQ==", "task"=>{"name"=>"budget", "description"=>"create a budget for next week", "due_date"=>"2017-09-30"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "budget"], ["description", "create a budget for next week"], ["due_date", "2017-09-30"], ["created_at", "2017-09-20 22:53:28.113297"], ["updated_at", "2017-09-20 22:53:28.113297"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:53: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 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for 127.0.0.1 at 2017-09-20 15:53:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 24ms (Views: 21.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-20 15:53: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.2ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 08:40: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 (30.9ms) +Completed 200 OK in 95ms (Views: 79.8ms | ActiveRecord: 3.7ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 08:40:56 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (7.1ms) +Completed 200 OK in 47ms (Views: 44.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 08:41:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"jvPlvBN9urBQbT6kQMs20s0wu4bqOCVLVg/BXpY9y19rGsMavW1WBI/QwOsTuWpd9yuyPnMKcttNZPMKjOY1yA==", "utf8"=>"✓", "task"=>{"name"=>"Call dad", "description"=>"almost his bday", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!"} +  (0.2ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call dad"], ["description", "almost his bday"], ["due_date", "2017-09-22"], ["created_at", "2017-09-21 15:41:10.945862"], ["updated_at", "2017-09-21 15:41:10.945862"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 37ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 08:41: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 (3.8ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for 127.0.0.1 at 2017-09-21 08:41:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 08:41: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 (3.0ms) +Completed 200 OK in 28ms (Views: 25.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 08:41:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 08:41:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 23ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:41:33 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:42:14 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:42:59 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:43:02 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:43:16 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:45:41 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:45:53 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:45:55 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:46:23 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:46:36 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:46:50 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:48:10 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:49:14 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 08:49:19 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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 PATCH "/tasks" for 127.0.0.1 at 2017-09-21 09:28:07 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/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/1" for 127.0.0.1 at 2017-09-21 09:28:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 31ms (Views: 16.7ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:28:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 09:28:26 -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 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:28:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 2ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 09:28:40 -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.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/ediy" for 127.0.0.1 at 2017-09-21 09:28:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/ediy"): + +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/1/edit" for 127.0.0.1 at 2017-09-21 09:29:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.1ms) commit transaction + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 1.1ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 4: + 6: + 7: <%= form_for @task do |f| %> + 8: <%= f.label :name %> + 9: <%= f.text_field :name %> + 10: + +app/views/tasks/edit.html.erb:7:in `_app_views_tasks_edit_html_erb__3261763465248169043_70148640163380' +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:29:16 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 4: + 6: + 7: <%= form_for @task do |f| %> + 8: <%= f.label :name %> + 9: <%= f.text_field :name %> + 10: + +app/views/tasks/edit.html.erb:7:in `_app_views_tasks_edit_html_erb__3261763465248169043_70148563284780' +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:29:29 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 2:

    Edit that Task

    + 3: + 4: + 5: <%= form_for @task do |f| %> + 6: <%= f.label :name %> + 7: <%= f.text_field :name %> + 8: + +app/views/tasks/edit.html.erb:5:in `_app_views_tasks_edit_html_erb__3261763465248169043_70148644141100' +Started GET "/tasks/1/" for 127.0.0.1 at 2017-09-21 09:29:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:29:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 32ms (Views: 17.5ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:31:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"l2Ls4i53pjlMz1AJVUDrX3pS4ZCb5vDjBRJYTJURk4Acl/cIFCFOClWppS8DwmVjZDxXXojXeyppusH8H28BSw==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-22"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + + + +ArgumentError (wrong number of arguments (given 0, expected 1)): + +app/controllers/tasks_controller.rb:33:in `update' +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:31:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"l2Ls4i53pjlMz1AJVUDrX3pS4ZCb5vDjBRJYTJURk4Acl/cIFCFOClWppS8DwmVjZDxXXojXeyppusH8H28BSw==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-22"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 14ms (ActiveRecord: 0.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 09:31: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.0ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 09:31:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 22ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:31:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:31:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"QWuST8GzrMGwKJXhgMuSdvPgCh2rHRREaPsh8RPet4XKnoml++VE8qlOYMfWSRxK7Y6807gsn40EU7hBmaAlTg==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-22"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 09:31: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.0ms) +Completed 200 OK in 18ms (Views: 15.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 09:31:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:37:06 -0700 + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL + task_updates = (name: params[:task][:name], descrip + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL, expecting '=' +ms[:task][:name], description: params[:task][:description], + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL, expecting '=' +task][:description], due_date: params[:task][:due_date]) + ^): + +app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL +app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL, expecting '=' +app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL, expecting '=' +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:38:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 32ms (Views: 17.2ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:38:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PKlF1B0xb1Men18jI70MDkgXvv62ODkyrQ1uFmKTgEa3XF4+J2eHYAf5qgV1P4IyVnkIMKUJsvvBpfem6O0SjQ==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-22"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 127ms (ActiveRecord: 0.1ms) + + + +NameError (undefined local variable or method `task_updates' for # +Did you mean? task_update): + +app/controllers/tasks_controller.rb:35:in `update' +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:38:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PKlF1B0xb1Men18jI70MDkgXvv62ODkyrQ1uFmKTgEa3XF4+J2eHYAf5qgV1P4IyVnkIMKUJsvvBpfem6O0SjQ==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-22"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) rollback transaction +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.8ms) + + + +ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError): + +app/controllers/tasks_controller.rb:35:in `update' +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:42:00 -0700 + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL +task][:description], due_date: params[:task][:due_date] + ^): + +app/controllers/tasks_controller.rb:32: syntax error, unexpected tLABEL +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:42:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PKlF1B0xb1Men18jI70MDkgXvv62ODkyrQ1uFmKTgEa3XF4+J2eHYAf5qgV1P4IyVnkIMKUJsvvBpfem6O0SjQ==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-22"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-22"], ["updated_at", "2017-09-21 16:42:27.518533"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 19ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 09:42: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 23ms (Views: 21.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 09:42:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 47ms (Views: 43.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:42:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["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.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:42:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"zgNdB6fq2nSFwvm7Vv/q5Gkr2XUrbYrHsD97WPZNGtdF9kbtnbwyR5ykDJ0AfWTYd0VvuzhcAQ7cl+LofDOIHA==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-21 16:42:37.738337"], ["id", 1]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 09:42: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 (3.4ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 09:42:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 30ms (Views: 26.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 09:45:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 42ms (Views: 24.1ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 09:45:31 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.4ms) +Completed 200 OK in 45ms (Views: 42.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 09:45:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hc0UhQXzCiTiQzKWKqJcaAr1CoGBZ4n+aCmCrixT+2gOOA9vP6XiF/slx7B8INJUFJu8T5JWAjcEgRsepi1pow==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-23"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-23"], ["updated_at", "2017-09-21 16:45:36.310589"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 09:45:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 09:53:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["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.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 09:53:54 -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 (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(@task)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +"(task.name, task_path(@task)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' +

    Mark Complete | Edit | Delete

    + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected '<' + <% end );@output_buffer.safe_ap + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:14: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:16: syntax error, unexpected '<' +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 10:18:37 -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 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(@task)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +"(task.name, task_path(@task)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' +

    Mark Complete | Edit | Delete

    + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected '<' + <% end );@output_buffer.safe_ap + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:14: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:16: syntax error, unexpected '<' +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 10:21:34 -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 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(task.id)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +task.name, task_path(task.id)) );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 10:22:21 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(task.id)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +task.name, task_path(task.id)) );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 10:22:42 -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 (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(task.id)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +task.name, task_path(task.id)) );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 10:22:46 -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 (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(task.id)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +task.name, task_path(task.id)) );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:22:51 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(task.id)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +task.name, task_path(task.id)) );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:13: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:13: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:22: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:24: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:23: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 (1.9ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:23:23 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(task.id)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +task.name, task_path(task.id)) );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:12: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:12: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:23:31 -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 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected '(', expecting ')' +uffer.append=( link_to "Edit"(task.name, task_path(task.id)) + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:12: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +task.name, task_path(task.id)) );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:12: syntax error, unexpected '(', expecting ')' +app/views/tasks/index.html.erb:12: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +app/views/tasks/index.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:23:40 -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.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:25: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 (3.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 9:
  • + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(@task.id), method: :get%> + 13:

    Mark Complete | Delete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148644077060' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148644077060' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:25: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.4ms) +Completed 200 OK in 17ms (Views: 15.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 10:25:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.7ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:25: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 (3.4ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 9:
  • + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(@task.id), method: :get%> + 13:

    Mark Complete | Delete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148641604500' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148641604500' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:26: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 (3.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 8: <% @tasks.each do |task| %> + 9:
  • + 10: + 11: <%= link_to(task.name, task_path(@task.id)) %> + 12: <%=button_to "Edit", edit_task_path(@task.id), method: :get%> + 13:

    Mark Complete | Delete

    + 14:
  • + +app/views/tasks/index.html.erb:11:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148632434600' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148632434600' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:26: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 (3.5ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `name' for nil:NilClass): + 8: <% @tasks.each do |task| %> + 9:
  • + 10: + 11: <%= link_to(@task.name, task_path(@task.id)) %> + 12: <%=button_to "Edit", edit_task_path(@task.id), method: :get%> + 13:

    Mark Complete | Delete

    + 14:
  • + +app/views/tasks/index.html.erb:11:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148563100800' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148563100800' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:26: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.6ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:27: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 (5.3ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 10:28: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 (6.5ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/1" for 127.0.0.1 at 2017-09-21 10:28:23 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +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/1" for 127.0.0.1 at 2017-09-21 10:28:29 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +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/1/edit" for 127.0.0.1 at 2017-09-21 10:28:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 10:28:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UwmKKtEwazQOxzQd71B3QvceY61W0lr4qV7YfRlIDpjY/JHA62aDBxehwTu50vl+6XDVY0Xj0THF9kHNkzacUw==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-21 17:28:37.365654"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 10:28:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 15:57: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 (7.9ms) +Completed 200 OK in 37ms (Views: 34.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 15:57:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 15:58:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/:id/edit" for 127.0.0.1 at 2017-09-21 15:58:07 -0700 + +ActionController::RoutingError (No route matches [GET] "/:id/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 "/:id/edit" for 127.0.0.1 at 2017-09-21 15:58:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/:id/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/1" for 127.0.0.1 at 2017-09-21 15:58:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 22ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/edit" for 127.0.0.1 at 2017-09-21 15:58:33 -0700 + +ActionController::RoutingError (No route matches [GET] "/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/1" for 127.0.0.1 at 2017-09-21 15:59:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (246.1ms) +Completed 500 Internal Server Error in 253ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `edit_task' for #<#:0x007f997863c630> +Did you mean? edit_task_url): + 15: <% end %> + 16: + 17:
  • + 18: <%= link_to "Edit", edit_task %> + 19:
  • + 20: + 21: + +app/views/tasks/show.html.erb:18:in `_app_views_tasks_show_html_erb___2022616394815612444_70148563265880' +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 15:59:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (202.2ms) +Completed 500 Internal Server Error in 209ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `edit_task' for #<#:0x007f9981884f88> +Did you mean? edit_task_url): + 15: <% end %> + 16: + 17:
  • + 18: <%= link_to "Edit", edit_task %> + 19:
  • + 20: + 21: + +app/views/tasks/show.html.erb:18:in `_app_views_tasks_show_html_erb___2022616394815612444_70148639960320' +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:00:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:00:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 28ms (Views: 24.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 16:00:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JLUTENJ/3CywVHHAGGy4vtM71uWJNbZM6nVXzDzoQtZjoj13c76E0ktM1/j9lYn5mW81FgD1b4WlrTqQwdr9Tw==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Create database and begin filling it with data", "due_date"=>"2017-09-25"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-25"], ["updated_at", "2017-09-21 23:00:33.309846"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:00:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:00:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["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: 22.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 16:00:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"p8Szzn5rZfEV3DKLd++NMxLoLFI/t2H7vyh3LROdf/3g052p36o9D+7ElLOSFrx0WLzPobZ3uDLw8Bpx7q/AZA==", "task"=>{"name"=>"Complete Wave 1", "description"=>"Make sure database works", "due_date"=>"2017-09-25"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Make sure database works"], ["updated_at", "2017-09-21 23:00:46.791376"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 5ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:00:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:00:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.8ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 16:00:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"cAz2H+xn0Tk/6q2vIQtCQfKBlCHh+QLEL/TIb/Qlnhs3G9h4TaaJx8TyC5fE8nMGuNV30mg52w1gLKUzCRchgg==", "task"=>{"name"=>"Complete Wave 3", "description"=>"Make sure database works", "due_date"=>"2017-09-25"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "name" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "Complete Wave 3"], ["updated_at", "2017-09-21 23:00:52.768420"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:00:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:01:14 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 16:01:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"h/nvVrHvcCT3Cl84SLwQYH/DuZ21/tzbAB6oj9FavNjA7sExEC4o2gwS+QCtRSEnNZdabjw+BRJPxsXTLGgDQQ==", "task"=>{"name"=>"Complete Wave 3", "description"=>"Make sure database works", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-21 23:01:18.188253"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:01:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:01:46 -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 (7.4ms) +Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:01:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 16:01:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"aFd+FpLH+N3/Mtv+V8O61HeUBEoDq0zWPFXaQg0Ee6fjomX8qJEQ7uZULtgBQTToafqyhBCaxx9Q/UPyh3rpbA==", "task"=>{"name"=>"Complete Wave 3", "description"=>"Make sure database works", "due_date"=>"2017-09-23"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-23"], ["updated_at", "2017-09-21 23:01:51.284826"], ["id", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:01:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16: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 (7.1ms) +Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/1" for 127.0.0.1 at 2017-09-21 16:01:56 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +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/1" for 127.0.0.1 at 2017-09-21 16:01:59 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +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-21 16:04:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.1ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 13: <%=button_to "Delete", delete_task_path %> + 14: <%=button_to "Mark Complete", task_path(task.id) %> + 15: + 16: <% end %> + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148563873840' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148563873840' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:05: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 (3.1ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 13: <%=link_to "Delete", delete_task_path %> + 14: <%=link_to "Mark Complete", task_path(task.id) %> + 15: + 16: <% end %> + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148626296240' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148626296240' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:05: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 (11.6ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 1.1ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 13: <%=link_to "Delete", delete_task_path %> + 14: <%=link_to "Mark Complete", task_path(task.id) %> + 15: + 16: <% end %> + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148645417640' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148645417640' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:06: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 (6.5ms) +Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:06:06 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.5ms) +Completed 200 OK in 31ms (Views: 28.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:08:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (14.1ms) +Completed 200 OK in 40ms (Views: 35.5ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:08:32 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1/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/1/edit" for 127.0.0.1 at 2017-09-21 16:09:00 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1/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/1/edit" for 127.0.0.1 at 2017-09-21 16:09:03 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1/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/1/edit" for 127.0.0.1 at 2017-09-21 16:09:18 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1/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-21 16:09: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 (6.7ms) +Completed 200 OK in 30ms (Views: 28.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:09:23 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["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: 18.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 16:09:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"jP/rsiv+/dQQ/s9qKhCQBHra1h+t9AwSbiPxA9fISZQHCvBYEagV5wmYOkx8kh44ZLRg0b7Fh9sCi2izXbbbXw==", "task"=>{"name"=>"Complete Wave 3", "description"=>"Make sure database works", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-21 23:09:27.749148"], ["id", 1]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:09:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 29ms (Views: 26.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:09:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 26ms (Views: 22.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/1" for 127.0.0.1 at 2017-09-21 16:10:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"j8gL9rH2Af+QR76JfjOgdl4sGvMLqby+KuWSu9u6bs/I3yWREDdZAWtfGLGbypExFHj5AIJpZXdlPf/nJojRVg==", "task"=>{"name"=>"Complete Wave 3", "description"=>"Make sure database works", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:10:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:10: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 (5.9ms) +Completed 200 OK in 28ms (Views: 25.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:10:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:10:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:10:34 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.1ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:10:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:10:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for 127.0.0.1 at 2017-09-21 16:10:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"1"} + Task Load (1.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 27ms (Views: 22.7ms | ActiveRecord: 1.6ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:12:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 40ms (Views: 20.8ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:14:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (14.1ms) +Completed 200 OK in 44ms (Views: 37.8ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:14:14 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"bRBI0tdEajAqFSq2Vo0mkBZep7gJSsGUsbVk/Qmabi5DO1LjSZzxDrQKWkxtD2gGCvQy5f+Iexd4Sg23s/fYew==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks/1 +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/1" for 127.0.0.1 at 2017-09-21 16:14:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:15:39 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:16:22 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 9ms (ActiveRecord: 1.6ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:16:25 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:16:57 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 5ms (ActiveRecord: 0.8ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:18:13 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:18:36 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 8ms (ActiveRecord: 0.9ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:18:40 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=1): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:19:03 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} +Completed 500 Internal Server Error in 106ms + + + +NameError (undefined local variable or method `tasks' for # +Did you mean? tasks_url): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/1" for 127.0.0.1 at 2017-09-21 16:19:15 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"1"} +Completed 500 Internal Server Error in 128ms + + + +NameError (undefined local variable or method `tasks' for # +Did you mean? tasks_url): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/2" for 127.0.0.1 at 2017-09-21 16:19:18 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"KvlqV1dPUbDFjPbUz7YWZdkgorCooSPkrddaMbz9JdahDHG9bRm5g9zqA/KZNJhZx04UfruQqC3Bf8OBNoO3HQ==", "id"=>"2"} +Completed 500 Internal Server Error in 188ms + + + +NameError (undefined local variable or method `tasks' for # +Did you mean? tasks_url): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 16:19:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.1ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 13: <%=button_to "Delete", delete_task_path, method: :delete %> + 14: <%=button_to "Mark Complete", task_path(task.id) %> + 15: + 16: + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148624761700' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148624761700' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 16:20: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 (6.8ms) +Completed 200 OK in 29ms (Views: 27.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/2" for 127.0.0.1 at 2017-09-21 16:20:19 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"4UTcVIAhW9gl7a5gGfgP09p9Syj3y6syUfHE1Hb7fmdqsce+unez6zyLW0ZPeoHvxBP95uT6IPs9WV1k/IXsrA==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks/2 +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/2" for 127.0.0.1 at 2017-09-21 16:20:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=2): + +app/controllers/tasks_controller.rb:24:in `show' +Started GET "/tasks/2/edit" for 127.0.0.1 at 2017-09-21 16:20:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=2): + +app/controllers/tasks_controller.rb:28:in `edit' +Started GET "/tasks/2/edit" for 127.0.0.1 at 2017-09-21 16:20:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=2): + +app/controllers/tasks_controller.rb:28:in `edit' +Started POST "/tasks/3" for 127.0.0.1 at 2017-09-21 16:20:46 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/3"): + +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/2/edit" for 127.0.0.1 at 2017-09-21 16:20:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=2): + +app/controllers/tasks_controller.rb:28:in `edit' +Started GET "/tasks/2/edit" for 127.0.0.1 at 2017-09-21 16:20:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=2): + +app/controllers/tasks_controller.rb:28:in `edit' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 16:21: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 (4.1ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/3/edit" for 127.0.0.1 at 2017-09-21 16:21:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 21ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3" for 127.0.0.1 at 2017-09-21 16:21:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3iqGf3J2irfnMab1NMRsdJL9LGdGpyhSJuSUYHaevLZV352VSCBihP5XU9NiRuJIjJOaqVWWo5tKTA3Q/OAufQ==", "task"=>{"name"=>"Do CS HW", "description"=>"Look at CS50 videos and review notes", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-21 23:21:42.676990"], ["id", 3]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 6ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-21 16:21:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 15.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:21:46 -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 (4.7ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.4ms) + + +Started POST "/tasks/3" for 127.0.0.1 at 2017-09-21 16:21:48 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/3"): + +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/3" for 127.0.0.1 at 2017-09-21 16:22:45 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/3"): + +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-21 16:22: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 (4.1ms) +Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/3" for 127.0.0.1 at 2017-09-21 16:22:50 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"4WxrQTt8bKZYjGbYQCTaPCPYUhYSrmEFSguktq2QCtNqmXCrASqElUHqk/4WplQAPbbk2AGf6swmoz0GJ+6YGA==", "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/3 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-21 16:22:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=3): + +app/controllers/tasks_controller.rb:24:in `show' +Started GET "/tasks/3" for 127.0.0.1 at 2017-09-21 16:23:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +Completed 404 Not Found in 7ms (ActiveRecord: 1.2ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=3): + +app/controllers/tasks_controller.rb:24:in `show' +Started GET "/tasks/3/delete" for 127.0.0.1 at 2017-09-21 16:24:02 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/3/delete"): + +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/3/delete" for 127.0.0.1 at 2017-09-21 16:24:23 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/3/delete"): + +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/3/delete" for 127.0.0.1 at 2017-09-21 16:24:56 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/3/delete"): + +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-21 16:25:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (109.8ms) +Completed 500 Internal Server Error in 118ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (undefined method `delete_task' for #<#:0x007f99784d6188> +Did you mean? delete_task_url): + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 13: <%=button_to "Delete", delete_task(task.id), method: :delete %> + 14:

    Mark Complete | Delete

    + 15: + 16: <% end %> + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148562537200' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148562537200' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:25: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 (133.8ms) +Completed 500 Internal Server Error in 142ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `delete_task' for #<#:0x007f9978624a80> +Did you mean? delete_task_url): + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 13: + 14:

    Mark Complete | Delete

    + 15: + 16: <% end %> + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148563221300' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148563221300' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:25: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 (199.8ms) +Completed 500 Internal Server Error in 217ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined method `delete_task' for #<#:0x007f997fbab790> +Did you mean? delete_task_url): + 10: + 11: <%= link_to(task.name, task_path(task.id)) %> + 12: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 13: + 14:

    Mark Complete | Delete

    + 15: + 16: <% end %> + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148624846560' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148624846560' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:26: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 (181.8ms) +Completed 500 Internal Server Error in 187ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f99808f3c18> +Did you mean? @tasks): + 18: + 19: + 20: + 21: + +app/views/tasks/index.html.erb:21:in `_app_views_tasks_index_html_erb___4435418077258163873_70148562151100' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:26: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.6ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4/edit" for 127.0.0.1 at 2017-09-21 16:26:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 22ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/4" for 127.0.0.1 at 2017-09-21 16:26:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"aKPg0bEpeg4PL8K7TsOfkcqWBVNhzO7/d5iUFgjslhHjVvs7i3+SPRZJN50YQRGt1PiznXL9ZTYbMA2mgpIE2g==", "task"=>{"name"=>"Plan your week", "description"=>"Take time to answer the important questions", "due_date"=>"2017-09-21"}, "commit"=>"Edit that task!", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-21"], ["updated_at", "2017-09-21 23:26:43.141017"], ["id", 4]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/4 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-21 16:26:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:29: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 (3.8ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 9:
  • + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%= link_to "Delete", delete_task_path %> + 13:

    Mark Complete | Delete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148563816340' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148563816340' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:29: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 (175.8ms) +Completed 500 Internal Server Error in 182ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f997fe1f6c0> +Did you mean? @tasks): + 18: + 19: + 20: + 21: + +app/views/tasks/index.html.erb:21:in `_app_views_tasks_index_html_erb___4435418077258163873_70148626145940' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16: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.9ms) +Completed 200 OK in 28ms (Views: 26.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-21 16:29:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/4/edit" for 127.0.0.1 at 2017-09-21 16:29:53 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/4" for 127.0.0.1 at 2017-09-21 16:29:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"bfw8FNnBY5/IKIuZwG6PWfmsoPS52nDW328TtP1QJkyFoq42lL4V28Mb5jxBq4QA1CqLU5bfies076TZ7JcWQw==", "task"=>{"name"=>"Plan your week", "description"=>"Take time to answer the important questions", "due_date"=>"2017-09-21"}, "commit"=>"Edit that task!", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/4 +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-21 16:29:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (10.8ms) +Completed 200 OK in 29ms (Views: 27.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-21 16:32:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 36ms (Views: 22.1ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:32: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.9ms) +Completed 200 OK in 26ms (Views: 24.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for 127.0.0.1 at 2017-09-21 16:32:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 26ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13/edit" for 127.0.0.1 at 2017-09-21 16:32:18 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (3.0ms) +Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:32: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 (4.3ms) +Completed 200 OK in 28ms (Views: 25.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-21 16:32:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:33: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 (3.7ms) +Completed 200 OK in 32ms (Views: 28.5ms | ActiveRecord: 0.3ms) + + From 8366341aea2e362e469591ee4f0a26167808f5c4 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Thu, 21 Sep 2017 17:59:02 -0700 Subject: [PATCH 4/9] Add delete button to main index page with text box confirming delete --- app/controllers/tasks_controller.rb | 7 +- app/views/tasks/delete.html.erb | 23 +- app/views/tasks/index.html.erb | 6 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 1641 +++++++++++++++++++++++++++ 5 files changed, 1667 insertions(+), 10 deletions(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 3d72ba11d..a9b674a02 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -43,10 +43,9 @@ def update end def destroy - @task = Task.find(params[:id]).destroy - - # @task.destroy - redirect_to task_path + @task = Task.find(params[:id]) + @task.destroy + redirect_to tasks_path end diff --git a/app/views/tasks/delete.html.erb b/app/views/tasks/delete.html.erb index 287e41d1b..d6b9c4a45 100644 --- a/app/views/tasks/delete.html.erb +++ b/app/views/tasks/delete.html.erb @@ -1,6 +1,21 @@ +
    -

    Delete Task

    +

    Delete Task

    -

    - Are you sure you want to delete this task? -

    + <%= form_tag "/task/:id", class: "delete_task", method: :delete do %> + + + + + + + + + + <% end %> + +
    diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index fbc0b97bd..54d85c03e 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -9,8 +9,10 @@
  • <%= link_to(task.name, task_path(task.id)) %> <%=button_to "Edit", edit_task_path(task.id), method: :get%> - <%= link_to "Delete", delete_task_path(task.id) %> -

    Mark Complete | Delete

    + <%=button_to "Delete", delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure?"} %> + + +

    Mark Complete

  • <% end %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index d07c7b1abd342cbf293c31a609a4b6bd7b654c74..e8c374e896690095783c69a0973d259446805ec7 100644 GIT binary patch delta 376 zcmZp8z}WDBae_3X!$cWpMu&|F3;iV-fIxtOfqw;mDBl;(y$HBjDu9`bg@J+f@nprQ z3=pGya&OdX7M?(c^*~1Jj zXs&BuscU4UU|?WnY+z+-u4id(ZenJFTP9G5lR;Ec5oAGDVp(QJYEDkR0$jO=DVzy2 z)5KWM(8Acj*ci7=m?$TMtUlP$&WSlWAeTtk I;{_N+0j^kJYXATM delta 300 zcmZp8z}WDBae_3X(nJ|&Mx~7j3;iW|pEGcA?q%Sw<*nys;#tiT$o-t#f~%8DcC%Cf zGZ#x14=2N9#i$IHMjdXh$-PmlfebDXqjmD_Xr9Suqgz-aIDkq*W5QTM*@2ApF~Ka= zY(NHEY$Zz?D<{L|=Ga2UdPm2g#LS#xg|z%4g{b`8q|DS}=ltA)oYaz3g`Cu~)Eosv zg~YrRg_6YVRE50!lGI`&14DCN14~^a0~pKD(j`AH6~R+5GPW`>vNAE#GchwaHAGT} zF2lgbz|hB_ovFwm?byh`!a4bMtk-1!IO)j&ahw8%Ak{`@Rwl-Jh9-svhKv8l3o!Bm E02wh*>;M1& diff --git a/log/development.log b/log/development.log index 6bcea1ade..b6c84bfbe 100644 --- a/log/development.log +++ b/log/development.log @@ -7368,3 +7368,1644 @@ Processing by TasksController#index as HTML Completed 200 OK in 32ms (Views: 28.5ms | ActiveRecord: 0.3ms) +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-21 16:36:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 25ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-21 16:36:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:42: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 (125.4ms) +Completed 500 Internal Server Error in 132ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `delete_tasks_path' for #<#:0x007f997874a9a0> +Did you mean? delete_task_path + delete_task_url + edit_task_path): + 9:
  • + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%= link_to "Delete", delete_tasks_path(task.id) %> + 13:

    Mark Complete | Delete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148563819280' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148563819280' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:42: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 (3.2ms) +Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-21 16:42:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 37ms (Views: 33.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:47:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.2ms) +Completed 200 OK in 33ms (Views: 27.2ms | ActiveRecord: 0.9ms) + + +Started DELETE "/tasks/5" for 127.0.0.1 at 2017-09-21 16:47:58 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"5"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 5]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/5 +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks/5" for 127.0.0.1 at 2017-09-21 16:47:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=5): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/6" for 127.0.0.1 at 2017-09-21 16:48:08 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 6]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/6 +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks/6" for 127.0.0.1 at 2017-09-21 16:48:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=6): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/5" for 127.0.0.1 at 2017-09-21 16:48:19 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=5): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/6" for 127.0.0.1 at 2017-09-21 16:48:45 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.2ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=6): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/6" for 127.0.0.1 at 2017-09-21 16:48:48 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=6): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/4" for 127.0.0.1 at 2017-09-21 16:48:51 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks/4 +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/4" for 127.0.0.1 at 2017-09-21 16:48:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=4): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/5" for 127.0.0.1 at 2017-09-21 16:48:54 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=5): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/6" for 127.0.0.1 at 2017-09-21 16:48:57 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"6"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=6): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/7" for 127.0.0.1 at 2017-09-21 16:48:59 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/7 +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks/7" for 127.0.0.1 at 2017-09-21 16:48:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"7"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=7): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/8" for 127.0.0.1 at 2017-09-21 16:49:03 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"UdCFZM+6vpOkcV+QWr8ngags0eAazX+VeXqwlk3N6U3aJZ6O9exWoL0XqrYMPam9tkJnLgn89FwV0ikmx7N7hg==", "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 8]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks/8 +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks/8" for 127.0.0.1 at 2017-09-21 16:49:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=8): + +app/controllers/tasks_controller.rb:24:in `show' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:49:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.7ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 9:
  • + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%= link_to "Delete", delete_task_path, method: :delete %> + 13:

    Mark Complete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148641490280' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148641490280' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:49:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (20.2ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 9:
  • + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%= link_to "Delete", delete_task_path, method: :delete %> + 13:

    Mark Complete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148612540700' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148612540700' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 16:50:04 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 9:
  • + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%= link_to "Delete", delete_task_path, method: :delete %> + 13:

    Mark Complete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148573867180' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148573867180' +Started GET "/" for 127.0.0.1 at 2017-09-21 16:50:11 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendering /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb + Rendered /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb (3.1ms) +Completed 200 OK in 9ms (Views: 5.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:50: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 (3.2ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks"}, missing required keys: [:id]): + 9:
  • + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%= link_to "Delete", delete_task_path, method: :delete %> + 13:

    Mark Complete

    + 14:
  • + 15: <% end %> + +app/views/tasks/index.html.erb:12:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148573313560' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148573313560' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:51: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 (2.0ms) +Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/10" for 127.0.0.1 at 2017-09-21 16:51:08 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"vLw/zZd1E06nQVZeK8uywOGXnr9ekLXKMD1JzdtI+cY3SSQnrSP7fb4no3h9STz8//kocU2hPgNcldB9UTZrDQ==", "id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks/10 +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks/10" for 127.0.0.1 at 2017-09-21 16:51:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=10): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/10" for 127.0.0.1 at 2017-09-21 16:51:13 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"vLw/zZd1E06nQVZeK8uywOGXnr9ekLXKMD1JzdtI+cY3SSQnrSP7fb4no3h9STz8//kocU2hPgNcldB9UTZrDQ==", "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=10): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/11" for 127.0.0.1 at 2017-09-21 16:51:16 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"vLw/zZd1E06nQVZeK8uywOGXnr9ekLXKMD1JzdtI+cY3SSQnrSP7fb4no3h9STz8//kocU2hPgNcldB9UTZrDQ==", "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 11]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks/11 +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/11" for 127.0.0.1 at 2017-09-21 16:51:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=11): + +app/controllers/tasks_controller.rb:24:in `show' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:51:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.6ms) +Completed 200 OK in 33ms (Views: 26.8ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/9" for 127.0.0.1 at 2017-09-21 16:51:49 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mNySDi15wv9JteXxqHiK5wBg94NDJwtSyJYqtF/K2bgTKYnkFy8qzFDTENf++gTbHg5BTVAWgJukPrME1bRLcw==", "id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 9]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks/9 +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/9" for 127.0.0.1 at 2017-09-21 16:51:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.2ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=9): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/12" for 127.0.0.1 at 2017-09-21 16:51:56 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mNySDi15wv9JteXxqHiK5wBg94NDJwtSyJYqtF/K2bgTKYnkFy8qzFDTENf++gTbHg5BTVAWgJukPrME1bRLcw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks/12 +Completed 302 Found in 4ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/12" for 127.0.0.1 at 2017-09-21 16:51:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=12): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/13" for 127.0.0.1 at 2017-09-21 16:52:02 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mNySDi15wv9JteXxqHiK5wBg94NDJwtSyJYqtF/K2bgTKYnkFy8qzFDTENf++gTbHg5BTVAWgJukPrME1bRLcw==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks/13 +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/13" for 127.0.0.1 at 2017-09-21 16:52:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=13): + +app/controllers/tasks_controller.rb:24:in `show' +Started DELETE "/tasks/12" for 127.0.0.1 at 2017-09-21 16:52:06 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mNySDi15wv9JteXxqHiK5wBg94NDJwtSyJYqtF/K2bgTKYnkFy8qzFDTENf++gTbHg5BTVAWgJukPrME1bRLcw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=12): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/13" for 127.0.0.1 at 2017-09-21 16:52:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mNySDi15wv9JteXxqHiK5wBg94NDJwtSyJYqtF/K2bgTKYnkFy8qzFDTENf++gTbHg5BTVAWgJukPrME1bRLcw==", "id"=>"13"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=13): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/12" for 127.0.0.1 at 2017-09-21 16:52:12 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mNySDi15wv9JteXxqHiK5wBg94NDJwtSyJYqtF/K2bgTKYnkFy8qzFDTENf++gTbHg5BTVAWgJukPrME1bRLcw==", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=12): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:52:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:52:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 16:52:29 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.8ms) +Completed 200 OK in 30ms (Views: 27.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 16:52:36 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"2VPZ5j+1R1CG5FfC/tFuj7TDhT25M7ae3yqG8uZMVUE8uv9AkaWr5FlZqY2tozIAjtiMhSAB4Q7EQbSm/Jer1g==", "utf8"=>"✓", "task"=>{"name"=>"call mom", "description"=>"hello", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "call mom"], ["description", "hello"], ["due_date", "2017-09-22"], ["created_at", "2017-09-21 23:52:36.530447"], ["updated_at", "2017-09-21 23:52:36.530447"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:52: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 (1.8ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/14" for 127.0.0.1 at 2017-09-21 16:52:38 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"sq01ebMURvR9oOd4xwvhsC5VF3VEyRcW+4WUKL+ZFLc5WC6TiUKux2TGEl6RiW+MMDuhu1f4nN+XLQ2YNeeGfA==", "id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks/14 +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/14" for 127.0.0.1 at 2017-09-21 16:52:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=14): + +app/controllers/tasks_controller.rb:24:in `show' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 16:52:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 16:52:52 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 16:52:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"0emqG3fH93H/kuBBKvArnYOIwBq6c0V0zour9qSUuIU0AIy92dcbxSAvHg55gncSuZPJoiNBEuTV4Jmivk9GEg==", "utf8"=>"✓", "task"=>{"name"=>"Call dad", "description"=>"jeldnfjs", "due_date"=>""}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Call dad"], ["description", "jeldnfjs"], ["created_at", "2017-09-21 23:52:58.302811"], ["updated_at", "2017-09-21 23:52:58.302811"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:52: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 22ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 16:53:01 -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 28ms (Views: 25.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 16:53:08 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"iX3Gu2718/jbA/wo8AmVK9w1cNk8kBOKsZignYUVbV9slOAdwOUfTAS+Ameje8mk5i55YaWiRBqq85LJn86TyA==", "utf8"=>"✓", "task"=>{"name"=>"bibi", "description"=>"njdsl", "due_date"=>"2017-09-25"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "bibi"], ["description", "njdsl"], ["due_date", "2017-09-25"], ["created_at", "2017-09-21 23:53:08.413685"], ["updated_at", "2017-09-21 23:53:08.413685"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:53: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 (1.8ms) +Completed 200 OK in 19ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 16:53:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 33ms (Views: 30.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 16:53:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.4ms) +Completed 200 OK in 22ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16" for 127.0.0.1 at 2017-09-21 16:53:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"yEOXxlHoU9Eot6HSuWuK5vC8DIe4qpQ5U/e0TYdRS31QTcFYy2w2f6clmRgWy6beKU5hkzOCX05fCgkXSD957A==", "task"=>{"name"=>"bibi", "description"=>"hello there", "due_date"=>"2017-09-25"}, "commit"=>"Edit that task!", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "hello there"], ["updated_at", "2017-09-21 23:53:17.565710"], ["id", 16]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/16 +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 16:53:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 16:53:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/15" for 127.0.0.1 at 2017-09-21 16:56:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"j5qS6rDKBMK+mtBTECNNX7NEbDFJJH00XbkGY7HI1f4Eb4kAipzs8af8JXVGocNjrSra/1oV9v0xEZ/TO7ZHNQ==", "id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 15]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/15 +Completed 302 Found in 16ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks/15" for 127.0.0.1 at 2017-09-21 16:56:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=15): + +app/controllers/tasks_controller.rb:24:in `show' + Task Load (1.7ms) SELECT "tasks".* FROM "tasks" LIMIT ? [["LIMIT", 11]] +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:03:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 36ms (Views: 31.0ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/16/delete" for 127.0.0.1 at 2017-09-21 17:03:59 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasks/16/delete"): + +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 DELETE "/tasks/16/delete" for 127.0.0.1 at 2017-09-21 17:04:34 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasks/16/delete"): + +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-21 17:04:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 32ms (Views: 27.2ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/16/delete" for 127.0.0.1 at 2017-09-21 17:04:41 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasks/16/delete"): + +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 DELETE "/tasks/16/delete" for 127.0.0.1 at 2017-09-21 17:07:01 -0700 + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/config/routes.rb:17: syntax error, unexpected keyword_end): + +config/routes.rb:17: syntax error, unexpected keyword_end +Started DELETE "/tasks/16/delete" for 127.0.0.1 at 2017-09-21 17:07:14 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasks/16/delete"): + +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 DELETE "/tasks/16/delete" for 127.0.0.1 at 2017-09-21 17:07:40 -0700 + +ActionController::RoutingError (No route matches [DELETE] "/tasks/16/delete"): + +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/16/" for 127.0.0.1 at 2017-09-21 17:07:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 49ms (Views: 21.8ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 17:07:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (4.1ms) +Completed 200 OK in 27ms (Views: 23.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:07: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 (2.0ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:07:56 -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:38: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-21 17:18: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.5ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 17:18:34 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ewy8SxRh5h2Zn6ndP79957QfAeDyOvW5OqZQ4qH1AQqY+aehLjcOLoD5XPtpPfPbqnG3LuELfnBWDslSK4uTwQ==", "task"=>{"name"=>"bibi", "description"=>"hello there", "due_date"=>"2017-09-26"}, "commit"=>"Edit that task!", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-26"], ["updated_at", "2017-09-22 00:18:38.544489"], ["id", 16]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/16 +Completed 302 Found in 16ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 17:18:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.3ms) +Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"78CW7JC6qWbtlZStecs4TXtNKOc8sdHYfNOywhF2NA13zsByCj7MyGIHrGfWaxR1or9F87eZGq9wLg+Y3hgGnA==", "task"=>{"name"=>"bibi", "description"=>"hello ", "due_date"=>"2017-09-26"}, "commit"=>"Edit that task!", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "hello "], ["updated_at", "2017-09-22 00:18:43.361514"], ["id", 16]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/tasks/16 +Completed 302 Found in 6ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 17:18:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 27ms (Views: 24.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"2y6XGYy+3H+BRjG9NiVz4svGHTQaI57YK9kKh56ej2BDIMGHFjq50Q7UCXeZhV/aEjRwIJELVa8nJLfdUfC98Q==", "task"=>{"name"=>"world", "description"=>"hello ", "due_date"=>"2017-09-26"}, "commit"=>"Edit that task!", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "name" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "world"], ["updated_at", "2017-09-22 00:18:49.953646"], ["id", 16]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks/16 +Completed 302 Found in 5ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/16/edit" for 127.0.0.1 at 2017-09-21 17:18:54 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.2ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"6EHpFWk8+HCUdaXyTMSkD5IBOoy6PSowVQQRau/I2+dwT7+L87id3hvnnTjjZIg3S/NXmDEV4UdZ+awwIKbpdg==", "task"=>{"name"=>"world", "description"=>"hello ", "due_date"=>"2017-09-26"}, "commit"=>"Edit that task!", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/16 +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 17:18:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:19: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 (1.8ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:19:06 -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:38: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-21 17:19:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 32ms (Views: 25.8ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:19:40 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"DYsDbjaNX5FPQZDTLKFUjk89ajoLFeFcFnsaDvdlQBqGfhiEDNu3olYnZfV6I9qyUVPc9BgkapV604O+fRvS0Q==", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +Redirected to http://localhost:3000/tasks/16 +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 17:19:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 22ms (Views: 19.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 17:25:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 43ms (Views: 29.5ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:25: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 (1.7ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:25: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.8ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:25:50 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"NVH39Evt4iu/mNVGL1Ivd8mujHM869hyAKJ1rNggG+iwxPNLHAganQynpaBls15GfdDRgvLNym2rw5mkUmbNsQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `destroy' for nil:NilClass): + +app/controllers/tasks_controller.rb:47:in `destroy' +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:26:11 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"NVH39Evt4iu/mNVGL1Ivd8mujHM869hyAKJ1rNggG+iwxPNLHAganQynpaBls15GfdDRgvLNym2rw5mkUmbNsQ==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `destroy' for nil:NilClass): + +app/controllers/tasks_controller.rb:47:in `destroy' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 17:26:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.6ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/" for 127.0.0.1 at 2017-09-21 17:26:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (18.7ms) +Completed 200 OK in 56ms (Views: 51.8ms | ActiveRecord: 1.2ms) + + +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:26:31 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"C4tHi3In4myMdgivAZXhkAJwNPKexA5o6q2CuZC4KzyAflxhSHEKX5UQ/YlXF2+sHB6CPI31haGGBRsJGsa59w==", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", nil], ["LIMIT", 1]] +Completed 404 Not Found in 3ms (ActiveRecord: 0.2ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'={:id=>"16"}): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:26:37 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"C4tHi3In4myMdgivAZXhkAJwNPKexA5o6q2CuZC4KzyAflxhSHEKX5UQ/YlXF2+sHB6CPI31haGGBRsJGsa59w==", "id"=>"16"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", nil], ["LIMIT", 1]] +Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'={:id=>"16"}): + +app/controllers/tasks_controller.rb:46:in `destroy' +Started GET "/tasks/16" for 127.0.0.1 at 2017-09-21 17:26:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:26: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 25ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:30:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.6ms) +Completed 200 OK in 47ms (Views: 42.0ms | ActiveRecord: 0.9ms) + + +Started DELETE "/tasks/16" for 127.0.0.1 at 2017-09-21 17:30:23 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"bfLDB0Y2s6mmMJ4v9WblujxT2ps4XZc+c0IBaJ+bKuPoZ8e4EdNLHxUP7sm/h5SLiC2HavZ7hSHYI+1gFd38ug==", "id"=>"16"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 16]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:30:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 17:30: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.5ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 17:30:33 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"ltI7fhcryFzxYnB6XAgwYVWcmWGjrhWm1O7JWGLQhb5zOx3YuTsk6C7fjjUPemzub4eQ2TqcQjbPhfsMeAt7KQ==", "utf8"=>"✓", "task"=>{"name"=>"bibi", "description"=>"hello world", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "bibi"], ["description", "hello world"], ["due_date", "2017-09-22"], ["created_at", "2017-09-22 00:30:33.065090"], ["updated_at", "2017-09-22 00:30:33.065090"]] +  (3.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:30:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.5ms) +Completed 200 OK in 18ms (Views: 15.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 17:30:35 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 17:30:43 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"GYcbkOVVvelimMacavlmNZBHsNrcNwf4t3zDFM5nknP8bj02S0VRXb0lONM5izq6qly5YkUFUGisF/FA1Lxs5A==", "utf8"=>"✓", "task"=>{"name"=>"javi", "description"=>"hello ", "due_date"=>"2017-09-25"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "javi"], ["description", "hello "], ["due_date", "2017-09-25"], ["created_at", "2017-09-22 00:30:43.183033"], ["updated_at", "2017-09-22 00:30:43.183033"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:30: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 (3.2ms) +Completed 200 OK in 24ms (Views: 22.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 17:30:44 -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 24ms (Views: 21.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 17:30:57 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"S//LdcCn8qJ7WocWRwDoJ5u5H2ChxtcM9bfW1INNZkWuFu3TbrceFqTneVkUcrSooaIW2Dj0gJzu3OSAmZaY0g==", "utf8"=>"✓", "task"=>{"name"=>"write letter to dad", "description"=>"need stationary", "due_date"=>"today"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "write letter to dad"], ["description", "need stationary"], ["created_at", "2017-09-22 00:30:57.977464"], ["updated_at", "2017-09-22 00:30:57.977464"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:30: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 (3.8ms) +Completed 200 OK in 26ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/19" for 127.0.0.1 at 2017-09-21 17:31:00 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"JveoUNPINUSSaG9fFq3MvSXvWU+M7DBqFbLDwXSwYemtArO66Z7dd4sOmnlAL0KBO4HvgZ/du6N5Glpx/s7zIg==", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 19]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:31:00 -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.0ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:32: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 (3.7ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: + 13: + 14: <%= link_to 'Delete',url_for(action: :delete,id: @task.id),method: :delete, data: {confirm: "Are you sure?"} %> + 15: + 16:

    Mark Complete

    + 17: + +app/views/tasks/index.html.erb:14:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148563035160' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148563035160' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:33:22 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:14: syntax error, unexpected ')', expecting => +te, delete_task_path(task.id)),method: :delete, data: {confi + ^): + +app/views/tasks/index.html.erb:14: syntax error, unexpected ')', expecting => +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:33: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 (3.6ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `id' for nil:NilClass): + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: + 13: + 14: <%= link_to 'Delete', url_for(action: :delete, id: @task.id),method: :delete, data: {confirm: "Are you sure?"} %> + 15: + 16:

    Mark Complete

    + 17: + +app/views/tasks/index.html.erb:14:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148574622560' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148574622560' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:33: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 (6.0ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (No route matches {:action=>"delete", :controller=>"tasks", :id=>17}): + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: + 13: + 14: <%= link_to 'Delete', url_for(action: :delete, id: task.id),method: :delete, data: {confirm: "Are you sure?"} %> + 15: + 16:

    Mark Complete

    + 17: + +app/views/tasks/index.html.erb:14:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148645014240' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148645014240' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:33:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (No route matches {:action=>"delete", :controller=>"tasks", :id=>17}): + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: + 13: + 14: <%= link_to 'Delete', url_for(action: :delete, id: task.id),method: :delete, data: {confirm: "Are you sure?"} %> + 15: + 16:

    Mark Complete

    + 17: + +app/views/tasks/index.html.erb:14:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148645410280' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148645410280' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:34: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 (3.7ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (No route matches {:action=>"delete", :controller=>"tasks", :id=>17}): + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: + 13: + 14: + 15: + 16:

    Mark Complete

    + 17: + +app/views/tasks/index.html.erb:14:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148563571940' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148563571940' +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:34: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 (1.9ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/17/edit" for 127.0.0.1 at 2017-09-21 17:34:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["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: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:39: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.1ms) +Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/17" for 127.0.0.1 at 2017-09-21 17:39:06 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"9+X2sfJsu5QC2wo8UMVr68A1IQDjbFRBqbcpFmoJtKJ8EO1byDpTpxu9/xoGR+XX3luXzvBd34jFH7Cm4HcmaQ==", "id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 17]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:39: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.5ms) +Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/18" for 127.0.0.1 at 2017-09-21 17:39:08 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"gYLKKfK8ceVGOCGu9luhVoZtUEZ8nT/ro3aYWK6t+38Kd9HDyOqZ1l9e1Iig2S9qmAPmiG+stCLP3gHoJNNptA==", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 18]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:39: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 (1.5ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 17:52:29 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.9ms) +Completed 200 OK in 29ms (Views: 26.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 17:52:33 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"dvjWtGvTS2hXbBHHPyXV3p5yrTzNY+b+WcMgXF5l8BKTEfASxcOn3IjR74hsV4lRpGmkhFRRsW5CqBIIRL4OhQ==", "utf8"=>"✓", "task"=>{"name"=>"Call dad", "description"=>"", "due_date"=>""}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Call dad"], ["description", ""], ["created_at", "2017-09-22 00:52:33.578642"], ["updated_at", "2017-09-22 00:52:33.578642"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:52: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.7ms) +Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/20" for 127.0.0.1 at 2017-09-21 17:52:35 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"645j5LNe97d7BSZlXE9kpXyI5aJ4RZ71+sYy/ojbF5hge3gOiQgfhGJj00MKzeqZYuZTbGt0FTyWbqtOAqWFUw==", "id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 20], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 20]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:52: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 (1.1ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:56:58 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 17:57:00 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 17:57:05 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"0OL+3h5spHjPN5nkT5AGo8k2TTypCkm+QP7XlB0isYk1C9h4sHxIzBCKZ6sc4los8y1EhDA4Hi5bleXAB/lPHg==", "utf8"=>"✓", "task"=>{"name"=>"Call dad", "description"=>"reflect on week 6", "due_date"=>""}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Call dad"], ["description", "reflect on week 6"], ["created_at", "2017-09-22 00:57:05.663057"], ["updated_at", "2017-09-22 00:57:05.663057"]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:57: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.7ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/21" for 127.0.0.1 at 2017-09-21 17:57:15 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"bY277p8aQ0fPV6LjPIqaXwxScrTpf6931/pWvtJ9AQ/meKAEpUyrdNYxV8VqCBRjEjzEevpOJL67Us8OWAOTxA==", "id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 21], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 21]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 17:57: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.4ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + From 9541dc6876448a035b9d51013f8b32b9d871e157 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Fri, 22 Sep 2017 09:40:13 -0700 Subject: [PATCH 5/9] Delete delete.html.erb page - not used --- app/controllers/tasks_controller.rb | 4 +- app/views/tasks/delete.html.erb | 21 --- app/views/tasks/show.html.erb | 2 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 251 ++++++++++++++++++++++++++++ 5 files changed, 254 insertions(+), 24 deletions(-) delete mode 100644 app/views/tasks/delete.html.erb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index a9b674a02..9c87ecf59 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -43,8 +43,8 @@ def update end def destroy - @task = Task.find(params[:id]) - @task.destroy + task = Task.find(params[:id]) + task.destroy redirect_to tasks_path end diff --git a/app/views/tasks/delete.html.erb b/app/views/tasks/delete.html.erb deleted file mode 100644 index d6b9c4a45..000000000 --- a/app/views/tasks/delete.html.erb +++ /dev/null @@ -1,21 +0,0 @@ -
    - -

    Delete Task

    - - <%= form_tag "/task/:id", class: "delete_task", method: :delete do %> - - - - - - - - - - <% end %> - -
    diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index aa6b573e2..7995ceba0 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,6 +1,6 @@

    - <%= "Task #{@task.id}: #{@task.name}" %> + <%= "#{@task.name}" %>

      diff --git a/db/development.sqlite3 b/db/development.sqlite3 index e8c374e896690095783c69a0973d259446805ec7..89bf7f0356c88d6f20dc40ec78c064d9f07b5510 100644 GIT binary patch delta 516 zcmZ{gF;2rU6o#E{UDA$JQ0cLgV5dnFS7N9t(Fwr-Ggz%@tlGG8U7%CS4d4if697ly z0=)?&trCWUY+29xpWgTWf3v^N$p_=O<_rvvy^Vz&;yV+B% zRY!xfLxlSM85>RERvWM>2W!L(tXA3>{Q!zhIm{P^!%{CGW%nGIl*PxuJQX&;B=#`% zf~cwjz@(Sofcm(DlZ5=GWLs&uS4U*K#AQLULgkMJ!zFu6xs}r{Zo> zbmSY9b33@Kf|5--eiYJ((EpT-P=wIe@yRBDQ;~bp3%dy*4?_Lg78b-DMq14zx4aq` zR@D}Xdr{)kIEuTwcEiNSnBX|ciLC8yh*zT`#xWaDL>_4>6fiJ_wQBAzA?*4z?2<69 OdP;VwynSCcoz@SaM})rs delta 495 zcmZ{gO-sW-5QaC$T-vHc@S`xno6>Z%o6ROUHPnNk_<>X}f-YpiXvjjkw0LTNf+Bbq zFJ8rS|4V;_cTJ0}AJ93?&NKVYJ2M;`!?AI{VYD7L+eYi{>iMXO%BUe!eXVvXALi)2 zc3iIvu*(}bY!E_b83s3qFpe;H0v`w5T}%)%p6VSNZN>4fg7zuwogXN53qqFu%kEszJscpY)lQ}w7xhU>tf`km9+?3*oaVO;5^SvMRpPVe4$Xc@} z6K+H=y_Q*~VBXH=8TtO`QO6A^rgSkmvzAO$Z%$peMV3vhK8`Ndx2GD6msfCnpJK-U NYWyNEpO-bm`U3A@bt?b> diff --git a/log/development.log b/log/development.log index b6c84bfbe..913255d3b 100644 --- a/log/development.log +++ b/log/development.log @@ -9009,3 +9009,254 @@ Processing by TasksController#index as HTML Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 18:00: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.3ms) +Completed 200 OK in 31ms (Views: 28.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 18:00:46 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"lM1jPlHdjMhzPqWfkRFopapfHYPma3KnlKH1if0ICT1xJEWY/81gfKyDW9DCYzQqkEQUO39ZJTePysfd59P3qg==", "utf8"=>"✓", "task"=>{"name"=>"call dad", "description"=>"give him a ring ", "due_date"=>"2017-09-24"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "call dad"], ["description", "give him a ring "], ["due_date", "2017-09-24"], ["created_at", "2017-09-22 01:00:46.946147"], ["updated_at", "2017-09-22 01:00:46.946147"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 18:00: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.3ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 18:00:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.5ms) +Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 18:00:58 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"RwC7nDpuCiKMD8Ddac+YyYUDhaM1EDP5jwxudtUuDQai6Z06lH7mllOyPpI6vcRGvxiMG6wiZGmUZ1wiz/XzkQ==", "utf8"=>"✓", "task"=>{"name"=>"Fill out the form", "description"=>"make sure it is complete", "due_date"=>"2017-09-25"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Fill out the form"], ["description", "make sure it is complete"], ["due_date", "2017-09-25"], ["created_at", "2017-09-22 01:00:58.975761"], ["updated_at", "2017-09-22 01:00:58.975761"]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 18:00:58 -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.4ms) +Completed 200 OK in 29ms (Views: 27.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 18:01:00 -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 24ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 18:01:13 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"zgQiRKZBl30H6HxX7NtVyWBVuG+uBWgvZrZB5O7ycO4r7QTiCFF7ydhVghi/qQlGWk6x1zc3P7993XOw9CmOeQ==", "utf8"=>"✓", "task"=>{"name"=>"Take time to relax", "description"=>"hello there, i am talking to you", "due_date"=>"2017-09-30"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Take time to relax"], ["description", "hello there, i am talking to you"], ["due_date", "2017-09-30"], ["created_at", "2017-09-22 01:01:13.549519"], ["updated_at", "2017-09-22 01:01:13.549519"]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 18:01: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.4ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-21 18:01:15 -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 23ms (Views: 20.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-21 18:01:29 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"3VESK8+9i4wQONEbaT6xUwS0HaSTxsM1xT8aeBIsRJA4uDSNYa1nOM+FL1Q6TO3cPq8UHAr0lKXeVCgsCPe6Bw==", "utf8"=>"✓", "task"=>{"name"=>"pack for the trip tomorrow ", "description"=>"make sure you have all your shit", "due_date"=>"2017-09-25"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "pack for the trip tomorrow "], ["description", "make sure you have all your shit"], ["due_date", "2017-09-25"], ["created_at", "2017-09-22 01:01:29.030881"], ["updated_at", "2017-09-22 01:01:29.030881"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 18:01: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.6ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/23/edit" for 127.0.0.1 at 2017-09-21 18:01:43 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/23" for 127.0.0.1 at 2017-09-21 18:01:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7gva0U9FIqJKNc67W6bo+EOkF7lZlorhZF7tk6VNXDBl/sE7dRPKkVNTO50NJGbEXcqhd0qnASgI9nQjLzPO+w==", "task"=>{"name"=>"Fill out the form", "description"=>"make sure it is complete", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-22 01:01:48.001078"], ["id", 23]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/23 +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks/23" for 127.0.0.1 at 2017-09-21 18:01:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 18:01: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 (3.5ms) +Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/22" for 127.0.0.1 at 2017-09-21 18:02:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["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 24ms (Views: 22.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-21 18:02: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 25ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/22" for 127.0.0.1 at 2017-09-21 18:02:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 22], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/24" for 127.0.0.1 at 2017-09-21 18:02:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/25" for 127.0.0.1 at 2017-09-21 18:02:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 08:45:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (41.1ms) +Completed 200 OK in 137ms (Views: 116.6ms | ActiveRecord: 1.6ms) + + +Started DELETE "/tasks/22" for 127.0.0.1 at 2017-09-22 08:45:50 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"fDbrQBz8XuUGWcF2id91PCf97pOhcm0aK+UkpgZPaJT3w/CqJqq21h8/NFDfXfsAOZNYXbJD5tNHTb0WjDH6Xw==", "id"=>"22"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 22], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 22]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 08:45: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 (3.0ms) +Completed 200 OK in 39ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 08:52:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.0ms) +Completed 200 OK in 42ms (Views: 35.6ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 08:52: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 (4.9ms) +Completed 200 OK in 25ms (Views: 22.5ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/23" for 127.0.0.1 at 2017-09-22 08:52:18 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"FID4KQ0MyDi40K1rHtQERvB2WJvcjx2camYTl5d1/2efdePDN1ogC6G2WE1IVop67hjuVc++llUGzoonHQttrA==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 23]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 08:52: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.6ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 09:00: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 (4.1ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + From 35a1a5d46919faf7215c9c1c46656028afb5f9b8 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Fri, 22 Sep 2017 10:06:36 -0700 Subject: [PATCH 6/9] Delete delete prefix and fixed route in delete button --- app/views/tasks/index.html.erb | 2 +- config/routes.rb | 2 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 68 +++++++++++++++++++++++++++++++++ 4 files changed, 70 insertions(+), 2 deletions(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 54d85c03e..3dbdb18d9 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -9,7 +9,7 @@
    • <%= link_to(task.name, task_path(task.id)) %> <%=button_to "Edit", edit_task_path(task.id), method: :get%> - <%=button_to "Delete", delete_task_path(task.id), method: :delete, data: {confirm: "Are you sure?"} %> + <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %>

      Mark Complete

      diff --git a/config/routes.rb b/config/routes.rb index 0e8fd3bbd..028d45475 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -10,7 +10,7 @@ get "/tasks/:id/edit", to: "tasks#edit", as: "edit_task" patch "/tasks/:id", to: "tasks#update" - delete "/tasks/:id", to: "tasks#destroy", as: "delete_task" + delete "/tasks/:id", to: "tasks#destroy" #resources :tasks end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 89bf7f0356c88d6f20dc40ec78c064d9f07b5510..3daca715f2ce35ace990bda5e186ea66c4e16933 100644 GIT binary patch delta 139 zcmZp8z}WDBae_3X=R_H2M$e52%lz3kG4O5TpSYPPK!u+%WwK#>f?=){Cxg7ZA_Ie? zV^L~iib7I;em0mHe>scCDm>3!u X85o-D8d&NY87ZL2Y)bgg&nN`|#R({< delta 133 zcmZp8z}WDBae_3X`$QRMM)!>g%lz4N8TdBw>2Br;P~m61JlQZl!O+mkz|hLXLeId! z(7@b+fq@}WR#%aM!O<}}F(*eMB{3yEvn*91BQsYaQK2X^FI{1BV!X7niJ6|IiJ75^ dxsidPxvqhwu91-f&>RB;E4a+2g#Y}Ek^rLsBPaj> diff --git a/log/development.log b/log/development.log index 913255d3b..a496508a5 100644 --- a/log/development.log +++ b/log/development.log @@ -9260,3 +9260,71 @@ Processing by TasksController#index as HTML Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.2ms) +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 09:57: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.5ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/25" for 127.0.0.1 at 2017-09-22 09:57:26 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"v7a1vfVURH+5QB7djdm3h4GA2OzckUgbHOIu4mtZhxA0Q65XzwKsTKAm6/vbWzm7n+5uIs+gw9JwSrdS4ScV2w==", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 25]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 09:57:26 -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 35ms (Views: 32.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 09:57:29 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 30ms (Views: 26.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 09:57:47 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"yDG2ItnIhrRniVDXVAjInWRVo+yQsRQyXVjnD8YCx54t2JCEd9hqALg0rpgHepQSXk6qVAmDQ6JGM9Vb3Nk5CQ==", "utf8"=>"✓", "task"=>{"name"=>"read book", "description"=>"read the new brene brown book", "due_date"=>"2017-09-30"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "read book"], ["description", "read the new brene brown book"], ["due_date", "2017-09-30"], ["created_at", "2017-09-22 16:57:47.908410"], ["updated_at", "2017-09-22 16:57:47.908410"]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 09:57: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 (3.5ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 09:58:15 -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 22ms (Views: 20.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 09:59:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (34.4ms) +Completed 200 OK in 65ms (Views: 58.6ms | ActiveRecord: 1.2ms) + + From e5f6c02a51b1ab04099d84233e17b37bccd156a5 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Fri, 22 Sep 2017 11:27:12 -0700 Subject: [PATCH 7/9] Add scroll css for task list --- app/assets/stylesheets/application.css | 2 + app/assets/stylesheets/tasks.scss | 4 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 139 +++++++++++++++++++++++++ 4 files changed, 144 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 1daba3419..0ca8a267b 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -85,6 +85,8 @@ header li:link { main { float: right; + + } footer{ diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss index c0b98979b..ce62f3bf6 100644 --- a/app/assets/stylesheets/tasks.scss +++ b/app/assets/stylesheets/tasks.scss @@ -7,7 +7,9 @@ padding-right: 70px; margin-right: 70px; border-radius: 1em; - // width: 50%; + overflow: scroll; + width: 70%; + height: 500px; } h2 { diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 3daca715f2ce35ace990bda5e186ea66c4e16933..eb10af5e3bbf17ae9f832e885980d68445cec24e 100644 GIT binary patch delta 250 zcmZp8z}WDBae_3X&qNt#MxTud3;hKd7#LW2A2af8;-AQ`$LG!ac(YKzMP8OPSx$z@ z&9VBEv*LLi4b82LEv-zA^vo=bER9W!3=GY64J>tyj1qBmk5$!%*b7u`pl5DjXk=i7X%0+g^ThZ(0Y+H>*AzZh delta 362 zcmZp8z}WDBae_3X=R_H2M$e523;hN8bs3oWHZkyR;-AQ;%csk^ce7ByMc#U2b8~YB z2F7U&n#qa`433TgIf;1+mHDMb3gxM(*&&J9sR|{Txj-UcAu+GGJhe!nBqLQJGq)hW zs3bA3M4_-WwYVfRKd;!Rkx7!1!PysVN"0F4Lc/02khLoy+NZif0SBVfoZXCEENd4ja5JMP15lVQ1ty3VUyZ+pjd2HRbaj06KbfNsyB0igOiWxXtk56Jrww==", "utf8"=>"✓", "task"=>{"name"=>"Call dad", "description"=>"peaches and apples", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call dad"], ["description", "peaches and apples"], ["due_date", "2017-09-22"], ["created_at", "2017-09-22 17:35:40.781202"], ["updated_at", "2017-09-22 17:35:40.781202"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:35:40 -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 19ms (Views: 17.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 10:35:42 -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 22ms (Views: 19.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 10:35:49 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"FRIcqlfGPNs/+D88oEaIruX6Q5otsjrg8IF2Jd2Wrl3w+zoM+dbQb+BFwXPzNNQh3+FKIrSAbXDr6kRxx01Qyg==", "utf8"=>"✓", "task"=>{"name"=>"Grocery store", "description"=>"reflect on week 6", "due_date"=>"2017-09-24"}, "commit"=>"Add that task!"} +  (0.0ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Grocery store"], ["description", "reflect on week 6"], ["due_date", "2017-09-24"], ["created_at", "2017-09-22 17:35:49.369839"], ["updated_at", "2017-09-22 17:35:49.369839"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:35: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 (2.9ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:36:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:37:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 41ms (Views: 38.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:37: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.8ms) +Completed 200 OK in 40ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:38: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.9ms) +Completed 200 OK in 37ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:38:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 36ms (Views: 34.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:39: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.7ms) +Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 10:39:46 -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 24ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 10:39:52 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"Y0xz7IgICvk3kwBBzOsn23XE/5aIIonfVTaRSsjX7xGGpVVKJhjmTegu/g6fmXtUT9/2LhEQ3k9OXaMe0gwRhg==", "utf8"=>"✓", "task"=>{"name"=>"Grocery store", "description"=>"peaches and apples", "due_date"=>"2017-09-24"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Grocery store"], ["description", "peaches and apples"], ["due_date", "2017-09-24"], ["created_at", "2017-09-22 17:39:52.682934"], ["updated_at", "2017-09-22 17:39:52.682934"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:39: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.8ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 10:41: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 36ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + From a7d24dd528ec53f66c145cb124736ffbb42b05f9 Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Thu, 28 Sep 2017 11:10:58 -0700 Subject: [PATCH 8/9] completed wave 4 --- app/assets/stylesheets/tasks.scss | 19 +- app/controllers/tasks_controller.rb | 18 +- app/views/tasks/edit.html.erb | 2 +- app/views/tasks/index.html.erb | 30 +- app/views/tasks/new.html.erb | 2 +- app/views/tasks/show.html.erb | 43 +- config/routes.rb | 2 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes ...hange_task_status_data_type_and_default.rb | 5 + ...212203_change_task_status_default_value.rb | 5 + ...22214823_change_task_column_status_name.rb | 5 + db/schema.rb | 4 +- log/development.log | 6618 +++++++++++++++++ 13 files changed, 6706 insertions(+), 47 deletions(-) create mode 100644 db/migrate/20170922211916_change_task_status_data_type_and_default.rb create mode 100644 db/migrate/20170922212203_change_task_status_default_value.rb create mode 100644 db/migrate/20170922214823_change_task_column_status_name.rb diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss index ce62f3bf6..b3967ecad 100644 --- a/app/assets/stylesheets/tasks.scss +++ b/app/assets/stylesheets/tasks.scss @@ -12,20 +12,20 @@ height: 500px; } + +a { + text-decoration: none; +} + h2 { background: navy; border-radius: 2em; - width: 100%; text-align: center; color: skyblue; font-size: 2em; box-shadow: 6px 10px 9px #888899; padding: 5%; -} - -ol { - // padding: ; - // margin: ; + margin: 12%; } li { @@ -34,6 +34,7 @@ li { padding: 2%; } -ol p { - // display: inline-block; -} + +.complete { + text-decoration: line-through; + } diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 9c87ecf59..f4a793cf9 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -29,17 +29,18 @@ def edit #i am assuming this will work like new, ehree the update is what matter end def update - task_updates = params[:task] - # task_updates = name: params[:task][:name], description: params[:task][:description], due_date: params[:task][:due_date]) @task = Task.find (params[:id]) - # @task.update_attributes(task_updates) #don't know how to use this right now - @task.name = task_updates[:name] - @task.description = task_updates[:description] - @task.due_date = task_updates[:due_date] + task_updates = params.require(:task).permit(:name, :description, :due_date, :complete) + @task.update_attributes(task_updates) #don't know how to use this right now @task.save - # redirect_to('/tasks') - redirect_to task_path(@task) + + if params[:refresh] + redirect_to tasks_path + else + redirect_to task_path(@task) + end + end def destroy @@ -48,5 +49,4 @@ def destroy redirect_to tasks_path end - end diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index d4b0f6c26..868192600 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -10,7 +10,7 @@ <%= f.text_field :description %> <%= f.label :due_date %> - <%= f.text_field :due_date %> + <%= f.date_field :due_date %> <%= f.submit "Edit that task!"%> <% end %> diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 3dbdb18d9..5198852ab 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -7,14 +7,28 @@
        <% @tasks.each do |task| %>
      1. - <%= link_to(task.name, task_path(task.id)) %> - <%=button_to "Edit", edit_task_path(task.id), method: :get%> - <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + <% if task.complete == true %> +
        + <%= link_to(task.name, task_path(task.id)) %> +
        + <%else %> +
        + <%= link_to(task.name, task_path(task.id)) %> +
        + <%end%> -

        Mark Complete

        -
      2. - <% end %> -
      + <%=button_to "Edit", edit_task_path(task.id), method: :get%> + <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> -
    + <% if task.complete %> + <%=button_to "Incomplete", update_task_path(task.id, {:task => {:complete => false}, :refresh => true}), method: :patch%> + <%else %> + <%=button_to "Complete", update_task_path(task.id, {:task => {:complete => true, :completion_date => Date.today }, :refresh => true} ), method: :patch%> + <%end%> + + + <% end %> + + + diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 0097e0ed8..318b4ba5a 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -11,7 +11,7 @@ <%= f.text_field :description %> <%= f.label :due_date %> -<%= f.text_field :due_date %> +<%= f.date_field :due_date %> <%= f.submit "Add that task!"%> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 7995ceba0..7fe68d07c 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,23 +1,34 @@

    - <%= "#{@task.name}" %> + <%= "#{@task.name}" %>

    -
      -
    • - <%= "#{@task.description}" %> -
    • -
    • - <% if @task.due_date == nil %> +
        +
      • + <%= "#{@task.description}" %> +
      • +
      • + <% if @task.complete == true %> +

        Complete: Yes

        + <% else %> +

        Complete: Not yet

        + <% end %> + +
      • +
      • + <% if @task.due_date == nil %>

        No due date

        - <% else %> -

        Due: <%= @task.due_date.strftime("%A, %B %d, %Y") %>

        - <% end %> -
      • -
      • - <%= link_to "Edit", edit_task_path %> -
      • -
      + <% else %> +

      Due: <%= @task.due_date.strftime("%A, %B %d, %Y") %>

      + <% end %> +
    • +
    • + <%= link_to "Edit", edit_task_path %> +
    • +
    • + <%= link_to "Return to All Tasks", tasks_path %> +
    • +
    -
    + diff --git a/config/routes.rb b/config/routes.rb index 028d45475..7812f10b0 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -8,7 +8,7 @@ get "/tasks/:id", to: "tasks#show", as: "task" get "/tasks/:id/edit", to: "tasks#edit", as: "edit_task" - patch "/tasks/:id", to: "tasks#update" + patch "/tasks/:id", to: "tasks#update", as:"update_task" delete "/tasks/:id", to: "tasks#destroy" diff --git a/db/development.sqlite3 b/db/development.sqlite3 index eb10af5e3bbf17ae9f832e885980d68445cec24e..3b96b84a00ca1e1d266470b9a14e3854f7e92b57 100644 GIT binary patch delta 901 zcmaiwy>HV%7{={1G=$c^v_m6Rg1!k7RYmLGon!m#E<}7Rtq_7%oltS=YZ5hytHc2z zA*CReE_}#;15#IrDs^N;NL^TAs8r?-42TWR2{;W5SoZn!yrn2FB3z<-x;O=DQe_f)iLR*oDpS68C+~bx!jt=}okl(_U0upas93z-Z;Zpb`;dd~ zdLFnis1Zu-An+T}9Tu>?K&`EKYXY$yf*oRL3|oX+@q__k4z?Y`&@3BUdf`bfEiK;b z`FTEUc3Mzv1iZ|fEvP)IyW1RE?Iwr72T{ETL8a-p%N6nG(C`D^8jyo{YXZiOZi-jK zCSf{`Cw+Ty16?yrS|}LhnY48AcU-qtgHGMAyRB`g@Fut=za8{;L9@C8F{CgEN`Vr` zupMe^0#>li_)r|w)NF(4jQE#?({jJq$jNiPa#i$Nsn(-fBdNrp0f=6*8E%f6!|{!%JZDv zEGQ7lGx;n}5KCh{EBj<+-ftZKAqsw>K0cb875N@BvN7_%W8i z@ASnK_*i)#GxBZXpUAJr=gs?gvrxb#-pNm6gLN!*jf@lw&8>_rtxS#d%q)y7jZIQz zI2qLS6&V;D9o>ualT(W-6^cvpi&7`=jggux9w$(5YGq=nXKZF^VQgt+U}&yu05=6m zrc#2F!O$0MN=RaMszOO-E|ADqC`!#qtjI{s$;nqJ$w)0q)ltY)NX%6zNzBR4%u5HU zsLU^g8Eb3+V*#CMU}yzIhQ_9PrY4rAhRAlqq@XekiPD@5vW8&GofC6%6jBmXCjW_* zt~Ww54&-Z~dkyr=Eewqe@W|v!aWcregAFT6O-xZp%FoXRGl1?_$V)9(NGeLrO9hho o<#}L9m?bE#H#D;{RW-LVG1s#+urM)1_83SCNoG^Re||<;06a8}#sB~S diff --git a/db/migrate/20170922211916_change_task_status_data_type_and_default.rb b/db/migrate/20170922211916_change_task_status_data_type_and_default.rb new file mode 100644 index 000000000..e17c78613 --- /dev/null +++ b/db/migrate/20170922211916_change_task_status_data_type_and_default.rb @@ -0,0 +1,5 @@ +class ChangeTaskStatusDataTypeAndDefault < ActiveRecord::Migration[5.1] + def change + change_column :tasks, :status, :boolean + end +end diff --git a/db/migrate/20170922212203_change_task_status_default_value.rb b/db/migrate/20170922212203_change_task_status_default_value.rb new file mode 100644 index 000000000..bf8000a40 --- /dev/null +++ b/db/migrate/20170922212203_change_task_status_default_value.rb @@ -0,0 +1,5 @@ +class ChangeTaskStatusDefaultValue < ActiveRecord::Migration[5.1] + def change + change_column :tasks, :status, :boolean, default: false + end +end diff --git a/db/migrate/20170922214823_change_task_column_status_name.rb b/db/migrate/20170922214823_change_task_column_status_name.rb new file mode 100644 index 000000000..a828f173b --- /dev/null +++ b/db/migrate/20170922214823_change_task_column_status_name.rb @@ -0,0 +1,5 @@ +class ChangeTaskColumnStatusName < ActiveRecord::Migration[5.1] + def change + rename_column(:tasks, :status, :complete) + end +end diff --git a/db/schema.rb b/db/schema.rb index 368250d4b..37271fcda 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,14 +10,14 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170919222809) do +ActiveRecord::Schema.define(version: 20170922214823) do create_table "tasks", force: :cascade do |t| t.string "name" t.string "description" t.date "due_date" t.date "completion_date" - t.string "status" + t.boolean "complete", default: false t.datetime "created_at", null: false t.datetime "updated_at", null: false end diff --git a/log/development.log b/log/development.log index 30755da05..bea38f56a 100644 --- a/log/development.log +++ b/log/development.log @@ -9467,3 +9467,6621 @@ Processing by TasksController#index as HTML Completed 200 OK in 36ms (Views: 33.6ms | ActiveRecord: 0.2ms) +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 13:40: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 (254.3ms) +Completed 500 Internal Server Error in 261ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `complete_path' for #<#:0x007f998218f3d0> +Did you mean? compute_asset_path): + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + 13: <%=button_to "Complete", complete_path, method: :patch %> + 14: + 15: + 16:

    Mark Complete

    + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148644709040' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148644709040' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 13:41:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (335.2ms) +Completed 500 Internal Server Error in 344ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined local variable or method `complete_path' for #<#:0x007f9982229980> +Did you mean? complete_task_path): + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + 13: <%=button_to "Complete", complete_path, method: :patch %> + 14: + 15: + 16:

    Mark Complete

    + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148645029520' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148645029520' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 13:41: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 (204.5ms) +Completed 500 Internal Server Error in 211ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `complete_path' for #<#:0x007f9982cb48c8> +Did you mean? complete_task_path): + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + 13: <%=button_to "Complete", complete_path, method: :patch %> + 14: + 15: + 16:

    Mark Complete

    + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148650543440' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148650543440' +Started GET "/" for 127.0.0.1 at 2017-09-22 13:41:37 -0700 +Processing by Rails::WelcomeController#index as HTML + Rendering /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb + Rendered /Users/biciclysta/.rvm/gems/ruby-2.4.0/gems/railties-5.1.4/lib/rails/templates/rails/welcome/index.html.erb (3.1ms) +Completed 200 OK in 8ms (Views: 5.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 13:41: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 (202.5ms) +Completed 500 Internal Server Error in 208ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `complete_path' for #<#:0x007f99823f70a0> +Did you mean? complete_task_path): + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + 13: <%=button_to "Complete", complete_path, method: :patch %> + 14: + 15: + 16:

    Mark Complete

    + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148645961020' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148645961020' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 13:42: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 (4.0ms) +Completed 200 OK in 30ms (Views: 27.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/id:/complete" for 127.0.0.1 at 2017-09-22 13:42:04 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/id:/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 PATCH "/tasks/id:/complete" for 127.0.0.1 at 2017-09-22 13:42:08 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/id:/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-22 13:43:02 -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 (14.8ms) +Completed 200 OK in 42ms (Views: 35.6ms | ActiveRecord: 0.9ms) + + +Started PATCH "/tasks/id:/complete" for 127.0.0.1 at 2017-09-22 13:43:04 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/id:/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 PATCH "/tasks/id:/complete" for 127.0.0.1 at 2017-09-22 14:01:38 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/id:/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-22 14:01:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (247.9ms) +Completed 500 Internal Server Error in 257ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (undefined local variable or method `complete_task_path' for #<#:0x007f99848ff7a8> +Did you mean? compute_asset_path): + 10: <%= link_to(task.name, task_path(task.id)) %> + 11: <%=button_to "Edit", edit_task_path(task.id), method: :get%> + 12: <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + 13: <%=button_to "Complete", complete_task_path, method: :patch %> + 14: + 15: + 16:

    Mark Complete

    + +app/views/tasks/index.html.erb:13:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148665355880' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148665355880' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 14:01: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.4ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/24/edit" for 127.0.0.1 at 2017-09-22 14:01:59 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"24"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (11.6ms) +Completed 200 OK in 28ms (Views: 24.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/24" for 127.0.0.1 at 2017-09-22 14:02:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"oocg4cgQeIoMuUVHRnu+5u1TXKUVuJhOVATvQkR/szkpcjsL8kaQuRXfsGEQ+TDa8z3qawaJE4c4rHbyzgEh8g==", "task"=>{"name"=>"Take time to relax", "description"=>"hello there, i am talking to you", "due_date"=>"2017-09-26"}, "commit"=>"Edit that task!", "id"=>"24"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-26"], ["updated_at", "2017-09-22 21:02:19.297821"], ["id", 24]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks/24 +Completed 302 Found in 6ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks/24" for 127.0.0.1 at 2017-09-22 14:02:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeTaskStatusDataTypeAndDefault (20170922211916) +  (0.1ms) begin transaction +  (0.1ms) SELECT sqlite_version(*) +  (0.4ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "status" varchar DEFAULT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "atasks" ("id","name","description","due_date","completion_date","status","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","status","created_at","updated_at" FROM "tasks" +  (0.4ms) DROP TABLE "tasks" +  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "status" boolean DEFAULT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "tasks" ("id","name","description","due_date","completion_date","status","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","status","created_at","updated_at" FROM "atasks" +  (0.1ms) DROP TABLE "atasks" + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170922211916"]] +  (1.0ms) commit transaction + ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeTaskStatusDefaultValue (20170922212203) +  (0.0ms) begin transaction +  (0.2ms) ALTER TABLE "tasks" ADD "status" boolean DEFAULT 'f' +  (0.0ms) rollback transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeTaskStatusDefaultValue (20170922212203) +  (0.1ms) begin transaction +  (0.3ms) ALTER TABLE "tasks" ADD "status" boolean DEFAULT 'f' +  (0.0ms) rollback transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeTaskStatusDefaultValue (20170922212203) +  (0.0ms) begin transaction +  (0.0ms) SELECT sqlite_version(*) +  (0.2ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "status" boolean DEFAULT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "atasks" ("id","name","description","due_date","completion_date","status","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","status","created_at","updated_at" FROM "tasks" +  (0.3ms) DROP TABLE "tasks" +  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "status" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.3ms) INSERT INTO "tasks" ("id","name","description","due_date","completion_date","status","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","status","created_at","updated_at" FROM "atasks" +  (0.9ms) rollback transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeTaskStatusDefaultValue (20170922212203) +  (0.0ms) begin transaction +  (0.0ms) SELECT sqlite_version(*) +  (0.2ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "status" boolean DEFAULT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "atasks" ("id","name","description","due_date","completion_date","status","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","status","created_at","updated_at" FROM "tasks" +  (0.3ms) DROP TABLE "tasks" +  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "status" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "tasks" ("id","name","description","due_date","completion_date","status","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","status","created_at","updated_at" FROM "atasks" +  (0.1ms) DROP TABLE "atasks" + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170922212203"]] +  (1.7ms) commit transaction + ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Migrating to ChangeTaskColumnStatusName (20170922214823) +  (0.0ms) begin transaction +  (0.0ms) SELECT sqlite_version(*) +  (0.2ms) CREATE TEMPORARY TABLE "atasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "complete" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "atasks" ("id","name","description","due_date","completion_date","complete","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","status","created_at","updated_at" FROM "tasks" +  (0.4ms) DROP TABLE "tasks" +  (0.1ms) CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT NULL, "description" varchar DEFAULT NULL, "due_date" date DEFAULT NULL, "completion_date" date DEFAULT NULL, "complete" boolean DEFAULT 'f', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) +  (0.1ms) INSERT INTO "tasks" ("id","name","description","due_date","completion_date","complete","created_at","updated_at") + SELECT "id","name","description","due_date","completion_date","complete","created_at","updated_at" FROM "atasks" +  (0.1ms) DROP TABLE "atasks" + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170922214823"]] +  (1.4ms) commit transaction + ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", "environment"], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Started GET "/tasks/24" for 127.0.0.1 at 2017-09-22 14:51:27 -0700 +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 24ms (Views: 13.5ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:51: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 (3.2ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/24" for 127.0.0.1 at 2017-09-22 14:51:32 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"vT7NIVCe6QTr77ns4ZcKl17G6hT6oDaCu5qVbiOtNdPWw8HKjUcZwhUcyw33JuREvz41wY3QTSOfwQYxy6pcjw==", "id"=>"24"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 24]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:51:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/26" for 127.0.0.1 at 2017-09-22 14:51:34 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"aRewBLPYW9i2lOUBshh8+Je8fX3yPjp0maog2pLr9Jzi4qvuiY6z66/yECfkmvLEidLLs+EPsb31ArlqGJVmVw==", "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 26]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:51:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/27" for 127.0.0.1 at 2017-09-22 14:51:35 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"NZJ8xhucX8Hupt/IHhZ2k6l7G4+ZIIOTQiGtcRxPw36+Z2csIcq38vfAKu5IlPivtxWtQYoRCFouiTTBljFRtQ==", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 27]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:51: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 (3.3ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/28" for 127.0.0.1 at 2017-09-22 14:52:13 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"8Old39KBg/IoqcqpKZM+jbmB/41X/yB6KchUJxJkZW57HEY16NdrwTHPP49/EbCxp+9JQ0TOq7NFYM2XmBr3pQ==", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 28]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:52: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.2ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:53: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 18ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/29" for 127.0.0.1 at 2017-09-22 14:58:19 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"vXI/wleSed/9ylioVBHUFtCBRBvzkBTlBW8uK3dLa0U2hyQobcSR7OSsrY4Ck1oqzu/y1eChnyxpx7eb/TX5jg==", "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 29]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:58:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.3ms) +Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 14:58:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 14:58:36 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"MayWlvq++3WgdWNhYThvWjrmiyY7IWYcY4Wg+fIE/rrURbAwVK4XwX/InS4ySjPVAP2CnqITMYx47pKt6N8ALQ==", "utf8"=>"✓", "task"=>{"name"=>"Call dad", "description"=>"give him a call before his bday", "due_date"=>"2017-09-22"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call dad"], ["description", "give him a call before his bday"], ["due_date", "2017-09-22"], ["created_at", "2017-09-22 21:58:36.706988"], ["updated_at", "2017-09-22 21:58:36.706988"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:58: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 (1.6ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30/edit" for 127.0.0.1 at 2017-09-22 14:58:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.0ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 14:58:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VbNJ9ymPY3FDdfarLTPh94IXxJJSH2Tj60GhTr3ipyreRlIdE9mLQloTA417sW/LnHlyXEEu7yqH6Tj+N5w14Q==", "task"=>{"name"=>"Call dad", "description"=>"give him a call before his bday", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-22 21:58:51.776588"], ["id", 30]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks/30 +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 14:58:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 14:59:15 -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 27ms (Views: 24.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-22 14:59:29 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"X16B+DYyLwC2qLh0SF3F0vzyf7BDCUwgME6ZT8qbXgi6t6demCLDtGkVRjsbL5ldxul2CNo7G7ArJasb0ECgnw==", "utf8"=>"✓", "task"=>{"name"=>"Call mom", "description"=>"ask her about her trip ", "due_date"=>"2017-09-23"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Call mom"], ["description", "ask her about her trip "], ["due_date", "2017-09-23"], ["created_at", "2017-09-22 21:59:29.445496"], ["updated_at", "2017-09-22 21:59:29.445496"]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:59:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-22 14:59:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 14:59: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.1ms) +Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 14:59:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 22ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 15:00:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:00: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 24ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 15:00:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 40ms (Views: 36.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:00:40 -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 26ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-22 15:00:41 -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 22ms (Views: 19.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:00: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.3ms) +Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/31/edit" for 127.0.0.1 at 2017-09-22 15:00:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (1.9ms) +Completed 200 OK in 19ms (Views: 17.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/31" for 127.0.0.1 at 2017-09-22 15:00:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"BB0B2/j4jdEYlZ20F8ttenO1cChV46U9OLveByfALAKP6Boxwq5l4gHzaJJBSeNGbdvG5kbSLvRUE0e3rb6+yQ==", "task"=>{"name"=>"Call mom", "description"=>"ask her about her trip ", "due_date"=>"2017-09-24"}, "commit"=>"Edit that task!", "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-09-24"], ["updated_at", "2017-09-22 22:00:51.256518"], ["id", 31]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/31 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-22 15:00:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:00: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 (2.2ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:02: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.0ms) +Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:02: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 21ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 15:02:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:02: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.2ms) +Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:16:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 28ms (Views: 24.0ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:16:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UM0aBnc7duqA+GtvAP09bJSmLWpE1WTP2q+DeKbtUe7bOAHsTW2e2ZmenklWf7NQisibpFfk7wa2BxrILJPDJQ==", "id"=>"30"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.3ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:37:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:16:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UM0aBnc7duqA+GtvAP09bJSmLWpE1WTP2q+DeKbtUe7bOAHsTW2e2ZmenklWf7NQisibpFfk7wa2BxrILJPDJQ==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:37:in `update' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:18:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.2ms) +Completed 200 OK in 32ms (Views: 27.8ms | ActiveRecord: 4.3ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:18:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"YgPvRLwZGxLa4C9HfWrXMhg/bTcS1XPKtlxn0W5Awvnp9vSuhk/zIcOG2mEr6FkOBlHb+QHk+APa9P5h5D5QMg==", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:37:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:18:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"YgPvRLwZGxLa4C9HfWrXMhg/bTcS1XPKtlxn0W5Awvnp9vSuhk/zIcOG2mEr6FkOBlHb+QHk+APa9P5h5D5QMg==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-22 22:18:56.537801"], ["id", 30]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks/30 +Completed 302 Found in 17ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 15:18:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 17ms (Views: 14.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:18:59 -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 24ms (Views: 21.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:19:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"sRozsSGZAROHJY0NaGbd5qJJ11tqIliXkyMVRQY3UW9O1qYxLN1wqoiBrw3jNMUBjvn53wWZMfVvDIPobTjeNg==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (1.2ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-22 22:19:01.724366"], ["id", 30]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks/30 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 15:19:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:19: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 26ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31" for 127.0.0.1 at 2017-09-22 15:19:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/OQJV4JzAhdDAPwt/fKV+F9RaVQurTHtQo58ArtoYuADGmPZ2kNuGa6VjATNdYMP7Pqm680sPxhzopI37k/yHw==", "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-22 22:19:04.300493"], ["id", 31]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks/31 +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-22 15:19:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:19: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 (3.0ms) +Completed 200 OK in 23ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31" for 127.0.0.1 at 2017-09-22 15:19:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"s3hA94PeGl4W/thgXlUoekbABhWhKdwNo/aY8dBJt7xMhip52+52UPtrqElu0j6N9WvJqkKo0viS2nbEhW4nQw==", "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-22 22:19:06.098202"], ["id", 31]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks/31 +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-22 15:19:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 17ms (Views: 15.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:19: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.7ms) +Completed 200 OK in 26ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:21:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 31ms (Views: 24.6ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:21:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ppYWFC91WI+j5V94NJyXjwsWGbE/5iq/VBLrA9qH8iUtYw3+FSOwvLqDql5iHhmzFXivfyzXoXY4unKzUPlg7g==", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.2ms) + + + +NoMethodError (undefined method `permit' for # +Did you mean? persisted?): + +app/controllers/tasks_controller.rb:38:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:23:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ppYWFC91WI+j5V94NJyXjwsWGbE/5iq/VBLrA9qH8iUtYw3+FSOwvLqDql5iHhmzFXivfyzXoXY4unKzUPlg7g==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.8ms) + + + +NoMethodError (undefined method `permit' for # +Did you mean? persisted?): + +app/controllers/tasks_controller.rb:38:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:23:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ppYWFC91WI+j5V94NJyXjwsWGbE/5iq/VBLrA9qH8iUtYw3+FSOwvLqDql5iHhmzFXivfyzXoXY4unKzUPlg7g==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `permit' for # +Did you mean? persisted?): + +app/controllers/tasks_controller.rb:38:in `update' +Started PATCH "/tasks/31" for 127.0.0.1 at 2017-09-22 15:23:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ppYWFC91WI+j5V94NJyXjwsWGbE/5iq/VBLrA9qH8iUtYw3+FSOwvLqDql5iHhmzFXivfyzXoXY4unKzUPlg7g==", "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `permit' for # +Did you mean? persisted?): + +app/controllers/tasks_controller.rb:38:in `update' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 15:24:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 30ms (Views: 25.6ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:24:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LSd0I8BkeugTap2s44O+raOmeBQ9D9GSOO7Mt1SVztam0m/J+jKS2woMaIq1ATCRvcjO2i4+WltURlUH3utcHQ==", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + + + +ArgumentError (wrong number of arguments (given 4, expected 1)): + +app/controllers/tasks_controller.rb:38:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:24:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LSd0I8BkeugTap2s44O+raOmeBQ9D9GSOO7Mt1SVztam0m/J+jKS2woMaIq1ATCRvcjO2i4+WltURlUH3utcHQ==", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.7ms) + + + +NoMethodError (undefined method `permit' for # +Did you mean? persisted?): + +app/controllers/tasks_controller.rb:38:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:26:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LSd0I8BkeugTap2s44O+raOmeBQ9D9GSOO7Mt1SVztam0m/J+jKS2woMaIq1ATCRvcjO2i4+WltURlUH3utcHQ==", "id"=>"30"} +Unpermitted parameters: :_method, :authenticity_token, :id + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 12ms (ActiveRecord: 1.0ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:48:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:53:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LSd0I8BkeugTap2s44O+raOmeBQ9D9GSOO7Mt1SVztam0m/J+jKS2woMaIq1ATCRvcjO2i4+WltURlUH3utcHQ==", "id"=>"30"} +Unpermitted parameters: :_method, :authenticity_token, :id + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:48:in `update' +Started GET "/tasks/" for 127.0.0.1 at 2017-09-22 15:53: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.5ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30/edit" for 127.0.0.1 at 2017-09-22 15:53:38 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 15:53:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"iHpNf2IDOsCnmBMVPN1yqvAf5YFfTNGFQUtBRD0NMWQDj1aVWFXS877+5jNqX/yW7nFTT0x9Wkwt49j0t3Ojrw==", "task"=>{"name"=>"Call dad", "description"=>"give him a call before his bday", "due_date"=>"2017-11-09"}, "commit"=>"Edit that task!", "id"=>"30"} +Unpermitted parameters: :utf8, :_method, :authenticity_token, :task, :commit, :id + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms) + + + +NoMethodError (undefined method `[]' for nil:NilClass): + +app/controllers/tasks_controller.rb:48:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 16:01:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"iHpNf2IDOsCnmBMVPN1yqvAf5YFfTNGFQUtBRD0NMWQDj1aVWFXS877+5jNqX/yW7nFTT0x9Wkwt49j0t3Ojrw==", "task"=>{"name"=>"Call dad", "description"=>"give him a call before his bday", "due_date"=>"2017-11-09"}, "commit"=>"Edit that task!", "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.7ms) + + + +ArgumentError (wrong number of arguments (given 0, expected 1)): + +app/controllers/tasks_controller.rb:35:in `update' +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-22 16:03:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"iHpNf2IDOsCnmBMVPN1yqvAf5YFfTNGFQUtBRD0NMWQDj1aVWFXS877+5jNqX/yW7nFTT0x9Wkwt49j0t3Ojrw==", "task"=>{"name"=>"Call dad", "description"=>"give him a call before his bday", "due_date"=>"2017-11-09"}, "commit"=>"Edit that task!", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "due_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["due_date", "2017-11-09"], ["updated_at", "2017-09-22 23:03:09.918240"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/30 +Completed 302 Found in 18ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 16:03:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:03: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.0ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +e => false}, :refresh => true}), method: :patch);@output_buf + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +ompletion_date => Date.today }, :refresh => true} ), method: + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:03:29 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +e => false}, :refresh => true}), method: :patch);@output_buf + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +ompletion_date => Date.today }, :refresh => true} ), method: + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:04: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 (124.7ms) +Completed 500 Internal Server Error in 130ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `update_task_path' for #<#:0x007f9982bd7c70>): + 12: <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + 13: + 14: <% if task.complete == false %> + 15: <%=link_to "Unmark Complete", update_task_path(task.id, {:task => {:complete => false}, :refresh => true}), method: :patch%> + 16: <%else %> + 17: <%=link_to "Mark Complete", update_task_path(task.id, {:task => {:complete => true, :completion_date => Date.today }, :refresh => true} ), method: :patch%> + 18: <%end%> + +app/views/tasks/index.html.erb:15:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148650877960' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148650877960' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:05:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (137.6ms) +Completed 500 Internal Server Error in 143ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `update_task_path' for #<#:0x007f997c0208b0>): + 12: <%=button_to "Delete", task_path(task), method: :delete, data: {confirm: "Are you sure you want to delete this task?"} %> + 13: + 14: <% if task.complete == false %> + 15: <%=link_to "Unmark Complete", update_task_path(task.id, {:task => {:complete => false}, :refresh => true}), method: :patch%> + 16: <%else %> + 17: <%=link_to "Mark Complete", update_task_path(task.id, {:task => {:complete => true, :completion_date => Date.today }, :refresh => true} ), method: :patch%> + 18: <%end%> + +app/views/tasks/index.html.erb:15:in `block in _app_views_tasks_index_html_erb___4435418077258163873_70148593618620' +app/views/tasks/index.html.erb:8:in `_app_views_tasks_index_html_erb___4435418077258163873_70148593618620' +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:05:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 29ms (Views: 23.6ms | ActiveRecord: 0.9ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-22 16:05:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"gqU7XalSV9f/HGrJTL1tkmiq7igwTdfpfCLdUjnKl3gJUCC3kwS/5OZ6n+8aP+OudsRY5iN8XCAQikTis7QFsw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:05:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-22 16:05:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"3Hg6ZkwVv7EdWY9EQ7qkZq088I1uCjyXAUWXuUoq74hXjSGMdkNXggQ/emIVOCpas1JGQ307t15t7Q4JwFR9Qw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 0.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:05:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-22 16:05:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/OIFQ8/7y3WqVLOENjt9eAF24oBiNZZdcPhp3qvUh053Fx6p9a0jRrMyRqJgufNEHxhUTnEEHZQcUPBuIaoVhQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:05:42 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:05: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 (3.5ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-22" for 127.0.0.1 at 2017-09-22 16:05:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"R3eteFenDROER3+BuJLTmGm5jQmG1hbVyRDRBVVcMU3MgraSbfHlIJ0hiqfuEF2kd9c7x5XnnRyluEi13yKjhg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-22"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-22 23:05:59.513963"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:05:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-22 16:06:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"VHgbzGgEBoljt0IvdGMM3LfCtunOLGiaERGdapyZFjbfjQAmUlLuunrRtwki4YLgqawAJ90d41N9uQTaFueE/Q==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-22 23:06:00.414517"], ["id", 30]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 19ms (Views: 17.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-22" for 127.0.0.1 at 2017-09-22 16:06:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rpHZ8xz+DwM4W7vz4T4UquYSft4l2pudrVFrXaAl9GslZMIZJqjnMCE9TtW3vJqW+HzIEDbrEFTB+fLtKltmoA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-22"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-22 23:06:01.232589"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 34ms (Views: 32.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-22 16:06:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LUCv3mSWvTCoz+8PO4Oq5QLtAjdhiNPaPCUBECL8p9mmtbQ0XsBVA7GpGiltASTZHIO0+XK5WBNQjZigqII1Eg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-22 23:06:02.280802"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 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.5ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 16:06:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06:07 -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 23ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-22" for 127.0.0.1 at 2017-09-22 16:06:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"eX8iEryqSSRPR++uHJcGjHJ5R7nPtM44z4opSwJ4l2Pyijn4hvyhF1YhGohKFYiwbBfxd9yFRfGjIrD7iAYFqA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-22"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-22 23:06:10.456545"], ["id", 30]] +  (1.3ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06: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.8ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-22 16:06:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06: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 (3.8ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-22" for 127.0.0.1 at 2017-09-22 16:06:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"NfnQIBh+z6oYn6qfS620wv8zfUjDkAEhMdB91bsbrI++DMvKIignmQH5X7kdLzr+4V3LhtChiuhdeORlMWU+RA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-22"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-22 23:06:18.732206"], ["id", 31]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-22 16:06:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"N7puHLFEvP2D3A9QJCN1iSr5A4kgo1tD/EG/IINaXZK8T3X2ixJUzpq6+nZyofu1NJe1RzOS0IqQ6SaQCSTPWQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (1.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-22 23:06:19.523132"], ["id", 31]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06: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 (3.2ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-22" for 127.0.0.1 at 2017-09-22 16:06:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Es0LpMqNTtikxu8IcLrbttfp+ly0m8ghCrenVmSxiKuZOBBO8Num672gGi4mOFWKyYdMkqeqQ+hmHz7m7s8aYA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-22"}, "id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-22 23:06:20.750977"], ["id", 31]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06: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 (3.8ms) +Completed 200 OK in 25ms (Views: 22.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-22 16:06:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2kXTgXkqL9lgQ2gYxfE4zIm37PuG6jRFLy+k8cMMAVtRsMhrQ3zH6nklnT6Tc7bwl9laNZXbv4xDhz1BSXKTkA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-22 23:06:21.293392"], ["id", 31]] +  (1.6ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06: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.7ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-22 16:06: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 (4.1ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:20:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (28.6ms) +Completed 200 OK in 104ms (Views: 90.1ms | ActiveRecord: 1.6ms) + + +Started GET "/tasks/30/edit" for 127.0.0.1 at 2017-09-24 22:20:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (9.4ms) +Completed 200 OK in 42ms (Views: 38.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30" for 127.0.0.1 at 2017-09-24 22:20:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UkU1HuEqGR/yeX46tVdJbbkoVxeBKrCtZXeJS5I1VYTZsC7023zxLOsfixzj1cdRp0bh2ZIbO2QJ3xD7GEvHTw==", "task"=>{"name"=>"Call dad", "description"=>"give him a call before his bday", "due_date"=>"2017-11-09"}, "commit"=>"Edit that task!", "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.2ms) begin transaction +  (0.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/30 +Completed 302 Found in 8ms (ActiveRecord: 0.6ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-24 22:20:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:20: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 (6.6ms) +Completed 200 OK in 114ms (Views: 109.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-24 22:20:50 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.5ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-24 22:20:52 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"HqBdzXnqQdID+qIc4ULq5ndTpZgJmiQmwJrncb2cD8j7SXtr1/qtZtxHXFOyMLZpTUisIJCoc7bb8dUlp0fxXw==", "utf8"=>"✓", "task"=>{"name"=>"", "description"=>"", "due_date"=>""}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (1.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", ""], ["description", ""], ["created_at", "2017-09-25 05:20:52.642019"], ["updated_at", "2017-09-25 05:20:52.642019"]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:20: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 (4.3ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/32" for 127.0.0.1 at 2017-09-24 22:20:57 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"IW+Tc5TwJsrI4mtmpFQ1cqLqCMdjFezJvZPrUySzk1mqmoiZrqbO+dGEnkDy1rtOvIS+CXAkZwDRO3Ljrs0Bkg==", "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 32]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:20: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 (3.4ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (3.2ms) +Completed 200 OK in 24ms (Views: 21.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (3.4ms) +Completed 200 OK in 26ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22: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" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 26ms (Views: 22.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21:26 -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.7ms) +Completed 200 OK in 26ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (3.4ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (3.2ms) +Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (3.4ms) +Completed 200 OK in 24ms (Views: 21.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (3.6ms) +Completed 200 OK in 26ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (3.5ms) +Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-24 22:21:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.7ms) +Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-24 22:21:32 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 21.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-24 22:21: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.5ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-24 22:21: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.3ms) +Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-24 22:21:34 -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 22ms (Views: 19.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-24 22:21: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 (16.9ms) +Completed 200 OK in 36ms (Views: 33.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-24 22:21: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.6ms) +Completed 200 OK in 28ms (Views: 24.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:25:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.9ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (71.0ms) +Completed 200 OK in 233ms (Views: 202.0ms | ActiveRecord: 1.9ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:25:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0PVSMWLgfKIfMQ0FCBLljDCqCbKyRmtnRHJZsKfn3mVbAEnbWLaUkQZX+CNekGuwLsS/fKF34K4o2sAALZlMrg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (1.8ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:25:35.274346"], ["id", 30]] +  (0.8ms) commit transaction +  (0.0ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 33ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:25: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 (7.4ms) +Completed 200 OK in 44ms (Views: 41.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:25:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"mB1aGsaNTg64u+be3P0fA0U6rurm/om8PGfJAiXUyCYT6EHw/NumPaHdE/iKf5E/W1QYJPXPAnVQz1Cyr6pa7Q==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:25:36.315046"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:25: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 (5.2ms) +Completed 200 OK in 30ms (Views: 27.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:25:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/l5nd38AmFp9ESUweSi6Uetbp7UyKi/cVebxaiG61cJ1q3ydRVZwaWR30BYvqjRt9TUReyEbpBU5Tmjaq8RHCQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:25:39.905201"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:25: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 (4.7ms) +Completed 200 OK in 34ms (Views: 32.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:25:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"J5rgrsyDC7RkazXcC2e8qPmaBxxay+OLc6nvJsxHK0Osb/tE9tXjh30NwPpd5TKU5/Sx0kn6aEIfAXaWRjm5iA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:25:42.899253"], ["id", 30]] +  (0.9ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:25: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 (4.1ms) +Completed 200 OK in 27ms (Views: 25.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:25: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.8ms) +Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:26:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"W0OOIBNAgb4iD1nzxm5OPoNpmjGKdBGpRXugzD+mcDjQtpXKKRZpjTtprNWQ7MACnQcs/5lFmmAp0zl8tdji8w==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:26:00.450208"], ["id", 30]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:26:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:26:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"iULZy41qI2yQRAX8qTdGYFyVZZDtZ2nF+HnYZwj22kECt8IhtzzLX4ki8Nr/tchcQvvTXv5W4gyU0UHXgohIig==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:26:02.081586"], ["id", 30]] +  (0.8ms) commit transaction +  (0.0ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:26: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 (5.3ms) +Completed 200 OK in 32ms (Views: 29.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:26:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"iw0FvoTEOI3ei+qMEYybaR9ODShO9yUOoCd60rIY7bUA+B5UvpLQvsftH6pHDhVVASC75l3GrsfMj+NiOGZ/fg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:26:03.988607"], ["id", 30]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:26:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28: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 (3.0ms) +Completed 200 OK in 85ms (Views: 82.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:28:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"B5nuFsgrb7OaQs2R6E/7gYu3RLi8inC3zajKErKoIDOMbPX88n2HgIMkOLe+zXW9ldnydq+7+36hAFOiONay+A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:28:07.872052"], ["id", 30]] +  (0.9ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (3.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 33ms (Views: 27.6ms | ActiveRecord: 3.5ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:28:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rJk+uBJ2p2nXYPxndN2Xc/dq5viPUDP0Ut9ypcPz0lQnbCVSKCBPWs4GCUEiXxlP6QRQNpxhuD0+d+sVSY1Anw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:28:10.340006"], ["id", 30]] +  (0.9ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28:10 -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.0ms) +Completed 200 OK in 62ms (Views: 58.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:28:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LO1x6eWWZeRhXVz8bHZAy3Fx1jhfaHPdvpvZnJqd4OCnGGoD38CN13g7qdo69M73bx9g9kxZ+BTSM0AsEONyKw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:28:12.954981"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:28:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"i0hyAtMnVd/UWW2AB8KIFuGtnk7iVXAPL/jMeRv26cwAvWno6XG97M0/mKZRQAYq/8MogPFk+8ZDUFXJkYh7Bw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:28:19.328114"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28:19 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:28:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/UvBtAjuWd5D/+DEy/Ht6NVgEn/IZE+0NJr0nu531Xl2vtpeMrix7VqZFeKdc2PUyw6ksdtVxH1YMm0uZAlHsg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:28:21.218470"], ["id", 30]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28: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 (3.0ms) +Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:28:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"61RLZB5Qu/7dQ1wJ50dlIDV5187L98wAvO2JDyYQxxRgoVCOJAZTzcQlqS+xxescKxdhANjGR8nQRRC/rG5V3w==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:28:44.771858"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:28: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 (3.5ms) +Completed 200 OK in 21ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34: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 (4.3ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:34:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"PWJrRhyhabfv19gFFF3h3JwNBZATiHOiBblEoktbBje2l3CsJveBhPaxLSNC32/ggmOzXgC5+GtpEd0SwSWU/A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:34:08.337008"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34:08 -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 20ms (Views: 18.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:34:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"T8S7ubr/AHjZDXJDPQ4fpbj9uJ/DA9S7M865w9Ob9gPEMaBTgKnoS8Brh2VrjJGZppMOUdAyX3JfZiBzWeVkyA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:34:09.817994"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34: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.4ms) +Completed 200 OK in 19ms (Views: 17.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:34:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XzmPHyEP4GK1pb4Fs0QEYV7dB7atcw1j8tTyCLoUMPLUzJT1G1kIUazDSyPlxopdQLOxeL5ChqqefGu4MGqiOQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:34:11.171083"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34: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 (3.8ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:34:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"SoYwUO4JWhSn2Ddp7CHVRIJYWa0UC9oEbbrp0+mDDp/Bcyu61F+yJ76+wk+6o1t4nDbvYwc6Uc0BEnBjY/2cVA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:34:12.088737"], ["id", 30]] +  (1.3ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 19ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34: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 (3.9ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:34:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"1H86d0eNZbWn8FYarZnCB1h/QemDapNvZAp6WHlKzeNfiiGdfduNhr6Wozz7G0w7RhH3J5BbGKYIouPo8zRfKA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:34:23.760025"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34:23 -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 22ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:34:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0MGIfMgAgUp3/QhPPAMghoHB0CUsQKgyaArTXv+pWvpbNJOW8lZpeW6b/Wlqga66n69m6z9xI/sEokruddfIMQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:34:24.530466"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.7ms) +Completed 200 OK in 32ms (Views: 29.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-25 17:34:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"W9UQQ7AMgaNKFpvR9CuNzAQpnLwPQUc94dlT4kbRHcHQIAupilppkFNwbveiqQPwGkcqchxwzPSNccpSzK+PCg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 00:34:25.984409"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34: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 (4.4ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-25 17:34:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"bxfo26hO9lnkRK2/Df9vN/Zm5b6pAhAt5BQnhFMklz/k4vMxkhgeav0iWJlbfeEL6AhTcLozm+SIvL402VoF9A==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 00:34:26.737847"], ["id", 30]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:34:26 -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 20ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:35: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.9ms) +Completed 200 OK in 38ms (Views: 36.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-25 17:35:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 19.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:35:23 -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 38ms (Views: 36.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-25 17:35:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 23ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:35: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 (3.3ms) +Completed 200 OK in 28ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:35: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.8ms) +Completed 200 OK in 46ms (Views: 44.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-25 17:35:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-25 17:36:14 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.2ms) +Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-25 17:36:36 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"+29U8w0WllXZFs9wmUtcEzM1EeCmfxJlyUzhAxPBRnoehnJVowZ64QarMT/KOQCcCS4YWD9NRfXSJ9NXCRq47Q==", "utf8"=>"✓", "task"=>{"name"=>"do cs integers hw", "description"=>"make sure to read through the notes", "due_date"=>"2017-09-28"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "do cs integers hw"], ["description", "make sure to read through the notes"], ["due_date", "2017-09-28"], ["created_at", "2017-09-26 00:36:36.061830"], ["updated_at", "2017-09-26 00:36:36.061830"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:36: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 (3.4ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:37: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.2ms) +Completed 200 OK in 45ms (Views: 42.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33" for 127.0.0.1 at 2017-09-25 17:38:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33/edit" for 127.0.0.1 at 2017-09-25 17:38:26 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (2.8ms) +Completed 200 OK in 26ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33" for 127.0.0.1 at 2017-09-25 17:38:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"he8BXle2pgtAt7bKwtfJE2LmJpkDuNmnvuQgcjE4qqhG7Vier4LIDLUDDWDVr+hdltu52z/GG0NYrdtKbYJ+Mw==", "task"=>{"name"=>"do cs integers hw", "description"=>"make sure to read through the notes", "due_date"=>"2017-09-28"}, "commit"=>"Edit that task!", "id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks/33 +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks/33" for 127.0.0.1 at 2017-09-25 17:38:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17: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 (4.0ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33" for 127.0.0.1 at 2017-09-25 17:39:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-25 17:39: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 (3.4ms) +Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-25" for 127.0.0.1 at 2017-09-26 11:57:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"aaH1WcYHTC/AFIjh3Kqg2XOo8sn0D7oWKHnUV0dfPu+WbWDZy0M9ls+wquFX+Lg+XxjcTZu003TUVkL6LFCxtg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-25"}, "id"=>"30"} + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.3ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 18:57:03.197099"], ["id", 30]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 34ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:57: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 (23.5ms) +Completed 200 OK in 85ms (Views: 81.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 11:57:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tk4D2lQ0PHrhCAN2zv9OiQQzR34vbgnYzqDTPVUz4749uxgwbmLUSfhu9lCYfcC1Gl3xsDxfghGiCEqN301xdQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 18:57:07.168997"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:57:07 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:58: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 (4.0ms) +Completed 200 OK in 109ms (Views: 107.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 11:58:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/aZa+VZ9mn5PRdvhNp1MqmKZRxZGEhvPD3wZkrs1/Q12U0ETbCtyTVYjLsdgH8KWfPfx2FUjkAZj1IAiMUtvxg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 18:58:44.919252"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:58: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 (5.2ms) +Completed 200 OK in 27ms (Views: 25.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 11:58:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"86uS1csbO0Uv5Er34W/Cj8Z63ELL+iQbMWCPfyQGqlZ4Xok/8U3TdjaCv9G37Uyz2BRqjNjLr9JdyBbPrng4nQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 18:58:46.072922"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:58:46 -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 (6.0ms) +Completed 200 OK in 33ms (Views: 31.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:58: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 (7.2ms) +Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 11:58:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"dRc2DpS8/HA/SaHlwe83gLfnnjCZEt0WdpTaW8F4vJL+4i3kruoUQyYvVMOXbbm8qYko/oojVt8aPEPrSwYuWQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 18:58:57.638433"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:58:57 -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 (5.6ms) +Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 11:58:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"CH8jNsDmZAH5o4QoY1O5cPTCoKysZsnELQZpOjOP+5aDijjc+rCMMuDFcQ410TdM6qwWYr9XQg1BrvCKufFpXQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 18:58:58.931206"], ["id", 30]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction +  (0.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 53ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:58: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 (4.5ms) +Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:59: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 (4.7ms) +Completed 200 OK in 48ms (Views: 46.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 11:59:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"8djB11ejDz5YHlMjlK+GhxyHz1/oYZ69fvH3ClWXIv16Ldo9bfXnDUF4pgXCLQi7Aul5kftQFXQSWW663+mwNg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (1.2ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 18:59:44.627475"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:59:44 -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.9ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 11:59:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"7m6LRwN77heQw7OxHgIUGqY8hjFDyZPSQ8/L0CMKzF1lm5CtOS0GJImlRpdIgJomuFIw/1D4GBsvZ1JgqXRelg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 18:59:45.766945"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 11:59: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 (4.0ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:00: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 (4.9ms) +Completed 200 OK in 47ms (Views: 44.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:00:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"vi5PJ/oFPtPGc2PVKpSMoGNK+CgmbilJ69TI8nXEymQ121TNwFPW4N8VlvN8FgKcfSRO5jVfooCHfFFC/7pYrw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:00:52.992714"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:00: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 (4.7ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:00:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"EWyXKZZZD0LgrTlRhAK9WZPj2zcnO6xjwITZEc7BRICamYzDrA/ncfnLzHfSgDNljY1t+TQKJ6qsLEChRL/WSw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:00:54.342585"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:00: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 (5.1ms) +Completed 200 OK in 23ms (Views: 21.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:01: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 (3.5ms) +Completed 200 OK in 46ms (Views: 43.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-26 12:01:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 30ms (Views: 27.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:01: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 (4.3ms) +Completed 200 OK in 28ms (Views: 23.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:01:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"e4OE3AohnkBgV7cxj3xhBtXojlo2Ij41X97fDzZ1+PKETxFcB2Xv+W/zlTEELnnh+Vig3lmZV1ej8UmiXXp3qw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:01:36.414714"], ["id", 30]] +  (1.4ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:01: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 (5.1ms) +Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:01:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"YaHBfwas/I6L8N+zYJjNdZsyYw3MCVJLf7LP3D5Fc0XqVNqVPPoUvZKWKpU2GkNJhVzVw9842YITGlZstDvhjg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:01:37.667158"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:01: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 (3.1ms) +Completed 200 OK in 40ms (Views: 37.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12: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 (4.1ms) +Completed 200 OK in 45ms (Views: 42.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:01:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"uQk02nPzFSP6TP6Yrn19nP7dfqAPZ/6fzLr7JMwtnWky/C8wSaX9EOMqC774//Og4LPIbhxWdVagEmKURlMPog==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:01:56.051975"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:01:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:01:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4rDj6yFPRAFXONsDTRibmLwDtyhGSEpud/Z0BV6HLNZpRfgBGxmsMk5eLiUbmhWkom0B5lV5wacbXu211Pm+HQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:01:57.125445"], ["id", 30]] +  (0.5ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:01:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:03: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 (4.0ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:03: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 (3.4ms) +Completed 200 OK in 39ms (Views: 37.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:03:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"nOnpnfQy9VY41MBrOq1LeUT5SdXfFxgGL3CoIFKlsCsXHPJ3zmQdZSGyNU1sL8VFWpf/G8wmk89D2DGQ2Nsi4A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:03:45.686850"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:03:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:03:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XgO/YeYzK1OKagngM7kHpRMfCBp4I0IIPbZTAKwO0FHV9qSL3GXDYJMM/MZlO4mZDXG+1GsSycFRHsqwJnBCmg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:03:47.220560"], ["id", 30]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:03: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 (5.0ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:03:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"vfSKu4l9WfG2eiEB2NZnVwXawz/NUOOLCseUH1YLUm82AZFRsyuxwq8c1CeOVOlrG7R18d5haEJmbw2v3HXApA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:03:49.027467"], ["id", 30]] +  (2.0ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:03: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 (4.0ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:03: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 (4.4ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:04:23 -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.7ms) +Completed 200 OK in 45ms (Views: 43.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:04:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Zr7kAAZfZK4Xm6VMsvTBfnXHY10TvNUS5JIvp7y6R6vtS//qPAmMnQ79UGrkdk9Ca6nVkwCNXtuIOrYXNsTVYA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:04:25.477543"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:04: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 (3.5ms) +Completed 200 OK in 26ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:04:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"vKOi3meA+U+jMwIRaY9VsMRtdDCehnAj3zo115JQCao3Vrk0XdYRfLpV9zc/DduM2gPC/o23++qzkqxnGC6bYQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:04:26.778276"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:04:26 -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.4ms) +Completed 200 OK in 35ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:04:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"7pTGchIUuaMquyRx1li4SgYAYHgYD6B8BgieLLXW/H9lYd2YKEJRkDPd0VeA2jZ2GG7Wtgs+K7VqoAecP6hutA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:04:27.829012"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:04:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:04: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 (3.5ms) +Completed 200 OK in 38ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:05:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"bpOfWqQqD+gXVRLhCfAX7v8Xa3kwvA39MJq0fP5bgjXlZoSwnnzn2w4z58dfcpnS4XndtyONhjRcMi3MdCUQ/g==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:05:46.238636"], ["id", 30]] +  (0.6ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:05: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.9ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:05:48 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"842UhvABfoGMLrDC1FTuEvQD4me0IuQn5Ub/NtXrhdZ4eI9syleWspVIReSC1mAu6m1UqacTb+6J7maGX5UXHQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:05:48.327595"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:05:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:06: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 (4.3ms) +Completed 200 OK in 39ms (Views: 36.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:06:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Gx64wbdXiPl5pyeQF7xzYijhB7L9I3qvrM0/9NrAmB2Q66MrjQFgymDB0rZBPv1eNo+xfO4S8WbAZaZEUL4K1g==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:06:22.858144"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:06:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 24ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:06:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XxSVaW1tG3Sw19zJXk0DbvY7L4I9eJp1l4+2m9dQu6XU4Y6DVzvzR6mxKe8Iz41S6FWZTC5JEbz7Jy8rXS4pbg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:06:24.110793"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:06: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 (3.9ms) +Completed 200 OK in 23ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:06:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"G7h0+ZNpxTllzgrk53mwTly2ngDUReOquE2h5q73x9yQTW8TqT8tCnyo/8Kx+z5yQtgozsd0aGPU5ThWJIlVFw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:06:27.039203"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:06:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:07:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected ':', expecting => + :patch, text-decoration-line: line-through);@output_buffer. + ^): + +app/views/tasks/index.html.erb:16: syntax error, unexpected ':', expecting => +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:07:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected ':', expecting => +thod: :patch, text-decoration: line-through);@output_buffer. + ^): + +app/views/tasks/index.html.erb:16: syntax error, unexpected ':', expecting => +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:08: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 (3.5ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for 127.0.0.1 at 2017-09-26 12:10:02 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for 127.0.0.1 at 2017-09-26 12:10:15 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"N98SvmaJu2ttDiNGGcnwyzOxzhepZ5khkGP16ncjdgPSNjQYyJlX37Kz3QlKu6xECarHrzBVzrGLCMe+bfiIlA==", "utf8"=>"✓", "task"=>{"name"=>"Complete Wave 3", "description"=>"add a completion button", "due_date"=>"2017-09-27"}, "commit"=>"Add that task!"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "due_date", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Complete Wave 3"], ["description", "add a completion button"], ["due_date", "2017-09-27"], ["created_at", "2017-09-26 19:10:15.807127"], ["updated_at", "2017-09-26 19:10:15.807127"]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:10:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/34" for 127.0.0.1 at 2017-09-26 12:10:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 25ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:10: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 (5.3ms) +Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:11: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 (3.4ms) +Completed 200 OK in 48ms (Views: 46.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:11:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Hj3EFKt9KUe43EjbK5eoVVnKP0nvLJQzuwI7+ZKcoCOVyN/+kSvBdKG6vf19FSZpR6SJh/wdH/rXqqJJGOIy6A==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:11:15.712616"], ["id", 30]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:11:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:11:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"yzLGBh2pt7/S+UqPnTSQpqrlkgdF8/E6feD4cpKbt25Ax93sJ/9fjMufv6nLth6atIskyVbCevMRSGHCGOUlpQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:11:16.684172"], ["id", 30]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:11: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 (4.8ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:11:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"BN+aOKpl5x8jbkhaoKdq8/TeEwtHx9WMw1DTmfP8ODuPKoHSkDMPLDoIvXz2JeTP6rClxVT2XkWv+EopeYKq8A==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:11:17.397619"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:11:17 -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 (4.2ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-26 12:11:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:11:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"pyXWaU2QIg2q9s9OIzdczHkPY4K7HfLLgKs1GO3Fo5Us0M2Dd8bKPrOQOmh1tdLwZ2HVTKgseQLsA6yoZ7sxXg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:11:40.656869"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:11:40 -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 (4.3ms) +Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:11:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"NeLD3C+7dLFRuYHrFDH6QZVB0F/wk2j8j0XIILDTCje+F9g2Fe2cgkjfdM1Cs3R9iy9mkeOi4zXj7VGQOq2Y/A==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:11:52.186282"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:11:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:11:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"MaGhOBvu0/xVN53+IWZUuEEZH9izGE/1uar2sK7kLhG6VLrSIbg7z0xRaNh35NqEX3epFqApxDzVAm8AJJq82g==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:11:53.201056"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12: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" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 22ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:12: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 (4.2ms) +Completed 200 OK in 36ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:12:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"H4xku/gjks90nwkhKTK/R+zMg5gpHb9jnH4aOQE4T3CUeX9RwnV6/G35/Ad/sDF78qI1VjosNKrw1oOJi0bduw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:12:56.986170"], ["id", 30]] +  (1.3ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:12:56 -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 (4.2ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:12:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"G9B5tV+ihM/4Chfj6WYGEjHSJuIkYZiWoF9kM8p59VGQJWJfZfRs/OFs4sW/5IguL7yQLDdQE1/M9/2DQAdnmg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:12:57.663884"], ["id", 30]] +  (0.9ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:12: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 (4.1ms) +Completed 200 OK in 21ms (Views: 19.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:19:50 -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 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected ')', expecting => +:patch, {class: "incomplete"});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected ')', expecting => +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:20: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.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +patch, :class => "incomplete"});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true} ), method: :patch);@output_bu + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:21:15 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting => +tch, {:class => "incomplete"}});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true} ), method: :patch);@output_bu + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting => +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:21:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected =>, expecting ')' +}), method: :patch, (:class => "incomplete")});@output_buffe + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting => +tch, (:class => "incomplete")});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true} ), method: :patch);@output_bu + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected =>, expecting ')' +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting => +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:23:34 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +esh => true}), method: :patch});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true} ), :class => "complete", meth + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected ',', expecting ')' +true} ), :class => "complete", method: :patch);@output_buffe + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:18: syntax error, unexpected ',', expecting ')' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:23:53 -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 (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +esh => true}), method: :patch});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true} ), :class :complete, method: + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:24: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.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +esh => true}), method: :patch});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true} ), method: :patch);@output_bu + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:24:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +esh => true}), method: :patch});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true} , method: :patch);@output_buf + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:20: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:23: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:31: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:24:27 -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 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +esh => true}), method: :patch});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true}, method: :patch);@output_buff + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:24:44 -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 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +resh => true}, method: :patch});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +ate.today }, :refresh => true}, method: :patch);@output_buff + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting '}' +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:25: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.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:25:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.2ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/task/1" for 127.0.0.1 at 2017-09-26 12:25:25 -0700 + +ActionController::RoutingError (No route matches [GET] "/task/1"): + +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-26 12:25: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.8ms) +Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:25: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.8ms) +Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +'.freeze; else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:16: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:26: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 (4.5ms) +Completed 200 OK in 23ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:26: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 (4.6ms) +Completed 200 OK in 36ms (Views: 34.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-26 12:26:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 22ms (Views: 18.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:26: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 (4.4ms) +Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:26:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FF+qAacdLsHjH89XLysNJZq8QKRQJv2HQbV++WT2dkrrkz+BqllfeOy77VekeRXCtgxuID+dlOW9muhUD/n5Ew==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:26:57.707322"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:26: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 (5.8ms) +Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:26:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"wIzYQdSJfVElvaVD4Ka8ta4TgR9vNbmNSRRwpwqaCiNLecOr7t+VYjzbUGW2JDKJsH030XwEMkQlvOkXgOSY6A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:26:58.432235"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:26: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 (3.9ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:27:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4NyDXe3ietSZrV5mU6ri9vkGK3VOXqHptMOoGelXOyprKZi317SS54DLq0AFKGzK52idu11vKiDYazGpYymp4Q==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:27:00.925428"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:27: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 (3.7ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:27:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"NtRk069d1cHCz8aRysDCdnfG6fjWxT9BscPrkD/jpzW9IX85lQs98tupM7ecQkxKaahfNsX0tIjda3IgtZ01/g==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:27:01.565549"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:27: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 (3.3ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:31:15 -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 (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:17: syntax error, unexpected ')', expecting => +: :patch, {class: 'complete'});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:17: syntax error, unexpected ')', expecting => +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:31:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting ')' +sh => true} ), method: :patch});@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +'.freeze; end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/index.html.erb:17: syntax error, unexpected tSTRING_DEND, expecting ')' +app/views/tasks/index.html.erb:18: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:21: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/index.html.erb:27: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/index.html.erb:29: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:31: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 (4.3ms) +Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:33: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 (4.0ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:33: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 (4.4ms) +Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-26 12:33:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 24ms (Views: 21.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34: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 (4.0ms) +Completed 200 OK in 36ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:34:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ssHQHyjHiaBlhWwt3Y9x5OAYn68u5v7RX3rtrre/Db45NMv1EpFhk3zjmQuLDf/Y/nYpYT3XdRgz0nQePcGfdQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:34:20.797603"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34: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 (5.1ms) +Completed 200 OK in 23ms (Views: 21.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:34:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hfz1M2OJKWE1kHWbsQi+Ftm/Wh4bMPwyq+VbWe8HZbQOCe7ZWd/BUiz2gL3nijAqx9Hs0AgBd/vHTcLpZXn3fw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:34:21.524384"], ["id", 30]] +  (1.0ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34: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 (5.1ms) +Completed 200 OK in 33ms (Views: 31.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:34:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"trAeiZiWDb5Kr4mAG2cU+vklEiCVNm6k1eB3mMLFWQA9RQVjosDljVPJfKZN5ZrG50uk7oYH5W25SO4oSLvLyw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:34:23.208195"], ["id", 30]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34: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 (5.3ms) +Completed 200 OK in 22ms (Views: 20.3ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:34:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"U4LsJD/R7uXrFG5qTnjRMUBCUYVvsoVFJr2pO+wRBz7Yd/fOBYcG1vJym0wY+l8NXiznS3yDDoxKFTCLZm+V9Q==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (3.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:34:50.453421"], ["id", 30]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:34:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tYXTbZ5JDm1CW3bb7WXGmR2cWbxoXtIyIByHQayQueI+cMiHpB/mXls9g/2750ilA/LvcntvWftMtB7xJu4rKQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:34:51.807304"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34: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 (4.9ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:34:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4ZiYLw3xvd+HPMGKOjgZb4oB7DRHbC1UNgAo+tkCWh5qbYPFN6dV7J5aNKxsupdTlG9a+lRdpp1aqLFKU3zI1Q==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:34:52.790635"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:34:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"IjhEkeRDMd6F1tQRMdAzHEFxkl66z3NVqi1VmhtrJGGpzV973hXZ7ZywITdnUr0gXx8kkKn++JzGhcwqkRW2qg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:34:53.693175"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 24ms (Views: 21.7ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:34:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"QMEPdhN+dIjp8VHXDpceXetos6XJbNVltwVyXXVVITLLNBScKSicu/CXpPFYFZBh9QYFa9pdXqzbrevt/yuz+Q==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:34:56.166769"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 4.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:34:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"EK2RhmXpUL/TEkHCRBcfSBh1btVsLy2HxS1CRs1MqNWbWIpsX7+4jMp0tOQSlZF0BhvYG38epk6phdv2RzI6Hg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:34:57.717601"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:34:57 -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 (7.0ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:36:00 -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 (5.1ms) +Completed 200 OK in 38ms (Views: 36.2ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:36: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 (4.0ms) +Completed 200 OK in 39ms (Views: 36.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-26" for 127.0.0.1 at 2017-09-26 12:36:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rSCUZnHh8PZfE+KMFmv/l0NCsXQOj5RpHgpwSBedsqUm1Y+MS7cYxUZ1F6pA6XGrXSwHuh2+H6Byoun4neMgbg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-26"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-26 19:36:49.113348"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12: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 (4.5ms) +Completed 200 OK in 34ms (Views: 31.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-26 12:36:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"dDEx4kgRqIySAujBbTeOWZrJGuLJUSEszN3URsKyVQf/xCoIckdAv4tkHec7tQBlhKesLNpgquWgdU32SMzHzA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-26 19:36:50.336635"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12: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 (3.3ms) +Completed 200 OK in 21ms (Views: 18.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-26 12:39: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 (4.0ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:34:39 -0700 +  (0.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 (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.5ms) +Completed 200 OK in 409ms (Views: 393.6ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 09:34:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/kPYkDLR3H9YDSS3lOH865B141CgTJWPxSsxJ3xGr151tsN6CIc0TEFr0ZHCY3LXjhtVnrN9Hkapg6iX9jg9lQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 16:34:47.477973"], ["id", 30]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:34: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 (4.2ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 09:35:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"naUcJB1YrM6iFaC2uy4hcSP4nv3jldp10tPsSDbpzd0WUAfOJw5E/btzVZDtrK9NPZYoM/CkUby+e3X4vJdfFg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 16:35:05.244815"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:35: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 (4.1ms) +Completed 200 OK in 19ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 09:35:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rV/IhZuiOhyOo3tJQsxLLJSJePJyXHU5kDWHEho6TX4mqtNvofTSL5fFjm8UTsUQiufOPGFt/vD8nR6ikETftQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 16:35:06.446278"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:35: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 (4.4ms) +Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 09:35:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ZaEoOGXBMK8ZtQ5GffGScSvkAwHOSDThvv4Gf6Kn2kzuVDPSX5fYnADT+2ArcxxNNYq1z915vyjSVp/PKNlIhw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 16:35:09.310647"], ["id", 30]] +  (1.6ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:35: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 (4.8ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 09:35:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"e6ypHnXf/UigV0mFaWaJ+pnNRdApeQOJYeyE9fUChmTwWbL0T4kVe7kxvKM/5AfGh6PzHjpIiEANRB1Ff3wUrw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 16:35:10.633914"], ["id", 31]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:35: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 (3.8ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 09:35:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"BXM0rLTyc7Mjo0ji2MDebggAGJ1V++JWepO1JY822NiOhi9GjqSbgDrFvcSOQlBSFm6uU0bKaZ8WOyyVBUhKEw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 16:35:11.305802"], ["id", 31]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:35: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 (3.8ms) +Completed 200 OK in 22ms (Views: 17.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:49: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 (3.5ms) +Completed 200 OK in 34ms (Views: 32.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 09:49:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"6nXzZ71j68LDs6uDrgtrs1uRmH6Z/+FLeLDggtXVlrxhgOiNhzUD8drVXqX4ieWPRf8usIrOaoIUGHkyX6sEdw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 16:49:58.167196"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:49: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 (3.3ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 09:49:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"wNPyF3zi8QmUdDlapDjfymXSFSWy3ddBQaVdDQfdZ1pLJun9RrQZOo0SzHzyulH2e7yj66HsXIgtDcS9jaP1kQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 16:49:59.413301"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:49:59 -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 (5.1ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:50: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 (3.8ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 09:50:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"RIspl7PrPnRPqrk3hwD5l/CFxpD/oViiJJPH1BxxbpfPfjJ9ib3WR1bMTBHRgner7utwXuyQ02tIO15klg/8XA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 16:50:30.600155"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:50:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 09:51:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"w10Lm37Z4smDKP/LypU1merMDH9YPlGnUzDJ1LVwuB1IqBBxRI8K+ppOCu2cF7ul9KK6sUsP2m4/mFBkPw4q1g==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 16:51:14.278987"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:51: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 (4.2ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 09:51:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"KDHdsiLN0NiAuUUp6dfRSbL2hQG5bdxP/XEJlN9hG5yjxMZYGJs465nfsA+/VV91rJgzz6pcV4aR2ZAkVR+JVw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 16:51:17.342644"], ["id", 30]] +  (1.6ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:51:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:52:23 -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 33ms (Views: 30.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:53: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 (3.3ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:53:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 34ms (Views: 32.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 09:56:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"7Z9V9xj+7wUt2DdO0EGMXkOKJHVRyVwKS6rPMTzhfPRmak4dIqgHNjS+wmiGwwJiXeSSu0L418MnAlaBtp/uPw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 16:56:05.153912"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:56: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.9ms) +Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 09:56:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"gFSP2z0UQ8TMLDQ46A78NE5o2/YwE3BXvv0U5rPgdA4LoZQxB0Kr99VKwR6+jHIIUAZtOCMi+57SVY1WOZ7mxQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 16:56:06.725202"], ["id", 30]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 09:56: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 (3.7ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-28 09:56:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 24ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-28 09:57:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:11: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +=( if @task.complete == true );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_else, expecting ')' + else + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_end, expecting ')' + end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:37: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:39: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:11: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_else, expecting ')' +app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:37: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:39: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-28 09:59:01 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:11: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +=( if @task.complete == true );@output_buffer.safe_append=' + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_else +e;@output_buffer.append=( else );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_end, expecting ')' + end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:37: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:39: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:11: syntax error, unexpected ')', expecting keyword_then or ';' or '\n' +app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_else +app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:37: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:39: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-28 09:59:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.2ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_else +e;@output_buffer.append=( else );@output_buffer.safe_append= + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_end, expecting ')' + end + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:37: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/show.html.erb:39: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:13: syntax error, unexpected keyword_else +app/views/tasks/show.html.erb:15: syntax error, unexpected keyword_end, expecting ')' +app/views/tasks/show.html.erb:37: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:39: syntax error, unexpected keyword_end, expecting ')' +Started GET "/tasks/30" for 127.0.0.1 at 2017-09-28 10:00:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:00: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 (4.8ms) +Completed 200 OK in 28ms (Views: 25.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-28 10:00:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 27ms (Views: 24.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-28 10:00:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-28 10:01:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 18ms (Views: 14.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:01: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 (4.3ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:01:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"pxomdSHlffyWkZAUFzwTm6EbZ6SAyn5Seg4CKbwNVIZkGH+12dET+2MlK74ARDLVVSb45ry0vLacR/kR4LeAHQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:01:24.214269"], ["id", 33]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:01: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 (3.9ms) +Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33" for 127.0.0.1 at 2017-09-28 10:01:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 23ms (Views: 20.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/33" for 127.0.0.1 at 2017-09-28 10:01:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.9ms) +Completed 200 OK in 19ms (Views: 16.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10: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 (3.9ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:02: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 (4.3ms) +Completed 200 OK in 42ms (Views: 40.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:02:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4XGgXwNoL7JgUiZljoLiDhx091tDBAM+xVJoe8i8GVVqhLu1OT7HgXk000PYAGwyAhpBlVA1iPep+vHLQsKLng==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:02:13.932262"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:02:13 -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 (4.9ms) +Completed 200 OK in 23ms (Views: 19.8ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:02:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UhnmhNvsJVNs5Xd+Q7Uz1ogepjmTstRpZMxbYtdcJBTZ7P1u4brNYHWDglgVN73qlnAQ94CDX6AIZMLSXSK23w==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:02:14.998988"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:02: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 (4.5ms) +Completed 200 OK in 20ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:02: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 (3.4ms) +Completed 200 OK in 32ms (Views: 29.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:03: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 (3.4ms) +Completed 200 OK in 34ms (Views: 31.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:03:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"sCQyrupspPlG20IfVVpGmOMiaN5h8f8SNZF8QiMnYos70SlE0DpMyl+9tzkD2Mik/UzeEHLAdNtZOeXyqVnwQA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:03:17.440729"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:03: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 (4.2ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:03:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"OLIeudQgWpUFbUO7GckbdS/nXhVYF2eodfdW6MIH1D2zRwVT7nayphwLtp1PS5VJMYno20sm7GEZX89YSHlG9g==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:03:18.873112"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:03: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 (5.7ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:03:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 35ms (Views: 33.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:08: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 (3.3ms) +Completed 200 OK in 32ms (Views: 29.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:08:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"p0Gd5u6s7mzW5NFrEzTJCH/A8C788NBz84EzXGfYUDkstIYM1PoGX8+CJE1Ftkc0Ya5G4O/BW7qfKars7abC8g==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:08:57.470651"], ["id", 30]] +  (1.0ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:08:57 -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 (4.6ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:08:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"pvzgZx6uABDo6X4HFaN9G5rGGIOEWPqvYXVO190ZwTstCfuNJPjoI/GPiyFDIfMnhKiuTZdpcWYN3ddnV2dT8A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:08:58.496026"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:08: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 (10.9ms) +Completed 200 OK in 28ms (Views: 25.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:09: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 (3.0ms) +Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (Invalid CSS after " @if div == ": expected expression (e.g. 1px, bold), was ".complete {"): + 4: BusyBee + 5: <%= csrf_meta_tags %> + 6: + 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + 9: + 10: + +app/assets/stylesheets/tasks.scss:40 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__2731799455941020686_70098986008660' +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10: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 (3.4ms) +Completed 200 OK in 37ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:12:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"pzX39sIaosxzsa3iTsIzZZa4k+9JHvefuhnCtDi/QUAswOwc+ExK/2rXWMQYQL1ZiNYlIVovfFbWsVsEssHTiw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:12:58.794319"], ["id", 30]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10: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 (4.1ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:12:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2N4dC0sEbcv2ieTZq0Fndx7OxwFXIbo+Red50vtBTZpTKwbhcVKF+O/vEf/9w+lLAKBxz0QQMfcpT+BicT/fUQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:12:59.491375"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:12:59 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.8ms) +Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:14: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 (3.3ms) +Completed 200 OK in 36ms (Views: 33.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:14:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"mXOnQ6vQTaix4+09nS9GerxuE7Lc5dIGOYipu2v53CoShrypkYalm6iFGBvLrchGogClfM/UWc9VIDAL4YdO4Q==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:14:30.859847"], ["id", 30]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:14: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 (3.4ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:28: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 (3.9ms) +Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (Invalid CSS after " }": expected selector or at-rule, was "}"): + 4: BusyBee + 5: <%= csrf_meta_tags %> + 6: + 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + 9: + 10: + +app/assets/stylesheets/tasks.scss:41 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__2731799455941020686_70099025183580' +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:28: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 (3.6ms) +Completed 200 OK in 37ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:28:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FCFnocHKWdlEpbsrIKeNE/JuxrhcdPqZSrLH3fqkc+af1HxL+5yx6l3DTg12JQMv7ABwdk9FcVAmGl5tcNrhLQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:28:45.977983"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:28: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 (3.9ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:28:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"CEii2t+qshev/qJ+SYPoBlqepj5f98j4XL4/ovUa7ruDvbkw5fxaJLaYV1gfAWY6RPAQ8EzGQzEwFqYSf2R8cA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:28:47.504428"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:28: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 (5.8ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:30: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 (3.9ms) +Completed 200 OK in 28ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:33: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 (3.9ms) +Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:33: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 (3.5ms) +Completed 200 OK in 34ms (Views: 32.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:33:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"h9ZmTPpRterXE7ByCS6dpqJvoHL6WVMTaszj6Tl4T14MI32mwAdd2c51RVRfrBOavAEWvOlo2NoGZHpZswbdlQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:33:57.551858"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:33: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 (3.2ms) +Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (4.3ms) +Completed 200 OK in 37ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:34:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+gYQPY2C+WogVMWfHkKgdKhfLd5EKBkgubomrifm0Xxx8wvXt9QRWTkyMLlIwC5ItjGbEFcZkunVEr8erZhDtw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:34:16.772030"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (3.5ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:34:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"kFRTGeHAb4coXVb90wU6H5EZfPyPmbqzwcpZwivzJioboUjz25aHtDE7o9uFh7Qjj3fKMpyoMXqtYsByoY204Q==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:34:17.912261"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (4.2ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:34:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XmWWUnQAAGLolDQZPRGbLiOM8A41b9TQ+1sD1S36TgjVkI24TlboUfHywT9rkxUSPeJGwCZeXxmX85plp4Tcww==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:34:19.028876"], ["id", 31]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (6.3ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:34:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ENp1p+rLLd/5mt3/lqBUjE0Q0uLf0qFv54E/1R1MQ8GbL25N0J3F7OD8KNnAItqwU35kLMzjKqaLKaZllzLRCg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:34:19.908547"], ["id", 31]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (5.1ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34:26 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 34ms (Views: 32.4ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:34:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"lqruogWGOI804yzMDw/y4ddhdhRsXbnkzJthjQ2a5CMdX/VIP9DQvC2F2epZjXzdyQ/A2n9sMi2gM/g9h+R26A==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:34:28.635014"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (4.1ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:34:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"KxygujkJbv/CQZ4cFNmxdCjSOOP0g2mNYsN1YNwb8Jig6btQA1+GzNsnazpCWz9INryOLeey4kQOa+zQVmViUw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:34:29.432598"], ["id", 30]] +  (0.8ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10: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 (4.2ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:34:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"pYJFbEM/BLN4aVtkmMxU0yitJqCNDKv1U5X/0FCBQQEud16GeWnsgGEPrkLOTtrvNsOQbp49IDw/PWZg2v/Tyg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:34:30.502791"], ["id", 31]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34:30 -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 (4.5ms) +Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:34:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Pp6Fv5s7YioVZNXbsUFpr3tigHdvCBmfj8aMKD/UHKK1a55VoW2KGQwCIP3nw+eTZQw2uXw5klbjbhWYtaqOaQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:34:31.336298"], ["id", 31]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (3.8ms) +Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (4.2ms) +Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:34:48 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FwpgkoxZrOh5VSOrDYcdRfZiWM+TQCKg/DH0/QuF5Nic/3t4tg9E22Az1o1bBZN56AzuAYBxqWmQmW1Ngft2Ew==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:34:48.275011"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:34:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Iyi4OwIkXosAjQgHEfA0hlFmMLtv/gBVz+Owy7Mw0iOo3aPROHK2uBnr/SFHcrq6TwiGdXzPi5yjSyl7OU5A6A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.2ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:34:49.262821"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (3.5ms) +Completed 200 OK in 23ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:34:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"8yUllEHeCn/Xxba+pAesfCx9+OP3653KZyjjTmDw5pR40D5+e4jiTM6jQ5jyhSJAMhNOLeTaFgMLgHr+6o50Xw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:34:50.616338"], ["id", 31]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34: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 (3.7ms) +Completed 200 OK in 22ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:34:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"A8/FjWv2kAjd7XFpq3OVR8mH9NR7jUEBkYDqf3NFEnGIOt5nUaB4O8SLhE/98Rt71+lCGmi8ysj9KHPP+TuAug==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:34:51.578630"], ["id", 31]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:34:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:36: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 (3.8ms) +Completed 200 OK in 41ms (Views: 38.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:36:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Wmr6dbM4sRZzQmUzq4emtOMFauBKLXgACj/C0h5wVnPRn+GfiW5ZJWokkBX9BSiI/WvcLlkc88lml1tilA7EuA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:36:58.346127"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:36: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 (3.3ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:36:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"EP7ww50eIs32tnIdf6d/9lkcKUdD+oWacOHJMKqMGvebC+spp0jK/u/QhzspJfHKR3KfiVDLDlMcSVCAIPKIPA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:36:59.212938"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:36: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 (4.6ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:37:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"wyeiF5u41Qx2TiXaWHNSAeqBtO/CTdu6Ljar4FQuGYxI0rn9oe49P28o0PwO8dw99O8CIdF8UHNCnjJQ3lCLRw==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:37:00.272800"], ["id", 31]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:37: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 (3.4ms) +Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:37:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rPQ2YX95RtDrQBYMBsn8evDjoJFdf27yjuTOVQ3PUIAnAS2LRS+u4/Im4ypQS3JG7o0WX05O5TviTFflh7HCSw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.2ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:37:01.119528"], ["id", 31]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:37: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 (4.3ms) +Completed 200 OK in 20ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:37:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WTZZ0lnyLzRPLik2qqLkmcJK2DuMUVf+r+ioheMo6bvSw0I4Y6THB1ZI3BD8IGql3CRu9Z9g3DfDQDE1aVZ7cA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:37:02.758344"], ["id", 33]] +  (1.4ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:37: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 (3.6ms) +Completed 200 OK in 30ms (Views: 27.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/34?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:37:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"kaxAJjooc6pwWyPHsx2C9mNk3ZGtCz56qocDweJgvTsaWVvMAH6bmWk91uHlnwzKfQprX746tbPGL5pxaB4v8A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:37:06.439439"], ["id", 34]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:37:06 -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 (4.0ms) +Completed 200 OK in 21ms (Views: 18.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:37: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 (3.5ms) +Completed 200 OK in 34ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:37:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"mNXfB1lpvz4pfcJCmOaCG/qn9t3v3eXXAP2uyPsIqZ0TIMTtYz9XDTAbN2TOZAwn5MlAE/zsbh5sVTd4cXY7Vg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:37:24.483010"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:37: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 (3.0ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:37:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ra5ojNYel/tX7V2CfGFgxoxslD6OiAzoefTJkDWOuPMmW3Nm7Eh/yE6LqKQq4+76kgIi8J25hyEVXFAgv/AqOA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:37:25.301860"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:37: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 (3.3ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:42: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 (8.9ms) +Completed 200 OK in 37ms (Views: 35.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:43: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 (3.3ms) +Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:43:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"r1NW7T7JKZ5mZR1Xlj3zxWInQ17TPjWMH/XRAbPfGYokpk0HBJ/BrX8D6HHAv335fEn1kMAPvkVzXUixOaGLQQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:43:21.535689"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:43:21 -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 (5.1ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:43:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"3gYlZITLCl+KOw06Ajaa/aybgUloQwwFcCQ0bKeGUqFV8z6Ovp3ibJNd+BxUtBTBsvU3h3tyh8wcjK3cLfjAag==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:43:22.351672"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:43: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 (4.0ms) +Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:43:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:44: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 (4.2ms) +Completed 200 OK in 34ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:44:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tWra+B5IKJvkNDN5NQJ69FGDEoCVZG9iVZ0ItiQq51k+n8ESJB7AqP1Sxl9jgPTIT+2kToZV5Ks5NZEGrlR1kg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:44:19.490341"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:44: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 (4.3ms) +Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:44:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"DrEdip8WO7kvwXETX9NUI3YOZKwkO9fwiKwX06/UuFGFRAZgpUDTijanhDUJUdofaGDSYjcKXDnkBI5jJaoqmg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:44:20.308337"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:44: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 (4.5ms) +Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:45: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 (3.2ms) +Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:45:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"1ENrV3SG7+KcThDS7/JDEtp/Mi8A7vFbUVJVAp7/mtNftnC9TtAH0YUo5fS5cM0uxBGE4RPfepI9+syyFIEIGA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:45:02.877546"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:45: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 (3.9ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:47: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 (3.7ms) +Completed 200 OK in 36ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:47:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Fr5D5FEgk4ZXv6Wq/JBrz75bJ9qNTX7ZHnP+FFn4y5mdS1gOa3Z7tU7ZUIyqEuXzoDWRFJ589RBy22ek04ZZUg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:47:32.761124"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:47:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:47:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"eflX5UGAnzmY6FBHRQSgZr6z2TvCuRyDtkqOhrVAd0LyDEwPe9Z3CoGOpWEThi5aoN1v9dGIl0ra4hc2Pz7liQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:47:33.805444"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:47:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:47: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 (4.1ms) +Completed 200 OK in 39ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:47:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"qAE6Uqztzlhytt0Fcl9ehukpZ4VRU9xsvIjmNLL49UUj9CG4lrsma2vQKCMk3dC690fRS0JiV6XQIH+EOIZnjg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:47:56.927461"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:47: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.9ms) +Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:47:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UTcmiN8BuXA4r9SKHcFUcCOesLNFqIeNnN9PVgbTJDrawj1i5VdRQyHJIaxLQ9pMPfAGfVaZDETwd9bmjK228Q==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:47:57.734594"], ["id", 30]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:47: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 (3.4ms) +Completed 200 OK in 22ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:49:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"q78jXplcHDTdsoRDUm0Qf2jCtcCCXqcqg5UIMbU8qsMgSji0owr0B8TUcWUE755DdqwDDpFvLOPvPZGBP0I4CA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:49:25.610068"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:49: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 (7.7ms) +Completed 200 OK in 34ms (Views: 31.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:50:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"yyUavGc2PRZqTrIeRSHmYXq1ElJz2kNjv+zQ0Wpt3qVA0AFWXWDVJXMoRzgTo2hdZNuknGDryKrTRElh4BNMbg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:50:18.311793"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:50: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 (4.7ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:50:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"OJEZ7xkdI3kS0qRpz8EfpSjMLYTmecojwnGmZDPj0KezZAIFI0vLSgu0UU+ZQ5GZNqKbSvVIQequ2T/UuZ1CbA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:50:21.255241"], ["id", 30]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:50:21 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 20ms (Views: 18.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:50:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FPS5ww7Pr6DLjnScmlVX2qbQs4RS4zQhVspf7IDTRf+fAaIpNJlHk9LogbrM19nmuL4FSkHSv+g6YsZcCq3XNA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:50:59.783732"], ["id", 31]] +  (1.0ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:50: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 (3.3ms) +Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-28 10:51:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 39ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/31" for 127.0.0.1 at 2017-09-28 10:51:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 42ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:52: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 (3.9ms) +Completed 200 OK in 34ms (Views: 31.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:54:11 -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 (26.4ms) +Completed 200 OK in 129ms (Views: 122.3ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:54:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"sSC856ry5+bpnhVQHxOdN5JRktfea9vi37aK1V7813061acNkKQP1fD44HZJkRMLjD8kGc1aUCuzHhNl1IJFtg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.2ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:54:15.682413"], ["id", 30]] +  (2.6ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 15ms (ActiveRecord: 4.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:54:15 -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.3ms) +Completed 200 OK in 70ms (Views: 62.8ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:54:24 -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 (11.1ms) +Completed 200 OK in 121ms (Views: 114.4ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:55:21 -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.0ms) +Completed 200 OK in 125ms (Views: 117.1ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:56:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GrcXA5duWU3/Bav19FyzDSofyR1sDYDVl3uc0Upi1Q2RQgzprTixfuZjXtOi3j0xNHF/0388Cxz70wVhwBxHxg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.3ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:56:19.289505"], ["id", 30]] +  (2.2ms) commit transaction +  (0.2ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 14ms (ActiveRecord: 4.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:56:19 -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 (28.1ms) +Completed 200 OK in 90ms (Views: 83.7ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:56:51 -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 (10.9ms) +Completed 200 OK in 74ms (Views: 67.0ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 10:56:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"1CA3MkIC7X8xVC2d9aNBgP2cOaYajOtPvaBTuLiKRqdf1SzYeFQFTCgy2LujIc+84/KPaAm9YIbRCMoIMvTUbA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (1.1ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 17:56:55.017277"], ["id", 30]] +  (3.1ms) commit transaction +  (0.2ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 5.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:56:55 -0700 +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.1ms) +Completed 200 OK in 80ms (Views: 72.6ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 10:56:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Smpl6kvqbGjf/gR22Y/ArfkWr72ScvkuApoL7yzI0anBn34AcbyEW8aY8VCPDU6R53gZc4FDcuduMpJfprZDYg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.2ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 17:56:57.898237"], ["id", 30]] +  (3.0ms) commit transaction +  (0.2ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 18ms (ActiveRecord: 5.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:56: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 (13.3ms) +Completed 200 OK in 86ms (Views: 77.3ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:57:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.8ms) +Completed 200 OK in 139ms (Views: 130.6ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 10:57:24 -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 (12.3ms) +Completed 200 OK in 73ms (Views: 66.5ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11: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 (3.3ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (Invalid CSS after ".complete a": expected selector, was "^="task""): + 4: BusyBee + 5: <%= csrf_meta_tags %> + 6: + 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + 9: + 10: + +app/assets/stylesheets/tasks.scss:38 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__2731799455941020686_70099051004440' +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:02: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 (3.8ms) +Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (Invalid CSS after ".complete ": expected selector, was "^="task""): + 4: BusyBee + 5: <%= csrf_meta_tags %> + 6: + 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + 9: + 10: + +app/assets/stylesheets/tasks.scss:38 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__2731799455941020686_70099039531040' +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:03: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 (4.4ms) +Completed 500 Internal Server Error in 29ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (Invalid CSS after ".complete class": expected selector, was "^="task""): + 4: BusyBee + 5: <%= csrf_meta_tags %> + 6: + 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %> + 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %> + 9: + 10: + +app/assets/stylesheets/tasks.scss:38 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__2731799455941020686_70098998379260' +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:03: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 (3.5ms) +Completed 200 OK in 40ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:03:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ghiECjg/L7NCCmoSpAVpSjmG1kSXIRuYVZjn4x0VkskJ7Z/gAmnHgFtsnzTyh+d2J+hgioQQkFE5MH5Tl2sAAg==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:03:52.552883"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:03:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 18ms (Views: 16.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:03:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"JoxeI63jhxT3qHxPhLU2v0nPb4AEZJar+dK95ngjFBGteUXJl7VvJ+7OiWnSN7iDV6HZThdVHWKVeiRW8l2G2g==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:03:53.994179"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:03: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 (4.1ms) +Completed 200 OK in 23ms (Views: 20.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:03:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UdW6IZw1hq6zk7ZPnCaFGoTaird8g0QOMPpiSbEa7rDaIKHLpmNunar1Q2nKpAsmmrQ8eW+yz8dcUvv5O2R8ew==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:03:55.590108"], ["id", 31]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:03: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 (4.3ms) +Completed 200 OK in 20ms (Views: 18.2ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:03:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"lspd8A0dM5P0fTsTnRhGyaJZ3AeVxyE0GksoWH0EnMEdP0YaN0vboO0bzjXLmsj1vDdqyYb2qv1247Ho93oOCg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:03:57.288970"], ["id", 31]] +  (1.2ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11: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 (5.6ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:03:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"9+hqGvVgoPZEewm1shLxtyA5chVTp94K/QLK7mfF89B8HXHwzzZIxV0d/JPkkH+LPlfE20CWVcORqlNe7bthGw==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:03:59.105404"], ["id", 31]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:03:59 -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.7ms) +Completed 200 OK in 26ms (Views: 18.5ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:04:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"6tvEq5u50rqUAfBwWYfgyPvUlUkGuq40+YlvDR8Bx/9hLt9Boe86iY1nBVYPBW705bojhxWLJf2VIfa9lX9VNA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:04:01.700842"], ["id", 31]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:04:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 18ms (Views: 16.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:07:04 -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 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/biciclysta/Documents/ada/ada_class/wk_7/TaskList/app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_ensure, expecting keyword_end + ensure + ^): + +app/views/tasks/index.html.erb:37: syntax error, unexpected keyword_ensure, expecting keyword_end +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:07: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 (4.2ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:07:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LGTvA6UOTUzwWEhexTsBE0B/mqvMIvWOMjRJyKkPdLenkfTpn1ilf+k+vXiTuY8vXhEsZd8TfkdenNB4I3HmfA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:07:45.972906"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:07:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:07: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 (3.5ms) +Completed 200 OK in 27ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:08:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WLRaip1NLnds4D/VCwL9t9iJnzTI0u4G5j/Ls7d/TOLTQUFgpxvGRHWGyvNdgHOLxucp+tvjZc+Kl1IDPQHeKQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:08:03.562445"], ["id", 33]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08: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 (3.4ms) +Completed 200 OK in 22ms (Views: 19.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:08:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xQ2dwZrQuXMPNA/w+0GmqWluet9gKg2eN3tTYn5OX8JO+IYroIZRQBZS+tatwyiVdwDMEXMbhldb08rS9DDNCQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:08:08.030037"], ["id", 31]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 21ms (Views: 19.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08: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 (3.7ms) +Completed 200 OK in 19ms (Views: 17.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:08:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"MCDkzuGf5bU9JJKURIqtU5OmLlVCQeRuDDL2C6CT/0G71f8k28kNhiRCZ7ISCCNvjciYm1Fwb6dgmm+7Ku1tig==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:08:28.450897"], ["id", 30]] +  (1.1ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:08:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"gzdWb9MvRQgHtgtLBzYe33nq4B77I6yw76z38w4RU9MIwk2F6XmtOx7Q/m1RtJDjZ4RW0OgSJ3mDBG5DhG/BGA==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:08:29.986581"], ["id", 30]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08: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 (5.9ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:08:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"qEi3EZ73M1tN8sVAuX5WsSOdvNcvLviNiYvx5sE87OEjvaz7pKHbaFSUMGbv/NiNPfMKGTwfc0TlI2hWS0J+Kg==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:08:31.055788"], ["id", 30]] +  (0.7ms) commit transaction +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08: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 (3.8ms) +Completed 200 OK in 21ms (Views: 19.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:08:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"TTYcGLM/x6HUjyzCmz88S/BFbkI1OMXO5CoWSKdZFDDGwwfyiWkvks3p2eTNvbJ37ivYjCYJTgeIgo/4LSeG+w==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:08:33.351851"], ["id", 30]] +  (1.6ms) commit transaction +  (0.0ms) begin transaction +  (0.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:08:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tN8Z/dzGqpgu2Fw4MFqWzVv/7/CwhTdIxRmL61O8zvo/KgIX5pBCqze+qR5m2BjxRZFZPqO0vIGpsRJb2cJcMQ==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:08:35.290790"], ["id", 30]] +  (1.2ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:08:35 -0700 +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 (4.0ms) +Completed 200 OK in 19ms (Views: 16.9ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:09:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Pntl8gm5WZePPFFchIMwdchzFEjJQzf3NuhRCieXmOa1jn4YM++xpJZapHrSAb5J1h2ihtpyvD5aQMi6rekKLQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:09:50.827940"], ["id", 30]] +  (1.3ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:09:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 26ms (Views: 24.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/30?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:09:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"mtMt7HxZ4COyMFaUSjzYx8QsXjlXydxD+2b/IWf2RIMRJjYGRg8IEKtWo7Icvlb72kLo90T4V4qXzmaR7YjWSA==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:09:52.908835"], ["id", 30]] +  (0.6ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:09: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 (3.9ms) +Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-09-28" for 127.0.0.1 at 2017-09-28 11:09:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"lWmtf1Vl9cXnx3Jf+V2tgeMkOLgIRFEwJsrSqL51MyMenLaVbzMd9v6hh3mv3yO9/UqOdht12vlKYksYNAuh6A==", "refresh"=>"true", "task"=>{"complete"=>"true", "completion_date"=>"2017-09-28"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +Unpermitted parameter: :completion_date +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "t"], ["updated_at", "2017-09-28 18:09:53.875012"], ["id", 31]] +  (1.1ms) commit transaction +  (0.0ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:09:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/34?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:09:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"x7MNzQ+T3VWEV9h9nFuoW6014g/5m/+p3E0tf2Nazx5MRhYnNcU1Zp0xLVvK2SZns1tUweqqdGCw5bTP6SRd1Q==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:09:55.790734"], ["id", 34]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:09:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/31?refresh=true&task%5Bcomplete%5D=false" for 127.0.0.1 at 2017-09-28 11:09:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"uuSKmzEBhB1hzKryW9n6Rcn1sukvGcaIFtG+lLEGl/YxEZFxC1dsLniqX9QNW3R515sEJzwoTUF6eSckO3gFPQ==", "refresh"=>"true", "task"=>{"complete"=>"false"}, "id"=>"31"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", "f"], ["updated_at", "2017-09-28 18:09:56.958381"], ["id", 31]] +  (0.7ms) commit transaction +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for 127.0.0.1 at 2017-09-28 11:09:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 27ms (Views: 25.1ms | ActiveRecord: 0.1ms) + + From 730526d1e1334e2e61c00a3e855867b3efdfdc1e Mon Sep 17 00:00:00 2001 From: Bianca M Fernandez Date: Thu, 5 Oct 2017 10:26:00 -0700 Subject: [PATCH 9/9] change to gem to allow sql in local and postgres to deploy --- Gemfile | 11 ++++++++++- Gemfile.lock | 4 ++++ log/development.log | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 13ab51252..b68774a1f 100644 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,15 @@ end # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 5.1.4' # Use sqlite3 as the database for Active Record -gem 'sqlite3' +# gem 'sqlite3' + +group :development, :test do + gem 'sqlite3' +end + +group :production do + gem 'pg' +end # Use Puma as the app server gem 'puma', '~> 3.7' # Use SCSS for stylesheets @@ -32,6 +40,7 @@ gem 'jbuilder', '~> 2.5' # Use Capistrano for deployment # gem 'capistrano-rails', group: :development +gem 'hirb' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console diff --git a/Gemfile.lock b/Gemfile.lock index dbd6acac2..f7a4bfff2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -66,6 +66,7 @@ GEM ffi (1.9.18) globalid (0.4.0) activesupport (>= 4.2.0) + hirb (0.7.3) i18n (0.8.6) jbuilder (2.7.0) activesupport (>= 4.2.0) @@ -89,6 +90,7 @@ GEM 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) @@ -178,8 +180,10 @@ DEPENDENCIES byebug capybara (~> 2.13) coffee-rails (~> 4.2) + hirb jbuilder (~> 2.5) listen (>= 3.0.5, < 3.2) + pg puma (~> 3.7) rails (~> 5.1.4) sass-rails (~> 5.0) diff --git a/log/development.log b/log/development.log index bea38f56a..62392072d 100644 --- a/log/development.log +++ b/log/development.log @@ -16085,3 +16085,4 @@ Processing by TasksController#index as HTML Completed 200 OK in 27ms (Views: 25.1ms | ActiveRecord: 0.1ms) + Task Load (3.3ms) SELECT "tasks".* FROM "tasks"