From ba07d6423780332d570c0fe67926adec796b00b8 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Tue, 21 Mar 2017 14:00:52 -0700 Subject: [PATCH 01/27] baseline met --- Gemfile | 53 ++++++ Gemfile.lock | 174 ++++++++++++++++++ README.md | 12 +- Rakefile | 6 + app/assets/config/manifest.js | 3 + app/assets/images/.keep | 0 app/assets/javascripts/application.js | 16 ++ app/assets/javascripts/cable.js | 13 ++ app/assets/javascripts/channels/.keep | 0 app/assets/javascripts/tasks.coffee | 3 + app/assets/stylesheets/application.css | 15 ++ app/assets/stylesheets/tasks.scss | 3 + app/channels/application_cable/channel.rb | 4 + app/channels/application_cable/connection.rb | 4 + app/controllers/application_controller.rb | 3 + app/controllers/concerns/.keep | 0 app/controllers/tasks_controller.rb | 12 ++ app/helpers/application_helper.rb | 2 + app/helpers/tasks_helper.rb | 2 + app/jobs/application_job.rb | 2 + app/mailers/application_mailer.rb | 4 + app/models/application_record.rb | 3 + app/models/concerns/.keep | 0 app/models/task.rb | 2 + app/views/layouts/application.html.erb | 14 ++ app/views/layouts/mailer.html.erb | 13 ++ app/views/layouts/mailer.text.erb | 1 + app/views/tasks/index.html.erb | 10 + bin/bundle | 3 + bin/rails | 9 + bin/rake | 9 + bin/setup | 34 ++++ bin/spring | 17 ++ bin/update | 29 +++ config.ru | 5 + config/application.rb | 15 ++ config/boot.rb | 3 + config/cable.yml | 9 + config/database.yml | 25 +++ config/environment.rb | 5 + config/environments/development.rb | 54 ++++++ config/environments/production.rb | 86 +++++++++ config/environments/test.rb | 42 +++++ .../application_controller_renderer.rb | 6 + config/initializers/assets.rb | 11 ++ 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/new_framework_defaults.rb | 24 +++ config/initializers/session_store.rb | 3 + config/initializers/wrap_parameters.rb | 14 ++ config/locales/en.yml | 23 +++ config/puma.rb | 47 +++++ config/routes.rb | 5 + config/secrets.yml | 22 +++ config/spring.rb | 6 + db/development.sqlite3 | Bin 0 -> 28672 bytes db/migrate/20170321205815_create_tasks.rb | 11 ++ db/schema.rb | 23 +++ db/seeds.rb | 7 + lib/assets/.keep | 0 lib/tasks/.keep | 0 log/.keep | 0 log/development.log | 156 ++++++++++++++++ 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 | 5 + test/controllers/.keep | 0 test/controllers/tasks_controller_test.rb | 9 + test/fixtures/.keep | 0 test/fixtures/files/.keep | 0 test/fixtures/tasks.yml | 11 ++ test/helpers/.keep | 0 test/integration/.keep | 0 test/mailers/.keep | 0 test/models/.keep | 0 test/models/task_test.rb | 7 + test/test_helper.rb | 10 + vendor/assets/javascripts/.keep | 0 vendor/assets/stylesheets/.keep | 0 86 files changed, 1349 insertions(+), 6 deletions(-) create mode 100644 Gemfile create mode 100644 Gemfile.lock create mode 100644 Rakefile create mode 100644 app/assets/config/manifest.js create mode 100644 app/assets/images/.keep create mode 100644 app/assets/javascripts/application.js create mode 100644 app/assets/javascripts/cable.js create mode 100644 app/assets/javascripts/channels/.keep create mode 100644 app/assets/javascripts/tasks.coffee create mode 100644 app/assets/stylesheets/application.css create mode 100644 app/assets/stylesheets/tasks.scss create mode 100644 app/channels/application_cable/channel.rb create mode 100644 app/channels/application_cable/connection.rb create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep create mode 100644 app/controllers/tasks_controller.rb create mode 100644 app/helpers/application_helper.rb create mode 100644 app/helpers/tasks_helper.rb create mode 100644 app/jobs/application_job.rb create mode 100644 app/mailers/application_mailer.rb create mode 100644 app/models/application_record.rb create mode 100644 app/models/concerns/.keep create mode 100644 app/models/task.rb 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 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/new_framework_defaults.rb create mode 100644 config/initializers/session_store.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/development.sqlite3 create mode 100644 db/migrate/20170321205815_create_tasks.rb create mode 100644 db/schema.rb create mode 100644 db/seeds.rb create mode 100644 lib/assets/.keep create mode 100644 lib/tasks/.keep create mode 100644 log/.keep create mode 100644 log/development.log create mode 100644 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/controllers/.keep create mode 100644 test/controllers/tasks_controller_test.rb create mode 100644 test/fixtures/.keep create mode 100644 test/fixtures/files/.keep create mode 100644 test/fixtures/tasks.yml 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/models/task_test.rb create mode 100644 test/test_helper.rb create mode 100644 vendor/assets/javascripts/.keep create mode 100644 vendor/assets/stylesheets/.keep diff --git a/Gemfile b/Gemfile new file mode 100644 index 000000000..b5fbf94e0 --- /dev/null +++ b/Gemfile @@ -0,0 +1,53 @@ +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.0.2' +# Use sqlite3 as the database for Active Record +gem 'sqlite3' +# Use Puma as the app server +gem 'puma', '~> 3.0' +# Use SCSS for stylesheets +gem 'sass-rails', '~> 5.0' +# Use Uglifier as compressor for JavaScript assets +gem 'uglifier', '>= 1.3.0' +# Use CoffeeScript for .coffee assets and views +gem 'coffee-rails', '~> 4.2' +# See https://github.com/rails/execjs#readme for more supported runtimes +# gem 'therubyracer', platforms: :ruby + +# Use jquery as the JavaScript library +gem 'jquery-rails' +# 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', platform: :mri +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' + # 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..559a4476d --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,174 @@ +GEM + remote: https://rubygems.org/ + specs: + actioncable (5.0.2) + actionpack (= 5.0.2) + nio4r (>= 1.2, < 3.0) + websocket-driver (~> 0.6.1) + actionmailer (5.0.2) + actionpack (= 5.0.2) + actionview (= 5.0.2) + activejob (= 5.0.2) + mail (~> 2.5, >= 2.5.4) + rails-dom-testing (~> 2.0) + actionpack (5.0.2) + actionview (= 5.0.2) + activesupport (= 5.0.2) + rack (~> 2.0) + rack-test (~> 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.0.2) + activesupport (= 5.0.2) + builder (~> 3.1) + erubis (~> 2.7.0) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activejob (5.0.2) + activesupport (= 5.0.2) + globalid (>= 0.3.6) + activemodel (5.0.2) + activesupport (= 5.0.2) + activerecord (5.0.2) + activemodel (= 5.0.2) + activesupport (= 5.0.2) + arel (~> 7.0) + activesupport (5.0.2) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (~> 0.7) + minitest (~> 5.1) + tzinfo (~> 1.1) + arel (7.1.4) + builder (3.2.3) + byebug (9.0.6) + coffee-rails (4.2.1) + coffee-script (>= 2.2.0) + railties (>= 4.0.0, < 5.2.x) + coffee-script (2.4.1) + coffee-script-source + execjs + coffee-script-source (1.12.2) + concurrent-ruby (1.0.5) + debug_inspector (0.0.2) + erubis (2.7.0) + execjs (2.7.0) + ffi (1.9.18) + globalid (0.3.7) + activesupport (>= 4.1.0) + i18n (0.8.1) + jbuilder (2.6.3) + activesupport (>= 3.0.0, < 5.2) + multi_json (~> 1.2) + jquery-rails (4.2.2) + rails-dom-testing (>= 1, < 3) + railties (>= 4.2.0) + thor (>= 0.14, < 2.0) + listen (3.0.8) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + loofah (2.0.3) + nokogiri (>= 1.5.9) + mail (2.6.4) + 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_portile2 (2.1.0) + minitest (5.10.1) + multi_json (1.12.1) + nio4r (2.0.0) + nokogiri (1.7.1) + mini_portile2 (~> 2.1.0) + puma (3.8.2) + rack (2.0.1) + rack-test (0.6.3) + rack (>= 1.0) + rails (5.0.2) + actioncable (= 5.0.2) + actionmailer (= 5.0.2) + actionpack (= 5.0.2) + actionview (= 5.0.2) + activejob (= 5.0.2) + activemodel (= 5.0.2) + activerecord (= 5.0.2) + activesupport (= 5.0.2) + bundler (>= 1.3.0, < 2.0) + railties (= 5.0.2) + sprockets-rails (>= 2.0.0) + rails-dom-testing (2.0.2) + activesupport (>= 4.2.0, < 6.0) + nokogiri (~> 1.6) + rails-html-sanitizer (1.0.3) + loofah (~> 2.0) + railties (5.0.2) + actionpack (= 5.0.2) + activesupport (= 5.0.2) + method_source + rake (>= 0.8.7) + thor (>= 0.18.1, < 2.0) + rake (12.0.0) + rb-fsevent (0.9.8) + rb-inotify (0.9.8) + ffi (>= 0.5.0) + sass (3.4.23) + 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) + spring (2.0.1) + 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.0) + actionpack (>= 4.0) + activesupport (>= 4.0) + sprockets (>= 3.0.0) + sqlite3 (1.3.13) + thor (0.19.4) + thread_safe (0.3.6) + tilt (2.0.7) + turbolinks (5.0.1) + turbolinks-source (~> 5) + turbolinks-source (5.0.0) + tzinfo (1.2.2) + thread_safe (~> 0.1) + uglifier (3.1.9) + execjs (>= 0.3.0, < 3) + web-console (3.4.0) + actionview (>= 5.0) + activemodel (>= 5.0) + debug_inspector + railties (>= 5.0) + websocket-driver (0.6.5) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.2) + +PLATFORMS + ruby + +DEPENDENCIES + byebug + coffee-rails (~> 4.2) + jbuilder (~> 2.5) + jquery-rails + listen (~> 3.0.5) + puma (~> 3.0) + rails (~> 5.0.2) + sass-rails (~> 5.0) + spring + spring-watcher-listen (~> 2.0.0) + sqlite3 + turbolinks (~> 5) + tzinfo-data + uglifier (>= 1.3.0) + web-console (>= 3.3.0) + +BUNDLED WITH + 1.14.6 diff --git a/README.md b/README.md index 399dc287c..55c66e132 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,12 @@ Practice all aspects of Rails development. ## Baseline In this baseline, you'll create a new Rails application and get started with two of the major components: route, controller and view. -- Fork and clone this repository to your computer -- Create a new Rails application using `rails new .` - - create a `Tasks` controller - - create a route to view the task `index` page - - create a controller action for the task `index` page which contains an array of hard-coded tasks - - create an ERB view to display the tasks from the controller action +**-** Fork and clone this repository to your computer +**-** Create a new Rails application using `rails new .` + **-** create a `Tasks` controller + **-** create a route to view the task `index` page + **-** create a controller action for the task `index` page which contains an array of hard-coded tasks + **-** create an ERB view to display the tasks from the controller action +
+
+

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..a21f82b3b --- /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..061abc587 --- /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..3c9c7c01f --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,5 @@ +# See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/test/controllers/.keep b/test/controllers/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/controllers/tasks_controller_test.rb b/test/controllers/tasks_controller_test.rb new file mode 100644 index 000000000..67683c951 --- /dev/null +++ b/test/controllers/tasks_controller_test.rb @@ -0,0 +1,9 @@ +require 'test_helper' + +class TasksControllerTest < ActionDispatch::IntegrationTest + test "should get index" do + get tasks_index_url + assert_response :success + end + +end diff --git a/test/fixtures/.keep b/test/fixtures/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/files/.keep b/test/fixtures/files/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/test/fixtures/tasks.yml b/test/fixtures/tasks.yml new file mode 100644 index 000000000..e43c408f6 --- /dev/null +++ b/test/fixtures/tasks.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html + +one: + name: MyString + description: MyText + completion_date: MyString + +two: + name: MyString + description: MyText + completion_date: MyString 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/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 diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 000000000..92e39b2d7 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,10 @@ +ENV['RAILS_ENV'] ||= 'test' +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/assets/javascripts/.keep b/vendor/assets/javascripts/.keep new file mode 100644 index 000000000..e69de29bb diff --git a/vendor/assets/stylesheets/.keep b/vendor/assets/stylesheets/.keep new file mode 100644 index 000000000..e69de29bb From 0528f64825f74b55f02eb87509a48789942e93a2 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Tue, 21 Mar 2017 14:52:42 -0700 Subject: [PATCH 02/27] Wave 1 complete --- README.md | 10 ++-- app/controllers/tasks_controller.rb | 9 +-- app/views/tasks/index.html.erb | 2 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 84 ++++++++++++++++++++++++++++ 5 files changed, 91 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 55c66e132..d5a0d5661 100644 --- a/README.md +++ b/README.md @@ -18,17 +18,17 @@ In this baseline, you'll create a new Rails application and get started with two **-** create a controller action for the task `index` page which contains an array of hard-coded tasks **-** create an ERB view to display the tasks from the controller action - + + + + + + + + + + + + + + + + + diff --git a/config/routes.rb b/config/routes.rb index bc5f4ddc0..00a77d688 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,7 +1,10 @@ Rails.application.routes.draw do + get "/tasks/new", to: "tasks#new", as: "new_task" + post "/tasks", to: "tasks#create" get '/tasks', to: 'tasks#index' - - # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html - get '/tasks/:id', to: 'tasks#show' get "/tasks/:id", to: "tasks#show", as: 'task' end + + + +# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 0fbc91e5efccd8946c37cb34d85720344630939e..5835ee9aa467fe310734a8633e57a39a34b87d81 100644 GIT binary patch delta 340 zcmZp8z}WDBae_1>*F+g-My`zsOZ@rSco`V@JNSk8R`QwfPUYP!DDal2zEOycgTb^> zkipT>xhOTUBvm0SGqqeHBsI4n2gpl?h$ZGJxCS{Xl!2s5@)c4ti-EG03MCn-3MGlf z*~JQJMftg4ZgPHJNl|`IPHK@tVsc4lex8wmp}DSsv96Jkf}y3Asfm?|xt@u+5eNWf z?6FHV%CK@UH2N|CT?KQ20*1*7Y57Hy$3z)tMvjdMOZ<6Q_)Hl1JNSk8R`Qu_78Fq7+iVhdT9A"show"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 8ms (ActiveRecord: 0.7ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=show): + +app/controllers/tasks_controller.rb:7:in `show' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.5ms) + +ActionController::RoutingError (No route matches [GET] "/task/show"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [2 times] (2.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (12.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.9ms) +Started GET "/tasks" for ::1 at 2017-03-22 12:37: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 (7.6ms) +Completed 200 OK in 36ms (Views: 30.4ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/show" for ::1 at 2017-03-22 12:37:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"show"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 0], ["LIMIT", 1]] +Completed 404 Not Found in 2ms (ActiveRecord: 0.4ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=show): + +app/controllers/tasks_controller.rb:7:in `show' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.6ms) +Started GET "/tasks/2" for ::1 at 2017-03-22 12:38:06 -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 23ms (Views: 21.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:40:17 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.3ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:40:42 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:40:45 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:40:59 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:41:01 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:42:05 -0700 + +AbstractController::ActionNotFound (The action 'new' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.4ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:42:16 -0700 +Processing by TasksController#new as HTML +Completed 406 Not Acceptable in 48ms (ActiveRecord: 0.0ms) + + + +ActionController::UnknownFormat (TasksController#new 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.0.2) lib/action_controller/metal/implicit_render.rb:56:in `default_render' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap' +actionpack (5.0.2) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:188:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rendering.rb:30:in `process_action' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action' +activesupport (5.0.2) lib/active_support/callbacks.rb:126:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile' +activesupport (5.0.2) lib/active_support/callbacks.rb:455:in `call' +activesupport (5.0.2) lib/active_support/callbacks.rb:101:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/abstract_controller/callbacks.rb:19:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/rescue.rb:20:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `block in instrument' +activesupport (5.0.2) lib/active_support/notifications/instrumenter.rb:21:in `instrument' +activesupport (5.0.2) lib/active_support/notifications.rb:164:in `instrument' +actionpack (5.0.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action' +actionpack (5.0.2) lib/action_controller/metal/params_wrapper.rb:248:in `process_action' +activerecord (5.0.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action' +actionpack (5.0.2) lib/abstract_controller/base.rb:126:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:25:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.0ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:43: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: 23.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:44: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.4ms) +Completed 200 OK in 21ms (Views: 19.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:44:46 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [3 times] (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.7ms) +Started POST "/tasks" for ::1 at 2017-03-22 12:46:30 -0700 + +AbstractController::ActionNotFound (The action 'create' could not be found for TasksController): + +actionpack (5.0.2) lib/abstract_controller/base.rb:121:in `process' +actionview (5.0.2) lib/action_view/rendering.rb:30:in `process' +actionpack (5.0.2) lib/action_controller/metal.rb:190:in `dispatch' +actionpack (5.0.2) lib/action_controller/metal.rb:262:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:50:in `dispatch' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:32:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.9ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 12:47:00 -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.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:47:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"/O799TYocgDK+VCakYwSGm7xY09KfOn1TsdahC8C8b9fxBlfZPIoNaXkF5Yv6FE5vei6ARJ1Tu/ih+P/WLC2+A==", "name"=>"test", "submit"=>"Add Task"} +No template found for TasksController#create, rendering head :no_content +Completed 204 No Content in 50ms (ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:49:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 39ms (Views: 29.5ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12:50: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.8ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:50:56 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"tEU3xuYmNFABGNIpQo1KHf43ldF1AqilvSamkpLO1uAXb9NstPxuZW4FlSX86Qk+LS5Mny0LD78RZh/p5XyRpw==", "name"=>"create a controller action for the task `index` page which contains an array of hard-coded tasks", "submit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (1.0ms) INSERT INTO "tasks" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "create a controller action for the task `index` page which contains an array of hard-coded tasks"], ["created_at", 2017-03-22 19:50:56 UTC], ["updated_at", 2017-03-22 19:50:56 UTC]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:50:56 -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.1ms) +Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:51: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.1ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:52: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 (1.4ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:52: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.2ms) +Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:52:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 22ms (Views: 19.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 12: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.5ms) +Completed 200 OK in 26ms (Views: 23.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 12:54:47 -0700 +Processing by TasksController#create as HTML + Parameters: {"authenticity_token"=>"nCTjky5lCtx4gOuqyrBQUSNV2mFpwLhb1TIHxEvJj9U/Dgc5fL9Q6RedrKZ01BNy8EwDLzHJH0F5cr6/PHvIkg==", "name"=>"Create View Template", "description"=>"create an ERB view to display the tasks from the controller action", "submit"=>"Add Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Create View Template"], ["description", "create an ERB view to display the tasks from the controller action"], ["created_at", 2017-03-22 19:54:47 UTC], ["updated_at", 2017-03-22 19:54:47 UTC]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 20ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 12:54: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.4ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + + Task Load (1.6ms) SELECT "tasks".* FROM "tasks" +Started GET "/tasks" for ::1 at 2017-03-22 13:00: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.9ms) +Completed 200 OK in 30ms (Views: 28.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 13:00: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.5ms) +Completed 200 OK in 25ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-22 13:00:54 -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 21ms (Views: 17.6ms | ActiveRecord: 0.2ms) + + From 4988f7a74b3a0325332409a537053a159558ac13 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Wed, 22 Mar 2017 14:57:22 -0700 Subject: [PATCH 05/27] update the task list to link to a action for each individual task --- app/views/tasks/index.html.erb | 2 +- log/development.log | 103 +++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+), 1 deletion(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index fb5b778f8..906899205 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -4,7 +4,7 @@
    <% @tasks.each do |task| %> -
  • <%= task.id %>. <%= task.name %>: <%= task.description %>
  • +
  • <%= task.id %>. <%= link_to task.name, task_path(task.id) %>: <%= link_to task.description, task_path(task.id) %>
  • <% end %>
diff --git a/log/development.log b/log/development.log index 3c476d74c..70cc1c0d4 100644 --- a/log/development.log +++ b/log/development.log @@ -1433,3 +1433,106 @@ Processing by TasksController#show as HTML Completed 200 OK in 21ms (Views: 17.6ms | ActiveRecord: 0.2ms) +Started GET "/tasks/2" for ::1 at 2017-03-22 13:22:01 -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 35ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-22 14:49:15 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.4ms) 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.4ms) +Completed 200 OK in 202ms (Views: 179.7ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 14:50:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.9ms) +Completed 200 OK in 25ms (Views: 21.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 14:50: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.4ms) +Completed 200 OK in 41ms (Views: 38.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 14:52: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.7ms) +Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-22 14:53:04 -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 31ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 14:53:41 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 43ms (Views: 40.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-22 14:53:45 -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.6ms) +Completed 200 OK in 34ms (Views: 30.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 14:54:28 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 32ms (Views: 29.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-22 14:54: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.9ms) +Completed 200 OK in 40ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 14:56:09 -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 (3.1ms) +Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-22 14:56:10 -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 29ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + From adf675cbfafffd8d565316f6d18d462aa96fff69 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Wed, 22 Mar 2017 18:52:00 -0700 Subject: [PATCH 06/27] add new column to schema table, updated relavent response cycle --- README.md | 14 +- app/controllers/tasks_controller.rb | 16 +- app/models/task.rb | 1 + app/views/tasks/index.html.erb | 5 +- app/views/tasks/new.html.erb | 19 +- app/views/tasks/show.html.erb | 3 + db/development.sqlite3 | Bin 28672 -> 28672 bytes db/migrate/20170322232259_add_title_column.rb | 7 + db/schema.rb | 3 +- log/development.log | 603 ++++++++++++++++++ 10 files changed, 646 insertions(+), 25 deletions(-) create mode 100644 db/migrate/20170322232259_add_title_column.rb diff --git a/README.md b/README.md index f4367dd65..f4fb5f561 100644 --- a/README.md +++ b/README.md @@ -35,14 +35,14 @@ This wave is where we introduce ActiveRecord to create a model. We use the model In this wave, we will expand the actions we support and introduce forms for user interactivity and persistence. 1. add support to `show` each task - - update the task list to link to a `show` action for each individual task - - create a route - - create a controller action - - create an ERB view + **-** update the task list to link to a `show` action for each individual task + **-** create a route + **-** create a controller action + **-** create an ERB view 1. Create a new task: - - update the task list to have a link to add a new task - - this will give the user a new page with a **form** with the appropriate task fields - - the site should take the user back to the task list after the new task is added + **-** update the task list to have a link to add a new task + **-** this will give the user a new page with a **form** with the appropriate task fields + **-** the site should take the user back to the task list after the new task is added - - - + <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3]])) %> - + <%= f.label :name %> + <%= f.text_field :name %> - + <%= f.label :description %> + <%= f.text_area :description, size: "60x12" %> - + <%= f.submit "Create Task"%> - - - +<% end %> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 2289cb551..c8903769a 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,5 +1,8 @@

Show Task

+

+ <%= @task.title %> +

<%= @task.id %>. <%= @task.name %>: <%= @task.description %>

diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 5835ee9aa467fe310734a8633e57a39a34b87d81..e5cb62bc1615aeff621e2c2b16ce1e9d4bce87fb 100644 GIT binary patch delta 888 zcmZ{jJ#W)M7{@Q6ki@a$BuEWVP_Jcxh$PtOxUt@j;%6ovWEjrILE14!5`;-}vk0E7jE5qV#C|a2ejpGdqAk;LC-Ng(mlb1MFA!e*P`B8Ga<^Y(OzjnML3_|o$s!A6h1$h2Nr zW`ylYp9HBcNOgoDk~B%yP^+=gY_&vXsthiY(s7o_fz`M~p@2*FpyQduHhhxM;Skyc zQyK*IXOvW*s&sG=V%H!6i~`H;!jPitKDO)t8lD??Hqp<*AVrgMByf99xlNsNu|sM!nj|oMt3UAzyC%&T-oWYG zWRgj&KT9FVny55n1#QgTnwzz##5b~8a4&v9`DP9UMvpjnc1TERYuv#Bfl~!0!)eB* zUJW|0p&z;KImgV7=2%^yBIy*;ap;XjHl#J1nk+U%0il*~xw4s={3z}Axe`&6P(xLk Rvb3UJDyg4d{41yO{{d?1^+q_c5_C^1ox?f45mM;R*lbck*J${LSz5#T5A2co`V@JNSk8 VR`QwfPUQuf@s?*(?0+FfHUPsPBrE^` diff --git a/db/migrate/20170322232259_add_title_column.rb b/db/migrate/20170322232259_add_title_column.rb new file mode 100644 index 000000000..d7479f722 --- /dev/null +++ b/db/migrate/20170322232259_add_title_column.rb @@ -0,0 +1,7 @@ +class AddTitleColumn < ActiveRecord::Migration[5.0] + def change + # add_column(table_name, column_name, data_type, options)`: Adds a column to an existing table + add_column(:tasks, :title, :integer) #options are good to add a default + + end +end diff --git a/db/schema.rb b/db/schema.rb index 41b582888..9fee21720 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170321205815) do +ActiveRecord::Schema.define(version: 20170322232259) do create_table "tasks", force: :cascade do |t| t.string "name" @@ -18,6 +18,7 @@ t.string "completion_date" t.datetime "created_at", null: false t.datetime "updated_at", null: false + t.integer "title" end end diff --git a/log/development.log b/log/development.log index 70cc1c0d4..b7704f551 100644 --- a/log/development.log +++ b/log/development.log @@ -1536,3 +1536,606 @@ Processing by TasksController#show as HTML Completed 200 OK in 29ms (Views: 25.9ms | ActiveRecord: 0.1ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 15:28:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.5ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

New Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + +app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4445449862150188782_70281272187440' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (70.5ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 15:28:49 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (First argument in form cannot contain nil or be empty): + 1:

New Task

+ 2: + 3: <%= form_for @task do |f| %> + 4: + 5: <%= f.label :name %> + 6: <%= f.text_field :name %> + +app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4445449862150188782_70281257295940' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.2ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 15:29:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (26.8ms) +Completed 200 OK in 62ms (Views: 47.1ms | ActiveRecord: 1.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:40:25 -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 (3.4ms) +Completed 200 OK in 34ms (Views: 30.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:40:28 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 30ms (Views: 26.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 15:41:26 -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 46ms (Views: 41.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 15:41:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"v4IUbFEGkDOYC9L6S+eEvYoCQQcinWvs1JA4fWh5r3RjpOuv1p8qtwQ7CsFf12oCSwzejj1Zti+9KxGYJZ2z+g==", "task"=>{"name"=>"create schema", "description"=>"create the database schema and tables by running the `rails db:migrate` command"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.9ms) INSERT INTO "tasks" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2017-03-22 22:41:32 UTC], ["updated_at", 2017-03-22 22:41:32 UTC]] +  (3.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 4.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:41: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.4ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 15:44:51 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Lrbb9j7dradRsrasUOE8I7s8Qu0fwHtQRa8GcUCI+1KNnD9cbAf3kj6v8aDuhX8AaCWbo0fJ3Erp778KNzq8FQ==", "task"=>{"name"=>"create schema", "description"=>"create the database schema and tables by running the `rails db:migrate` command"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.9ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "create schema"], ["description", "create the database schema and tables by running the `rails db:migrate` command"], ["created_at", 2017-03-22 22:44:51 UTC], ["updated_at", 2017-03-22 22:44:51 UTC]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:44:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:45:49 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 15:48: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 (8.9ms) +Completed 200 OK in 30ms (Views: 23.7ms | ActiveRecord: 1.5ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-22 15:48:47 -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 (11.0ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `title' for #): + 1:

Show Task

+ 2: + 3:

+ 4: <%= @task.title %> + 5:

+ 6:

+ 7: <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + +app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb___729840052086291148_70281280539480' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (12.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (73.8ms) +Started GET "/tasks" for ::1 at 2017-03-22 16:00: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 (6.3ms) +Completed 200 OK in 49ms (Views: 45.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:00:24 -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 32ms (Views: 28.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:00:24 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 30ms (Views: 27.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:02:28 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (101.9ms) +Completed 500 Internal Server Error in 108ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `select_tag' for # +Did you mean? select): + 4: + 5: + 6: + 7: <%= f.select_tag(:title, options_for_select([['Baseline', 1], ['Wave 1', 2], [ 'Wave 2', 3], ['Wave 3', 4]])) %> + 8: + 9: <%= f.label :name %> + 10: <%= f.text_field :name %> + +app/views/tasks/new.html.erb:7:in `block in _app_views_tasks_new_html_erb__4445449862150188782_70281258491740' +app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4445449862150188782_70281258491740' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.3ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 16:02: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.5ms) +Completed 200 OK in 36ms (Views: 34.5ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:04: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 (4.6ms) +Completed 200 OK in 31ms (Views: 28.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:04:59 -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 37ms (Views: 34.8ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 16:05:18 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"vNSQZjsIaulV6yRk9VcolI9T0wz8dKfXtA8cAg58WgJg8m+lvJHQbcnb/F/hZ8YrTl1MheOwehTdtDXnQ5hGjA==", "title"=>"1", "task"=>{"name"=>"Task Model", "description"=>"the `Task` model should include _at least_ a name, a description and a completion date"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Task Model"], ["description", "the `Task` model should include _at least_ a name, a description and a completion date"], ["created_at", 2017-03-22 23:05:18 UTC], ["updated_at", 2017-03-22 23:05:18 UTC]] +  (7.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 14ms (ActiveRecord: 7.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 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 (2.3ms) +Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9" for ::1 at 2017-03-22 16:05:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"9"} + Task Load (0.3ms) 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 (8.2ms) +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `title' for #): + 1:

Show Task

+ 2: + 3:

+ 4: <%= @task.title %> + 5:

+ 6:

+ 7: <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + +app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb___729840052086291148_70281280967580' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.5ms) +Started GET "/tasks" for ::1 at 2017-03-22 16:07:24 -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 (5.6ms) +Completed 200 OK in 33ms (Views: 29.5ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:07:44 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.0ms) +Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/9" for ::1 at 2017-03-22 16:08:05 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (10.3ms) +Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `title' for #): + 1:

Show Task

+ 2: + 3:

+ 4: <%= @task.title %> + 5:

+ 6:

+ 7: <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + +app/views/tasks/show.html.erb:4:in `_app_views_tasks_show_html_erb___729840052086291148_70281281248780' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.4ms) +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddTitleColumn (20170322232259) +  (0.1ms) begin transaction +  (0.7ms) ALTER TABLE "tasks" ADD "title" integer + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170322232259"]] +  (0.7ms) 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.0ms) begin transaction +  (0.0ms) commit transaction + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Started GET "/tasks/9" for ::1 at 2017-03-22 16:27:41 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.6ms) +Completed 200 OK in 41ms (Views: 25.2ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:28:16 -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 42ms (Views: 35.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:28:42 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (9.0ms) +Completed 200 OK in 55ms (Views: 49.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 16:28:53 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"fysjRwViac7fwdB4iFjPUQEUlE6PT/fVzKtSKlyCjSCjDdyEgvvTSkPxCEOcaCHuwBoLx5CLKhalEHvPEWaRrg==", "title"=>"2", "task"=>{"name"=>"new model", "description"=>"create at least 2 `Task` model instances using the `rails console`"}, "commit"=>"Create Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "new model"], ["description", "create at least 2 `Task` model instances using the `rails console`"], ["created_at", 2017-03-22 23:28:53 UTC], ["updated_at", 2017-03-22 23:28:53 UTC]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:28: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 (5.6ms) +Completed 200 OK in 36ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/10" for ::1 at 2017-03-22 16:28:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"10"} + Task Load (0.5ms) 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.8ms) +Completed 200 OK in 34ms (Views: 20.7ms | ActiveRecord: 0.5ms) + + +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +Started GET "/tasks/10" for ::1 at 2017-03-22 16:31:23 -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 30ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:31: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 (1.9ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:31:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:31:41 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (102.6ms) +Completed 500 Internal Server Error in 111ms (ActiveRecord: 0.0ms) + + + +ActionView::Template::Error (undefined method `select_tag' for # +Did you mean? select): + 4: + 5: + 6: + 7: <%= f.select_tag(:title, options_for_select([['Baseline', 1], ['Wave 1', 2], [ 'Wave 2', 3], ['Wave 3', 4]])) %> + 8: + 9: <%= f.label :name %> + 10: <%= f.text_field :name %> + +app/views/tasks/new.html.erb:7:in `block in _app_views_tasks_new_html_erb__4445449862150188782_70281273148700' +app/views/tasks/new.html.erb:3:in `_app_views_tasks_new_html_erb__4445449862150188782_70281273148700' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (67.2ms) +Started GET "/tasks" for ::1 at 2017-03-22 16:33: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 (3.7ms) +Completed 200 OK in 30ms (Views: 28.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16: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 (8.0ms) +Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 16:33:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"VkpZzIFh7I+TfWwFwEiUhuEdw94/AL00CztEopVnGWmKbKYPBvhWCw9NtD7UeHo5IBNcVyDEYPdigG1H2IMF5w==", "task"=>{"title"=>"3", "name"=>"Update task", "description"=>"update the task list to link to a `show` action for each individual task"}, "commit"=>"Create Task"} +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms) + + + +ArgumentError ('3' is not a valid title): + +app/controllers/tasks_controller.rb:16:in `create' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.8ms) +Started POST "/tasks" for ::1 at 2017-03-22 16:35:10 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"TpIqlzZvPZ13eFtLWkUz6p6WfpifvFiHR5eOFSf0IkftuM49ZLVnqBhlHEfkIXDJTY+n1se1/53r1zduUEZlAA==", "task"=>{"title"=>"3", "name"=>"Update task", "description"=>"update the task list to link to a `show` action for each individual task"}, "commit"=>"Create Task"} +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms) + + + +ArgumentError ('3' is not a valid title): + +app/controllers/tasks_controller.rb:16:in `create' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (57.8ms) +Started GET "/tasks/new" for ::1 at 2017-03-22 16:35:21 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.6ms) +Completed 200 OK in 24ms (Views: 20.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-22 16:35:27 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"cuDkN1yKpEiXYL24Ze+QURlU/SRH/iblyBeUoKTCJ5/RygCdDlD+ffh9+rTbi9Nyyk0kah/3gf9kVy3b03Bg2A==", "task"=>{"title"=>"wave2", "name"=>"Update task", "description"=>"update the task list to link to a `show` action for each individual task"}, "commit"=>"Create Task"} +  (0.2ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Update task"], ["description", "update the task list to link to a `show` action for each individual task"], ["created_at", 2017-03-22 23:35:27 UTC], ["updated_at", 2017-03-22 23:35:27 UTC], ["title", 2]] +  (3.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:35:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 24ms (Views: 22.1ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-22 16:35:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-22 16:41:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["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.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:41: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.6ms) +Completed 200 OK in 29ms (Views: 26.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:41: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 (3.3ms) +Completed 200 OK in 22ms (Views: 18.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:41:46 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (1.7ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-22 16:42:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["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: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16: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 (3.4ms) +Completed 200 OK in 42ms (Views: 40.1ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-22 16:42:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 39ms (Views: 35.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16: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.7ms) +Completed 200 OK in 24ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-22 16:52:13 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 21ms (Views: 18.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-22 16:52: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.1ms) +Completed 200 OK in 29ms (Views: 26.3ms | ActiveRecord: 0.0ms) + + From 6953a45a857b67315dec21038a6f142b894ab388 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Thu, 23 Mar 2017 23:20:43 -0700 Subject: [PATCH 07/27] added edit link to show page, created edit route, edit action --- app/controllers/tasks_controller.rb | 4 + app/views/tasks/edit.html.erb | 1 + app/views/tasks/show.html.erb | 5 +- config/routes.rb | 1 + db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 293 ++++++++++++++++++++++++++++ 6 files changed, 303 insertions(+), 1 deletion(-) create mode 100644 app/views/tasks/edit.html.erb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 4f8bef16b..83ae4687f 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -7,6 +7,10 @@ def show @task = Task.find(params[:id]) end + def edit + @task = Task.find(params[:id]) + end + def new @task = Task.new end diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb new file mode 100644 index 000000000..205407ab4 --- /dev/null +++ b/app/views/tasks/edit.html.erb @@ -0,0 +1 @@ +

Edit Task

diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index c8903769a..17f65393b 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,10 +1,13 @@

Show Task

- <%= @task.title %> + <%= @task.title %>

<%= @task.id %>. <%= @task.name %>: <%= @task.description %>

beyonce + + +<%= link_to "edit task", edit_task_path(@task) %> diff --git a/config/routes.rb b/config/routes.rb index 00a77d688..47997c3d4 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -3,6 +3,7 @@ post "/tasks", to: "tasks#create" get '/tasks', to: 'tasks#index' get "/tasks/:id", to: "tasks#show", as: 'task' + get "tasks/:id/edit", to: "tasks#edit", as: "edit_task" end diff --git a/db/development.sqlite3 b/db/development.sqlite3 index e5cb62bc1615aeff621e2c2b16ce1e9d4bce87fb..56d0d1c97b5944ee9a0a41a91c61041390a9fbbe 100644 GIT binary patch delta 137 zcmZp8z}WDBae_3X;6xc`M!}5tT_Y0(12ZcF6DvbgJyR1i SQ!@+PGEAGZqNa*6@&Ev$Ng=`j delta 57 zcmZp8z}WDBae_3Xz(g5mMuCk9OZ=s{xw07eJNSk8R`QwfPUU6bIn1NM-O2TjD{Et; N57*|bsHvii+yLPh5Jdn0 diff --git a/log/development.log b/log/development.log index b7704f551..fe2eb6c9a 100644 --- a/log/development.log +++ b/log/development.log @@ -2139,3 +2139,296 @@ Processing by TasksController#new as HTML Completed 200 OK in 29ms (Views: 26.3ms | ActiveRecord: 0.0ms) +Started GET "/tasks" for ::1 at 2017-03-23 23:00:16 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (15.1ms) +Completed 200 OK in 204ms (Views: 187.4ms | ActiveRecord: 1.8ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-23 23:00:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"11"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (207.0ms) +Completed 500 Internal Server Error in 223ms (ActiveRecord: 0.4ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f9c3b1d75e8> +Did you mean? @task): + 10: beyonce + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(task.id) %> + +app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb__2813119751004922_70154512206480' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (72.0ms) +Started GET "/tasks/11" for ::1 at 2017-03-23 23:00:52 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (203.5ms) +Completed 500 Internal Server Error in 211ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `edit_task_path' for #<#:0x007f9c3fcaad90>): + 10: beyonce + 11: + 12: + 13: <%= link_to "edit task", edit_task_path %> + +app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb__2813119751004922_70154530937780' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.2ms) +Started GET "/tasks/11" for ::1 at 2017-03-23 23:02:14 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (187.5ms) +Completed 500 Internal Server Error in 194ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f9c3dfae638> +Did you mean? @task): + 10: beyonce + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(task.id) %> + +app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb__2813119751004922_70154515742240' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.3ms) +Started GET "/tasks" for ::1 at 2017-03-23 23:03: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.8ms) +Completed 200 OK in 29ms (Views: 25.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-23 23:03: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.9ms) +Completed 200 OK in 39ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-23 23:03:25 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (23.5ms) +Completed 200 OK in 48ms (Views: 44.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-23 23:03:59 -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 39ms (Views: 33.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-23 23:04:15 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"H/aDsAAgn16ze1XTUx3PQp3TrJkeLq+aMdfEaisRXtTD0Hxzh7kl2i9LjehHLSH9XN0zEAHqcllYbO2PZvVCWg==", "task"=>{"title"=>"wave2", "name"=>"create a route", "description"=>""}, "commit"=>"Create Task"} +  (0.2ms) begin transaction + SQL (0.8ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "create a route"], ["description", ""], ["created_at", 2017-03-24 06:04:15 UTC], ["updated_at", 2017-03-24 06:04:15 UTC], ["title", 2]] +  (2.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-23 23:04:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-23 23:04:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (197.0ms) +Completed 500 Internal Server Error in 207ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f9c3a613018> +Did you mean? @task): + 10: beyonce + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(task.id) %> + +app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb__2813119751004922_70154495284220' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.7ms) +Started GET "/tasks/12" for ::1 at 2017-03-23 23:04:51 -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 (189.4ms) +Completed 500 Internal Server Error in 196ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `edit_task_path' for #<#:0x007f9c3f8d9f18>): + 10: beyonce + 11: + 12: + 13: + +app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb__2813119751004922_70154528939020' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.1ms) +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:19 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:20 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:21 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:25 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:26 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:26 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:31 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:32 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:33 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:36 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:37 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:42 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:44 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:48 -0700 +Started PUT "/__web_console/repl_sessions/6c21a28d6ed984074fe5cb9625578484" for ::1 at 2017-03-23 23:05:50 -0700 +Started GET "/tasks" for ::1 at 2017-03-23 23:15: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 (8.4ms) +Completed 200 OK in 37ms (Views: 27.9ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-23 23:15: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.7ms) +Completed 200 OK in 38ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-23 23:15:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (176.0ms) +Completed 500 Internal Server Error in 186ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `book' for #<#:0x007f9c3b1d6198>): + 10: beyonce + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(book.id) %> + +app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb__2813119751004922_70154491704760' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.6ms) +Started GET "/tasks/12" for ::1 at 2017-03-23 23:16:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (194.6ms) +Completed 500 Internal Server Error in 202ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007f9c3f91aa18> +Did you mean? @task): + 10: beyonce + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(task.id) %> + +app/views/tasks/show.html.erb:13:in `_app_views_tasks_show_html_erb__2813119751004922_70154529080480' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.7ms) +Started GET "/tasks/12" for ::1 at 2017-03-23 23:16:55 -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 22ms (Views: 19.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/12/edit" for ::1 at 2017-03-23 23:17:10 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 21ms (Views: 18.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/12/edit" for ::1 at 2017-03-23 23:18:33 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/edit.html.erb within layouts/application (0.3ms) +Completed 200 OK in 28ms (Views: 17.5ms | ActiveRecord: 1.1ms) + + From eae7f5cd97fcaf4bb9cf343d0351a94a3c881eff Mon Sep 17 00:00:00 2001 From: Ashtn Date: Thu, 23 Mar 2017 23:44:54 -0700 Subject: [PATCH 08/27] add edit from, and redirect to show page. Added link to all tasks in show page --- README.md | 10 +- app/controllers/tasks_controller.rb | 12 ++ app/views/tasks/edit.html.erb | 14 ++ app/views/tasks/show.html.erb | 1 + config/routes.rb | 1 + db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 307 ++++++++++++++++++++++++++++ 7 files changed, 340 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f4fb5f561..54c2802f7 100644 --- a/README.md +++ b/README.md @@ -45,19 +45,19 @@ In this wave, we will expand the actions we support and introduce forms for user **-** the site should take the user back to the task list after the new task is added - + + 7: <% @tasks.each do |task| %> + 8:
+ 9: <% if title != task.title %> + +app/views/tasks/index.html.erb:6:in `_app_views_tasks_index_html_erb__4293461899337384044_70154496602780' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.8ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:24: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.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +fe_append='
+ ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' + + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unterminated regexp meets end of file): + +app/views/tasks/index.html.erb:8: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:21: unterminated regexp meets end of file + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.9ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:25:48 -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 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +fe_append='
+ ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' + + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unterminated regexp meets end of file): + +app/views/tasks/index.html.erb:8: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:21: unterminated regexp meets end of file + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.1ms) +Started GET "/tasks" for ::1 at 2017-03-24 00: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.7ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected '<' +buffer.safe_append=' + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected '\n', expecting keyword_do_LAMBDA or tLAMBEG +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '<' +buffer.safe_append=' + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' + + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unterminated regexp meets end of file): + +app/views/tasks/index.html.erb:8: syntax error, unexpected '<' +app/views/tasks/index.html.erb:8: syntax error, unexpected '\n', expecting keyword_do_LAMBDA or tLAMBEG +app/views/tasks/index.html.erb:13: syntax error, unexpected '<' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:21: unterminated regexp meets end of file + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.1ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:26: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.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected '<' +buffer.safe_append=' + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected '\n', expecting keyword_do_LAMBDA or tLAMBEG +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '<' +buffer.safe_append=' + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' + + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unterminated regexp meets end of file): + +app/views/tasks/index.html.erb:8: syntax error, unexpected '<' +app/views/tasks/index.html.erb:8: syntax error, unexpected '\n', expecting keyword_do_LAMBDA or tLAMBEG +app/views/tasks/index.html.erb:13: syntax error, unexpected '<' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:21: unterminated regexp meets end of file + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.8ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:26:11 -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/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected '<' +buffer.safe_append=' + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected '\n', expecting keyword_do_LAMBDA or tLAMBEG +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:13: syntax error, unexpected '<' +buffer.safe_append=' + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' + + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unterminated regexp meets end of file): + +app/views/tasks/index.html.erb:8: syntax error, unexpected '<' +app/views/tasks/index.html.erb:8: syntax error, unexpected '\n', expecting keyword_do_LAMBDA or tLAMBEG +app/views/tasks/index.html.erb:13: syntax error, unexpected '<' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:21: unterminated regexp meets end of file + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.1ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:26:24 -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/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected '<', expecting ')' +
  • '.freeze;@out + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting '(' +output_buffer.safe_append='. '.freeze;@output_buffer.append= + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected ':', expecting ')' +;@output_buffer.safe_append=': '.freeze;@output_buffer.appen + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:22: unterminated string meets end of file +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected end-of-input, expecting ')'): + +app/views/tasks/index.html.erb:15: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting '(' +app/views/tasks/index.html.erb:15: syntax error, unexpected ':', expecting ')' +app/views/tasks/index.html.erb:21: unknown regexp option - l +app/views/tasks/index.html.erb:22: unterminated string meets end of file +app/views/tasks/index.html.erb:22: syntax error, unexpected end-of-input, expecting ')' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (68.8ms) +Started GET "/tasks" for ::1 at 2017-03-24 00: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 (187.9ms) +Completed 500 Internal Server Error in 194ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `f' for #<#:0x007f9c40981cd0>): + 3:

    Task List

    + 4:
      + 5: <% title = String.new %> + 6: + 7: <% @tasks.each do |task| %> + 8:
      + 9: <% if title != task.title %> + +app/views/tasks/index.html.erb:6:in `_app_views_tasks_index_html_erb__4293461899337384044_70154537669480' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.9ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:27: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.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:8: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +fe_append='
      + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' +
    + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unterminated regexp meets end of file): + +app/views/tasks/index.html.erb:8: syntax error, unexpected tLABEL, expecting keyword_do or '{' or '(' +app/views/tasks/index.html.erb:15: unknown regexp option - l +app/views/tasks/index.html.erb:21: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:21: unterminated regexp meets end of file + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.6ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:27: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.9ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected '<', expecting ')' +
  • '.freeze;@output_buffer.app + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting '(' +output_buffer.safe_append='. '.freeze;@output_buffer.append= + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected ':', expecting ')' +;@output_buffer.safe_append=': '.freeze;@output_buffer.appen + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:22: unterminated string meets end of file +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected end-of-input, expecting ')'): + +app/views/tasks/index.html.erb:15: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting '(' +app/views/tasks/index.html.erb:15: syntax error, unexpected ':', expecting ')' +app/views/tasks/index.html.erb:21: unknown regexp option - l +app/views/tasks/index.html.erb:22: unterminated string meets end of file +app/views/tasks/index.html.erb:22: syntax error, unexpected end-of-input, expecting ')' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.8ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:27: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.8ms) +Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected '<', expecting ')' +
  • '.freeze;@output_buffer.app + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting '(' +output_buffer.safe_append='. '.freeze;@output_buffer.append= + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:15: syntax error, unexpected ':', expecting ')' +;@output_buffer.safe_append=': '.freeze;@output_buffer.appen + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:21: unknown regexp option - l +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:22: unterminated string meets end of file +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:22: syntax error, unexpected end-of-input, expecting ')'): + +app/views/tasks/index.html.erb:15: syntax error, unexpected '<', expecting ')' +app/views/tasks/index.html.erb:15: syntax error, unexpected tSTRING_BEG, expecting '(' +app/views/tasks/index.html.erb:15: syntax error, unexpected ':', expecting ')' +app/views/tasks/index.html.erb:21: unknown regexp option - l +app/views/tasks/index.html.erb:22: unterminated string meets end of file +app/views/tasks/index.html.erb:22: syntax error, unexpected end-of-input, expecting ')' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.6ms) +Started GET "/tasks" for ::1 at 2017-03-24 00:27:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 41ms (Views: 38.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 00:27:38 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 39ms (Views: 35.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:28:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 29ms (Views: 27.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:28:57 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 21ms (Views: 19.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:29: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.4ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:29:34 -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 (6.8ms) +Completed 200 OK in 45ms (Views: 41.9ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:29: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.4ms) +Completed 200 OK in 28ms (Views: 25.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:30: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.9ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:30: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.4ms) +Completed 200 OK in 31ms (Views: 29.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:30: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 (2.7ms) +Completed 200 OK in 36ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:30:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:30:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 00:30:42 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (3.3ms) +Completed 200 OK in 43ms (Views: 40.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 00:31: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.2ms) +Completed 200 OK in 31ms (Views: 29.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:31:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 46ms (Views: 43.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 00:32:00 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 40ms (Views: 35.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 00:32:18 -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 30ms (Views: 27.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 10:29:08 -0700 + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.4ms) +Completed 200 OK in 202ms (Views: 187.8ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 10:32:19 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (15.2ms) +Completed 200 OK in 43ms (Views: 37.6ms | ActiveRecord: 0.0ms) + + +Started GET "/books/new" for ::1 at 2017-03-24 10:32:33 -0700 + +ActionController::RoutingError (No route matches [GET] "/books/new"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [7 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (15.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (87.4ms) +Started GET "/books" for ::1 at 2017-03-24 10:32:36 -0700 + +ActionController::RoutingError (No route matches [GET] "/books"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [7 times] (2.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.6ms) +Started GET "/books/new" for ::1 at 2017-03-24 10:32:39 -0700 + +ActionController::RoutingError (No route matches [GET] "/books/new"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [7 times] (3.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.2ms) From 94ba32700f0cd0098916800b2fde0022cf520de4 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 13:04:25 -0700 Subject: [PATCH 10/27] Ask the user to confirm that they definitely want to delete the task --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 54c2802f7..b38ad4b4f 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ In this wave we will extend the interactivity with users, allowing them to edit - Hint: Rendering _partials_ in Rails - From f91c779f7c32de8be9ab01035f1031907864814e Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 14:24:19 -0700 Subject: [PATCH 11/27] added partial form file --- app/views/tasks/_form.html.erb | 0 config/routes.rb | 10 ++++++++++ 2 files changed, 10 insertions(+) create mode 100644 app/views/tasks/_form.html.erb diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb new file mode 100644 index 000000000..e69de29bb diff --git a/config/routes.rb b/config/routes.rb index f99c51325..36e2a3d4f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,11 +1,21 @@ Rails.application.routes.draw do root "tasks#index" + + #create get "/tasks/new", to: "tasks#new", as: "new_task" post "/tasks", to: "tasks#create" + + #read get '/tasks', to: 'tasks#index' get "/tasks/:id", to: "tasks#show", as: 'task' + + #update get "tasks/:id/edit", to: "tasks#edit", as: "edit_task" put "tasks/:id", to: "tasks#update" + patch "tasks/:id", to: "tasks#complete", as: "complete_task" + + #destroy + delete "tasks/:id", to: "task#destroy", as: "delete_task" end From c3e1ac29cd2033a788ecd2702bc8fff5a0108341 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 14:28:52 -0700 Subject: [PATCH 12/27] added form contents to _form file --- app/views/tasks/_form.html.erb | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index e69de29bb..4a2504373 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -0,0 +1,13 @@ +<%= form_for @task, method: form_method do |f| %> + + <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3]])) %> + + <%= f.label :name %> + <%= f.text_field :name %> + + <%= f.label :description %> + <%= f.text_area :description, size: "60x12" %> + + <%= f.submit "Edit Task"%> + +<% end %> From 4bbb5ee0f7a101c36f3a2e9e967be0843dddbcc4 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 14:39:32 -0700 Subject: [PATCH 13/27] rendered partial from in edit view template --- app/views/tasks/_form.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index 4a2504373..4e4875062 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -8,6 +8,6 @@ <%= f.label :description %> <%= f.text_area :description, size: "60x12" %> - <%= f.submit "Edit Task"%> + <%= f.submit from_action %> <% end %> From 93fd0d71e20c68b7640402c20a55e93035ae6591 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 14:53:21 -0700 Subject: [PATCH 14/27] rendered partial form in new.html, fixed submit button on edit.html.erb --- app/views/tasks/_form.html.erb | 2 +- app/views/tasks/edit.html.erb | 14 +------------- app/views/tasks/new.html.erb | 16 +--------------- 3 files changed, 3 insertions(+), 29 deletions(-) diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index 4e4875062..88c118372 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -8,6 +8,6 @@ <%= f.label :description %> <%= f.text_area :description, size: "60x12" %> - <%= f.submit from_action %> + <%= f.submit action_name %> <% end %> diff --git a/app/views/tasks/edit.html.erb b/app/views/tasks/edit.html.erb index 0780d8cb0..58d2f60d8 100644 --- a/app/views/tasks/edit.html.erb +++ b/app/views/tasks/edit.html.erb @@ -1,15 +1,3 @@

    Edit Task

    -<%= form_for @task, method: :put do |f| %> - - <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3]])) %> - - <%= f.label :name %> - <%= f.text_field :name %> - - <%= f.label :description %> - <%= f.text_area :description, size: "60x12" %> - - <%= f.submit "Edit Task"%> - -<% end %> +<%= render partial: "form", locals: { action_name: "edit", form_method: :put } %> diff --git a/app/views/tasks/new.html.erb b/app/views/tasks/new.html.erb index 3921bed4e..04fd4e70d 100644 --- a/app/views/tasks/new.html.erb +++ b/app/views/tasks/new.html.erb @@ -1,17 +1,3 @@

    New Task

    -<%= form_for @task do |f| %> - - - - <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3]])) %> - - <%= f.label :name %> - <%= f.text_field :name %> - - <%= f.label :description %> - <%= f.text_area :description, size: "60x12" %> - - <%= f.submit "Create Task"%> - -<% end %> +<%= render partial: "form", locals: { action_name: "New Task", form_method: :post } %> From f89c8197922b49bbf6c3b5ffae197d612bf90401 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 14:57:23 -0700 Subject: [PATCH 15/27] added data:confrim to delete taks link --- app/views/tasks/show.html.erb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 1fa46c2b5..5424d26f8 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -11,4 +11,6 @@ <%= link_to "edit task", edit_task_path(@task) %> -<%= link_to "All Tasks", tasks_path %> +<%= link_to "Delete Task", delete_task_path(@task), +data: { confirm: "Are you sure you want to delete this task?"}, +method: :delete%> From 00d11a881724b4d1c8e464268a8e6aee1a17488a Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 15:16:35 -0700 Subject: [PATCH 16/27] fixed delete routing bug --- app/controllers/tasks_controller.rb | 32 ++++++++++++++++++----------- config/routes.rb | 2 +- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 4a3c42a0a..ca84d887c 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -1,4 +1,19 @@ class TasksController < ApplicationController + + #create + def create + + task = Task.create task_params + unless task.id == nil + redirect_to tasks_path + end + end + + def new + @task = Task.new + end + + #read def index @tasks = Task.all end @@ -7,6 +22,7 @@ def show @task = Task.find(params[:id]) end + #update def edit @task = Task.find(params[:id]) end @@ -19,27 +35,19 @@ def update task.description = task_params[:description] if task.save - redirect_to task_path(task.id) + redirect_to tasks_path(task.id) end end - def new - @task = Task.new + def destroy + Task.destroy(params[:id]) + redirect_to tasks_path end - def create - - task = Task.create task_params - unless task.id == nil - redirect_to tasks_path - end - - end private def task_params params.require(:task).permit(:name, :description, :title) - end end diff --git a/config/routes.rb b/config/routes.rb index 36e2a3d4f..c2b018995 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -15,7 +15,7 @@ patch "tasks/:id", to: "tasks#complete", as: "complete_task" #destroy - delete "tasks/:id", to: "task#destroy", as: "delete_task" + delete "tasks/:id", to: "tasks#destroy", as: "delete_task" end From b3a0b2aabe488dce3053558a78cd7136c5d87fc5 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 18:55:53 -0700 Subject: [PATCH 17/27] added link to 'all tasks' in application.html --- app/views/layouts/application.html.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index be7a9f069..fe9cee127 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -9,6 +9,7 @@ + <%= link_to "All Tasks", tasks_path, class: "home" %> <%= yield %> From c009d8b7353acdbc7c02c5c5e87ac4d170855935 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Fri, 24 Mar 2017 23:21:43 -0700 Subject: [PATCH 18/27] added complete column to schema --- db/development.sqlite3 | Bin 28672 -> 28672 bytes .../20170325061757_add_complete_column.rb | 5 + db/schema.rb | 3 +- log/development.log | 2376 +++++++++++++++++ 4 files changed, 2383 insertions(+), 1 deletion(-) create mode 100644 db/migrate/20170325061757_add_complete_column.rb diff --git a/db/development.sqlite3 b/db/development.sqlite3 index ca2ba422e57b7c51165330b7815618c76a9bab0e..b1d66eb839ec36e368d5876fa3886a8688fc9b18 100644 GIT binary patch delta 1096 zcmaJ=&rj1}82-A!R@QCZU}Q0b@G&Jq0$snazt(ync#y<+hln`K_;iK2E^P_nG=?V+ zirS+GE?zw1Vo20K0EtI$5W^op)Og0|*WqA^&L&OTKF|9-@AJM-H;D|71pHE7cWH9x!mPlL&5$*)=*Z8-|(c};AB>sK3;c>AorZ<|+W|>E(e=G6X{}NAU zCSk5*Kde=VM{;nili%1hCtcWVo6wN;x z8K<=UfOg35Q`$S;Kg@INA3WSV%um28smNZa?*;25cKCs0AA1_h#NWq5*wVkE>La5J3=N)vl4YZ0C{Kkf^aIQ=oN)BdGU2RcZ&#`DhdwZ0cgDo#+twv0z#W|C>ZwGIt2R+kWg;rq9 zbX~h-(UX^HjaP0V?#;aPZ76bp~!WegVG0uVsDF}nF zFWlfUtwIJ;g@P(cQlYuM@R6BKz6P^{gMpw&TrarK+mm5XfelfmI!KjqcO=~0S&T7t z{xPufORZc4su#KVUo6f~rM|kyp@qn*K>Lt&1$aFy7$bqmS=w4r@W+d05B-;i{3pfi yo!bM{{qR{ngZ;FJNOReWWtTtqe`m9x!v+4ycjPsIBDX;z zw}B$(`8VIz*Hn<<;rPSIIf=iMcRs%`A1B8jE)kyHJks3#Tv^=u8yoL%Z2l9$%)}ke zV8|ffD9GUG$S`?!v?^B|4+n#$F_6nR*(%yiz`)$fz`)AHRL|Jl$jH!~d2@gCNk-0< z3?96^Ks6kb&7#yK%&bf;txSyd3@t1T%uV@LGH@|8`Z6#$Zk`{@#mEWtZ>GL8Q1RrI zvHpUF3Py%jhCo9N^~_C8%`D9)3&oeSlrnKJOzw>rpWGjzG5L6evY?5A0nk)aD+3cf Q6AKFybF)ne|M?kt0KaupGXMYp diff --git a/db/migrate/20170325061757_add_complete_column.rb b/db/migrate/20170325061757_add_complete_column.rb new file mode 100644 index 000000000..ca9420fa0 --- /dev/null +++ b/db/migrate/20170325061757_add_complete_column.rb @@ -0,0 +1,5 @@ +class AddCompleteColumn < ActiveRecord::Migration[5.0] + def change + add_column( :tasks, :complete, :boolean ) + end +end diff --git a/db/schema.rb b/db/schema.rb index 9fee21720..b560c77f5 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20170322232259) do +ActiveRecord::Schema.define(version: 20170325061757) do create_table "tasks", force: :cascade do |t| t.string "name" @@ -19,6 +19,7 @@ t.datetime "created_at", null: false t.datetime "updated_at", null: false t.integer "title" + t.boolean "complete" end end diff --git a/log/development.log b/log/development.log index 3e841d527..de01382e4 100644 --- a/log/development.log +++ b/log/development.log @@ -4258,3 +4258,2379 @@ puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.2ms) +Started GET "/books/new" for ::1 at 2017-03-24 13:47:14 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" + +ActionController::RoutingError (No route matches [GET] "/books/new"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (4.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.1ms) +Started GET "/tasks/new" for ::1 at 2017-03-24 13:47:23 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/new.html.erb within layouts/application (10.5ms) +Started GET "/tasks/new" for ::1 at 2017-03-24 13: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 (1.9ms) +Completed 200 OK in 104ms (Views: 101.5ms | ActiveRecord: 0.0ms) + + +Completed 200 OK in 313ms (Views: 295.3ms | ActiveRecord: 0.7ms) + + +Started GET "/books" for ::1 at 2017-03-24 14:40:43 -0700 + +ActionController::RoutingError (No route matches [GET] "/books"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (68.5ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:40:45 -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 (3.6ms) +Started GET "/tasks" for ::1 at 2017-03-24 14:40:45 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application +Completed 200 OK in 43ms (Views: 39.4ms | ActiveRecord: 0.5ms) + + + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 14:41:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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.9ms) +Completed 200 OK in 37ms (Views: 29.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12/edit" for ::1 at 2017-03-24 14:41:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (199.6ms) + Rendered tasks/edit.html.erb within layouts/application (203.5ms) +Completed 500 Internal Server Error in 221ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined local variable or method `from_action' for #<#:0x007f8bf3cb5f30>): + 8: <%= f.label :description %> + 9: <%= f.text_area :description, size: "60x12" %> + 10: + 11: <%= f.submit from_action %> + 12: + 13: <% end %> + +app/views/tasks/_form.html.erb:11:in `block in _app_views_tasks__form_html_erb___3605533469376007674_70119566243440' +app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3605533469376007674_70119566243440' +app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__2174263919528417808_70119533687940' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (63.8ms) +Started GET "/tasks/12/edit" for ::1 at 2017-03-24 14:50:45 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (231.3ms) + Rendered tasks/edit.html.erb within layouts/application (234.2ms) +Completed 500 Internal Server Error in 242ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined local variable or method `form_action' for #<#:0x007f8bf5938d88> +Did you mean? format): + 8: <%= f.label :description %> + 9: <%= f.text_area :description, size: "60x12" %> + 10: + 11: <%= f.submit form_action %> + 12: + 13: <% end %> + +app/views/tasks/_form.html.erb:11:in `block in _app_views_tasks__form_html_erb___3605533469376007674_70119531482380' +app/views/tasks/_form.html.erb:1:in `_app_views_tasks__form_html_erb___3605533469376007674_70119531482380' +app/views/tasks/edit.html.erb:3:in `_app_views_tasks_edit_html_erb__2174263919528417808_70119548641180' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (71.4ms) +Started GET "/tasks/12/edit" for ::1 at 2017-03-24 14:51:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.9ms) + Rendered tasks/edit.html.erb within layouts/application (4.0ms) +Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/12" for ::1 at 2017-03-24 14:51:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"gW0nbEzRqXjheIVjJvxfncZ1hY8Mcj9mwmWSVOw6ODEiR8PGHgvzTY5lwm+YmBy+FWxcwVR7mHxuJSsvm4h/dg==", "task"=>{"title"=>"baseline", "name"=>"create a route", "description"=>"create a show route"}, "commit"=>"edit", "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 0], ["updated_at", 2017-03-24 21:51:16 UTC], ["id", 12]] +  (3.1ms) commit transaction +Redirected to http://localhost:3000/tasks/12 +Completed 302 Found in 11ms (ActiveRecord: 4.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 14:51:16 -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.7ms) +Completed 200 OK in 25ms (Views: 18.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:51:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 34ms (Views: 28.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:51: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.7ms) +Completed 200 OK in 29ms (Views: 24.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 14:51:57 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/new.html.erb within layouts/application (4.2ms) +Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 14:52:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/CIOb470p7NLbWRQ8y52T9v7M5jDeOUUnb/0/QPvA2tfCOrF3C79hiRwI1xNSjVsCOLq1ptxQg4x/02GdF1ELA==", "task"=>{"title"=>"wave3", "name"=>"test", "description"=>"test"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["description", "test"], ["created_at", 2017-03-24 21:52:06 UTC], ["updated_at", 2017-03-24 21:52:06 UTC], ["title", 3]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 14:52: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.5ms) +Completed 200 OK in 27ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 14:52:09 -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 30ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 14:54:27 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (179.3ms) +Completed 500 Internal Server Error in 187ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `delete_tasks_path' for #<#:0x007f8bf57392a8> +Did you mean? delete_task_path + delete_task_url + edit_task_path): + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(@task) %> + 14: <%= link_to "Delete Task", delete_tasks_path %> + +app/views/tasks/show.html.erb:14:in `_app_views_tasks_show_html_erb__4355166429500698487_70119547588160' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.7ms) +Started GET "/tasks/13" for ::1 at 2017-03-24 14:54:40 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 14:54:43 -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 (1.9ms) +Completed 200 OK in 38ms (Views: 32.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 14:56:07 -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 (1.7ms) +Completed 200 OK in 37ms (Views: 32.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 14:56:08 -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.8ms) +Completed 200 OK in 21ms (Views: 18.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/13" for ::1 at 2017-03-24 14:56:12 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.5ms) +Started DELETE "/tasks/13" for ::1 at 2017-03-24 15:01:09 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.4ms) +Started GET "/tasks/13" for ::1 at 2017-03-24 15:01:27 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 33ms (Views: 19.7ms | ActiveRecord: 0.7ms) + + +Started DELETE "/tasks/13" for ::1 at 2017-03-24 15:01:30 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.0ms) +Started DELETE "/tasks/13" for ::1 at 2017-03-24 15:03:28 -0700 + +NoMethodError (undefined method `destroy' for #): + +config/routes.rb:18:in `block in ' +config/routes.rb:1:in `' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.0ms) +Started GET "/tasks/13" for ::1 at 2017-03-24 15:03:31 -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 (94.2ms) +Completed 500 Internal Server Error in 119ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined method `delete_task_path' for #<#:0x007f8bf5ead070> +Did you mean? edit_task_path + complete_task_path): + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(@task) %> + 14: <%= link_to "Delete Task", delete_task_path(@task), + 15: data: { confirm: "Are you sure you want to delete this task?"}, + 16: method: :delete%> + +app/views/tasks/show.html.erb:14:in `_app_views_tasks_show_html_erb__4355166429500698487_70119551497540' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.3ms) +Started GET "/tasks/12" for ::1 at 2017-03-24 15:03:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) 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 (101.2ms) +Completed 500 Internal Server Error in 108ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `delete_task_path' for #<#:0x007f8bf26d4928> +Did you mean? edit_task_path + complete_task_path): + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(@task) %> + 14: <%= link_to "Delete Task", delete_task_path(@task), + 15: data: { confirm: "Are you sure you want to delete this task?"}, + 16: method: :delete%> + +app/views/tasks/show.html.erb:14:in `_app_views_tasks_show_html_erb__4355166429500698487_70119522284180' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.8ms) +Started GET "/tasks/1" for ::1 at 2017-03-24 15:03:44 -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 (103.9ms) +Completed 500 Internal Server Error in 111ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `delete_task_path' for #<#:0x007f8bf2a01920> +Did you mean? edit_task_path + complete_task_path): + 11: + 12: + 13: <%= link_to "edit task", edit_task_path(@task) %> + 14: <%= link_to "Delete Task", delete_task_path(@task), + 15: data: { confirm: "Are you sure you want to delete this task?"}, + 16: method: :delete%> + +app/views/tasks/show.html.erb:14:in `_app_views_tasks_show_html_erb__4355166429500698487_70119523896180' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.2ms) +Started GET "/tasks/1" for ::1 at 2017-03-24 15:04:53 -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 41ms (Views: 21.3ms | ActiveRecord: 0.9ms) + + +Started DELETE "/tasks/1" for ::1 at 2017-03-24 15:04:56 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.5ms) +Started DELETE "/tasks/1" for ::1 at 2017-03-24 15:06:50 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.6ms) +Started GET "/tasks/2" for ::1 at 2017-03-24 15:06:54 -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.7ms) +Completed 200 OK in 23ms (Views: 19.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-24 15:06:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/edit.html.erb within layouts/application (7.6ms) +Completed 200 OK in 44ms (Views: 37.4ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/2" for ::1 at 2017-03-24 15:07:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"jvDSZi4hQYj3HY3jzjH9naMKcL5pJm7mgqPosg9uM+uGJSNHiYewIphUerudZX1OAzxcnQ7gGenZHDWRxwkNoA==", "task"=>{"title"=>"baseline", "name"=>"Create App", "description"=>"Create a new Rails application using `rails new does this work?"}, "commit"=>"edit", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Create a new Rails application using `rails new does this work?"], ["updated_at", 2017-03-24 22:07:02 UTC], ["id", 2]] +  (4.6ms) commit transaction +Redirected to http://localhost:3000/tasks/2 +Completed 302 Found in 9ms (ActiveRecord: 5.1ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-24 15:07:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.3ms) 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.3ms) +Completed 200 OK in 24ms (Views: 19.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:08:39 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 24ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 15:08:43 -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 (2.1ms) +Completed 200 OK in 29ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/13" for ::1 at 2017-03-24 15:08:49 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.1ms) +Started PUT "/__web_console/repl_sessions/0d36598fef50ea70439ee5368bfc8f70" for ::1 at 2017-03-24 15:09:11 -0700 +Started PUT "/__web_console/repl_sessions/0d36598fef50ea70439ee5368bfc8f70" for ::1 at 2017-03-24 15:09:14 -0700 +Started PUT "/__web_console/repl_sessions/0d36598fef50ea70439ee5368bfc8f70" for ::1 at 2017-03-24 15:09:15 -0700 +Started PUT "/__web_console/repl_sessions/0d36598fef50ea70439ee5368bfc8f70" for ::1 at 2017-03-24 15:09:17 -0700 +Started PUT "/__web_console/repl_sessions/0d36598fef50ea70439ee5368bfc8f70" for ::1 at 2017-03-24 15:09:18 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" +Started GET "/tasks" for ::1 at 2017-03-24 15:09:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 35ms (Views: 32.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 15:09:57 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.9ms) + Rendered tasks/new.html.erb within layouts/application (6.2ms) +Completed 200 OK in 37ms (Views: 32.4ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 15:10:06 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"74lOgNnLHXJx4JU3U4vYNpA/YMiaKXCGNavl3Qe8KIozr7FDXlKn9u3QTQxHuzaJUTH/QYXtrUVcEMw4Slg0BA==", "task"=>{"title"=>"baseline", "name"=>"new Task", "description"=>"new task"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "new Task"], ["description", "new task"], ["created_at", 2017-03-24 22:10:06 UTC], ["updated_at", 2017-03-24 22:10:06 UTC], ["title", 0]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:10: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.8ms) +Completed 200 OK in 25ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/14" for ::1 at 2017-03-24 15:10:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"14"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 28ms (Views: 22.9ms | ActiveRecord: 0.2ms) + + + Task Load (1.4ms) SELECT "tasks".* FROM "tasks" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]] +Started GET "/tasks/14" for ::1 at 2017-03-24 15:11:43 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 29ms (Views: 24.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/14" for ::1 at 2017-03-24 15:11:45 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.9ms) +Started DELETE "/tasks/14" for ::1 at 2017-03-24 15:13:00 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (69.7ms) +Started GET "/tasks/14" for ::1 at 2017-03-24 15:13:03 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 31ms (Views: 19.3ms | ActiveRecord: 0.7ms) + + +Started DELETE "/tasks/14" for ::1 at 2017-03-24 15:13:07 -0700 + +ActionController::RoutingError (uninitialized constant TaskController): + +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `const_get' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:268:in `block in constantize' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `each' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `inject' +activesupport (5.0.2) lib/active_support/inflector/methods.rb:266:in `constantize' +actionpack (5.0.2) lib/action_dispatch/http/request.rb:81:in `controller_class' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:44:in `controller' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:30:in `serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:39:in `block in serve' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `each' +actionpack (5.0.2) lib/action_dispatch/journey/router.rb:26:in `serve' +actionpack (5.0.2) lib/action_dispatch/routing/route_set.rb:725:in `call' +rack (2.0.1) lib/rack/etag.rb:25:in `call' +rack (2.0.1) lib/rack/conditional_get.rb:38:in `call' +rack (2.0.1) lib/rack/head.rb:12:in `call' +rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context' +rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/cookies.rb:613:in `call' +activerecord (5.0.2) lib/active_record/migration.rb:553:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call' +activesupport (5.0.2) lib/active_support/callbacks.rb:97:in `__run_callbacks__' +activesupport (5.0.2) lib/active_support/callbacks.rb:750:in `_run_call_callbacks' +activesupport (5.0.2) lib/active_support/callbacks.rb:90:in `run_callbacks' +actionpack (5.0.2) lib/action_dispatch/middleware/callbacks.rb:36:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/remote_ip.rb:79:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.4ms) +Started GET "/tasks/14" for ::1 at 2017-03-24 15:13: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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 31ms (Views: 18.9ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/14" for ::1 at 2017-03-24 15:13:41 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"NWcMrDPumnc/zNFYF3QyDfh8L72LNsJ8pb+hd6OJACSWTegGYTTAQlDRllSpEHEuK2X289M/ZWYJ/xgM1DtHYw==", "id"=>"14"} + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 14]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks/14 +Completed 302 Found in 12ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks/14" for ::1 at 2017-03-24 15:13:41 -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 3ms (ActiveRecord: 0.1ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=14): + +app/controllers/tasks_controller.rb:22:in `show' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.4ms) +Started GET "/tasks/13" for ::1 at 2017-03-24 15:13:50 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/13" for ::1 at 2017-03-24 15:14:20 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 32ms (Views: 19.0ms | ActiveRecord: 0.7ms) + + +Started DELETE "/tasks/13" for ::1 at 2017-03-24 15:14:24 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"JJuAmvzB7Ubhgs5h/YWUQRb6DUFGcxLKmAgP+SImvi6HsWQwrhu3c46fiW1D4ddixePUDx56tdA0SLaCVZT5aQ==", "id"=>"13"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 13], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 13]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:14:24 -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 27ms (Views: 23.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 15:22:18 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.3ms) + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 38ms (Views: 25.2ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 15:30:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 30ms (Views: 28.1ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-24 15:30:41 -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 (6.4ms) +Completed 200 OK in 39ms (Views: 32.5ms | ActiveRecord: 0.5ms) + + +Started GET "/" for ::1 at 2017-03-24 15: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 (7.2ms) +Completed 200 OK in 32ms (Views: 28.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 18:47:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.6ms) + Rendered tasks/new.html.erb within layouts/application (6.0ms) +Completed 200 OK in 46ms (Views: 29.0ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 18:48:00 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 63ms (Views: 59.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 18:48:31 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"IyIQc2tNqpexIxVy2Un+HGBck0zmsYEAEhLu+rg++2qACPTZOZfwot4+Un5nLb0/s0VKAr64Jhq+UleBz4y8LQ==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>"Checking to see where we are"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (1.1ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Whereami"], ["description", "Checking to see where we are"], ["created_at", 2017-03-25 01:48:31 UTC], ["updated_at", 2017-03-25 01:48:31 UTC], ["title", 0]] +  (7.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 14ms (ActiveRecord: 9.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 18:48: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.0ms) +Completed 200 OK in 34ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/15" for ::1 at 2017-03-24 18:48:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"15"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 34ms (Views: 28.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/15/edit" for ::1 at 2017-03-24 18:48:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"15"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.6ms) + Rendered tasks/edit.html.erb within layouts/application (7.3ms) +Completed 200 OK in 35ms (Views: 29.0ms | ActiveRecord: 0.5ms) + + +Started PUT "/tasks/15" for ::1 at 2017-03-24 18:48:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ij2MNer9MnRg72bwU6uIiPy9Ihpgfx9pz9Akj23jt2e/yg+8atJgYI+Md1HcY00LqFryaB/wybSN77qYS3aRWg==", "task"=>{"title"=>"baseline", "name"=>"Where am i", "description"=>"Checking to see where we are"}, "commit"=>"edit", "id"=>"15"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "name" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "Where am i"], ["updated_at", 2017-03-25 01:48:47 UTC], ["id", 15]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.15 +Completed 302 Found in 11ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.15" for ::1 at 2017-03-24 18:48:47 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 52ms (Views: 34.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/15" for ::1 at 2017-03-24 18:48:51 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 24.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/15" for ::1 at 2017-03-24 18:48:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"BlfpNWEG2383Z5esXzTXPJPaKwnuiBAkiGjiZ7SQi4ilfQ2fM9yBSlh60KDhUJQfQMPyR7aBtz4kKFscwyLMzw==", "id"=>"15"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 15], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.8ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 15]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 18:48: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.4ms) +Completed 200 OK in 32ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 18:51: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.1ms) +Completed 200 OK in 37ms (Views: 34.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 18:52:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.1ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.8ms) +Completed 200 OK in 29ms (Views: 25.9ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 18:52:05 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.9ms) + Rendered tasks/new.html.erb within layouts/application (8.5ms) +Completed 200 OK in 36ms (Views: 30.0ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 18:52: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 (10.1ms) +Completed 200 OK in 38ms (Views: 34.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 18:52:13 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (5.0ms) + Rendered tasks/new.html.erb within layouts/application (9.2ms) +Completed 200 OK in 38ms (Views: 34.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 18:52: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 (10.0ms) +Completed 200 OK in 38ms (Views: 34.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 18:52:16 -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.5ms) +Completed 200 OK in 27ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-24 18:52:19 -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/_form.html.erb (4.1ms) + Rendered tasks/edit.html.erb within layouts/application (9.5ms) +Completed 200 OK in 41ms (Views: 33.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-24 18:52:28 -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]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/edit.html.erb within layouts/application (3.7ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/2" for ::1 at 2017-03-24 18:52:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"rNHsFQsNNLWovGeQeyxfXyclVsH/mGypubZY/GXDd6EP+wi/WddugMehIJzFSBx89DyPj6eRy7MV9uGHEnEw5g==", "task"=>{"title"=>"wave2", "name"=>"Create App", "description"=>"Create a new Rails application using `rails new does this work?"}, "commit"=>"edit", "id"=>"2"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 2], ["updated_at", 2017-03-25 01:52:54 UTC], ["id", 2]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/tasks.2 +Completed 302 Found in 9ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.2" for ::1 at 2017-03-24 18:52:54 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 50ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 19:19:59 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.0ms) + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 46ms (Views: 39.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 19:20:14 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"/5eIr3g/BsmmfArSEVylAF5aCDTtczk/o+Up7lDVhTwjsXds/6a8TTpM0ukFbEu/n1SXvfK35PzKXgALHTGZsg==", "task"=>{"title"=>"baseline", "name"=>"THis is a test ", "description"=>"this is a test "}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "THis is a test "], ["description", "this is a test "], ["created_at", 2017-03-25 02:20:14 UTC], ["updated_at", 2017-03-25 02:20:14 UTC], ["title", 0]] +  (0.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:20: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 (6.1ms) +Completed 200 OK in 27ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/16" for ::1 at 2017-03-24 19:20:17 -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 (1.7ms) +Completed 200 OK in 33ms (Views: 25.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/16" for ::1 at 2017-03-24 19:20:26 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"PUfikRtqnoYaJBlr8ry32tXcTBDr/50rq24mBS+V84CebQY7SbDEs3U5XmdM2PT5BsWVXrP2OjEHLp9+WCe0xw==", "id"=>"16"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 16], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 16]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:20: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 (4.0ms) +Completed 200 OK in 28ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:25:12 -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.8ms) +Completed 200 OK in 48ms (Views: 39.8ms | ActiveRecord: 1.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:25: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 (6.2ms) +Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:25:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 47ms (Views: 43.0ms | ActiveRecord: 0.7ms) + + +Started GET "/" for ::1 at 2017-03-24 19:25:16 -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.4ms) +Completed 200 OK in 30ms (Views: 26.6ms | ActiveRecord: 0.4ms) + + +Started GET "/" for ::1 at 2017-03-24 19:25: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.3ms) +Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 19:25: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 (10.2ms) +Completed 200 OK in 35ms (Views: 27.4ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:25: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 (8.5ms) +Completed 200 OK in 40ms (Views: 36.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 19:25:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) 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 (1.2ms) +Completed 200 OK in 30ms (Views: 24.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 19:25:53 -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.8ms) +Completed 200 OK in 20ms (Views: 17.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 19:29:25 -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.9ms) +Completed 200 OK in 21ms (Views: 18.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:29:28 -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.4ms) +Completed 200 OK in 39ms (Views: 32.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:29:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 29ms (Views: 25.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:29:33 -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 (7.3ms) +Completed 200 OK in 47ms (Views: 43.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:29:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 34ms (Views: 28.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:29: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.2ms) +Completed 200 OK in 42ms (Views: 38.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:32: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 (8.7ms) +Completed 200 OK in 33ms (Views: 25.2ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:32:16 -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 (6.3ms) +Completed 200 OK in 31ms (Views: 27.6ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:32: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 (11.7ms) +Completed 200 OK in 43ms (Views: 39.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:32:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 36ms (Views: 32.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:32:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 31ms (Views: 27.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 19:33:18 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/new.html.erb within layouts/application (4.2ms) +Completed 200 OK in 44ms (Views: 29.4ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 19:33:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"NP2+1fJCJJDz6D+DlipOovql9cdXiP6vY1Te0V8HpiXo20EWddueFG/Y57iCGqAdO6tqTkhMI2wK7/c0EuO6qw==", "task"=>{"title"=>"baseline", "name"=>"will this say create?", "description"=>"let's see"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "will this say create?"], ["description", "let's see"], ["created_at", 2017-03-25 02:33:32 UTC], ["updated_at", 2017-03-25 02:33:32 UTC], ["title", 0]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:33:32 -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.5ms) +Completed 200 OK in 30ms (Views: 26.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/17" for ::1 at 2017-03-24 19:33:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 29ms (Views: 24.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/17/edit" for ::1 at 2017-03-24 19:33:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/edit.html.erb within layouts/application (7.0ms) +Completed 200 OK in 37ms (Views: 30.4ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/17" for ::1 at 2017-03-24 19:33:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"zZ2QG1wNKc4PvNGTPfntOY/FiqP/EPQPhUiTpglGqxwnUDRmRc46tAeVO+BweZGbZH5cXlPI2cnSspfnbQC1mQ==", "task"=>{"title"=>"baseline", "name"=>"will this say create?", "description"=>"let's see... nope"}, "commit"=>"edit", "id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "let's see... nope"], ["updated_at", 2017-03-25 02:33:46 UTC], ["id", 17]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.17 +Completed 302 Found in 8ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks.17" for ::1 at 2017-03-24 19:33:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 50ms (Views: 34.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:33:50 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:33:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 36ms (Views: 32.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 19:34:38 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.3ms) + Rendered tasks/new.html.erb within layouts/application (7.2ms) +Completed 200 OK in 34ms (Views: 30.7ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:34: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 (11.6ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `stringify_keys' for "/tasks":String): + 13: + 14: + 15:
  • <%= task.id %>. <%= link_to task.name, task_path(task.id) %>: <%= link_to task.description, task_path(task.id) %> + 16: <%= link_to task.completion_date, task.completion_date, tasks_path %> + 17:
  • + 18: + 19: <% end %> + +app/views/tasks/index.html.erb:16:in `block in _app_views_tasks_index_html_erb__882005466692305988_70119566175300' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__882005466692305988_70119566175300' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (11.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (71.9ms) +Started GET "/tasks" for ::1 at 2017-03-24 19:36: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 (8.5ms) +Completed 200 OK in 33ms (Views: 25.8ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 19:36: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.8ms) +Completed 200 OK in 27ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-24 19:36:49 -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/_form.html.erb (5.9ms) + Rendered tasks/edit.html.erb within layouts/application (11.4ms) +Completed 200 OK in 38ms (Views: 34.1ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-24 19:36:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ODCt60UrI1gdx4Nij7Sd79rMAqTGCvrFbHcCGmbVkC8L2vZ6KhEMz29k04t9SgoL+4XAhhvpngO1dv1EnNK4Tg==", "task"=>{"title"=>"baseline", "name"=>"Fork & Clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 4ms (ActiveRecord: 0.4ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-24 19:36:52 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 53ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:36:54 -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.9ms) +Completed 200 OK in 32ms (Views: 28.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:36:56 -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 (15.3ms) +Completed 200 OK in 44ms (Views: 40.3ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:36: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 (5.9ms) +Completed 200 OK in 35ms (Views: 31.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:36: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 (8.0ms) +Completed 200 OK in 33ms (Views: 30.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:36: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 (5.0ms) +Completed 200 OK in 30ms (Views: 26.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:37:16 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 37ms (Views: 33.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:37:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.9ms) +Completed 200 OK in 46ms (Views: 41.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:37: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 (8.6ms) +Completed 200 OK in 41ms (Views: 37.1ms | ActiveRecord: 0.6ms) + + +Started GET "/" for ::1 at 2017-03-24 19:37: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 (7.2ms) +Completed 200 OK in 35ms (Views: 30.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-03-24 19: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 (6.2ms) +Completed 200 OK in 30ms (Views: 27.2ms | ActiveRecord: 0.2ms) + + +Started GET "/" for ::1 at 2017-03-24 19:37:24 -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 (8.6ms) +Completed 200 OK in 37ms (Views: 32.2ms | ActiveRecord: 0.8ms) + + +Started GET "/" for ::1 at 2017-03-24 19:38: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.2ms) +Completed 200 OK in 22ms (Views: 19.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/7" for ::1 at 2017-03-24 19:38:31 -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 (1.0ms) +Completed 200 OK in 30ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:38:39 -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.4ms) +Completed 200 OK in 32ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 19:38:41 -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.1ms) +Completed 200 OK in 36ms (Views: 31.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:38: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 (8.6ms) +Completed 200 OK in 40ms (Views: 36.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 19:38:50 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/new.html.erb within layouts/application (7.0ms) +Completed 200 OK in 33ms (Views: 29.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 19:40:11 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"amxC+k8Ztz9jEDcgyIUzMBez1xp6PvSKMe5SceR2cpm2Sr05yIANu/8g7xvctd2P1r1Ik2X6KUlYVXuUqZJuFw==", "task"=>{"title"=>"baseline", "name"=>"currently ", "description"=>"route is displaying as the completion date. Where i think the string \"completion\" will appear the route for that task it's associated with tasks/3"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "currently "], ["description", "route is displaying as the completion date. Where i think the string \"completion\" will appear the route for that task it's associated with tasks/3"], ["created_at", 2017-03-25 02:40:11 UTC], ["updated_at", 2017-03-25 02:40:11 UTC], ["title", 0]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:40:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/18" for ::1 at 2017-03-24 19:40:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 28ms (Views: 25.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/18" for ::1 at 2017-03-24 19:44:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["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.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18/edit" for ::1 at 2017-03-24 19:44:23 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/edit.html.erb within layouts/application (9.1ms) +Completed 200 OK in 37ms (Views: 31.3ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/18" for ::1 at 2017-03-24 19:44:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"W2RI9PdsY2oDlSBuKuojtNfAoRpllvSbj0IBvXZGjfLL1qpp2QRnIzLSwPIIJXFtm6MgpUcQmvVERdtXj+NYIg==", "task"=>{"title"=>"baseline", "name"=>"currently ", "description"=>"route is displaying as the completion date. Where i think the string \"completion\" will appear the route for that task it's associated with tasks/3"}, "commit"=>"edit", "id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.18 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.18" for ::1 at 2017-03-24 19:44:27 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 57ms (Views: 41.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 19:44:32 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.1ms) + Rendered tasks/new.html.erb within layouts/application (8.3ms) +Completed 200 OK in 34ms (Views: 30.9ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 19:44:47 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"FoaAIiOl9MsltSznhf6hZUqYQ9xxkldlRdcmuUvTPbDKoH/hpDxOT7mF9NyRzk/ai5bcVW5WiqYsbA9cBjchPg==", "task"=>{"title"=>"baseline", "name"=>"with this work", "description"=>"lets see"}, "commit"=>"New Task"} +  (0.3ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "with this work"], ["description", "lets see"], ["created_at", 2017-03-25 02:44:47 UTC], ["updated_at", 2017-03-25 02:44:47 UTC], ["title", 0]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 19:44:47 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 25ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + + Task Load (1.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +Started GET "/tasks/19" for ::1 at 2017-03-24 20:24:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 37ms (Views: 22.6ms | ActiveRecord: 1.4ms) + + +Started GET "/tasks/19/edit" for ::1 at 2017-03-24 20:25:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (5.7ms) + Rendered tasks/edit.html.erb within layouts/application (12.3ms) +Completed 200 OK in 67ms (Views: 52.9ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/19" for ::1 at 2017-03-24 20:25:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"5JiAISBMcTcRXvVF4/xsilzOp6z98RHd5U/aecDpMrHY/RJDxzECnfNJXrJFbA1mEJYXKr9Q5JVv/JqTigdMzA==", "task"=>{"title"=>"baseline", "name"=>"with this work", "description"=>"lets see"}, "commit"=>"edit", "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) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "complete"], ["updated_at", 2017-03-25 03:25:01 UTC], ["id", 19]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.19 +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.19" for ::1 at 2017-03-24 20:25:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 56ms (Views: 40.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:26:08 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" +Completed 500 Internal Server Error in 135ms (ActiveRecord: 0.0ms) + + + +NameError (undefined local variable or method `task' for # +Did you mean? @tasks): + +app/controllers/tasks_controller.rb:19:in `index' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (114.7ms) +Started GET "/tasks.19" for ::1 at 2017-03-24 20:26:20 -0700 +Processing by TasksController#index as + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" +Completed 500 Internal Server Error in 128ms (ActiveRecord: 0.0ms) + + + +NameError (undefined local variable or method `task' for # +Did you mean? @tasks): + +app/controllers/tasks_controller.rb:19:in `index' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (200.5ms) +Started GET "/tasks.19" for ::1 at 2017-03-24 20:27:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.4ms) +Completed 200 OK in 51ms (Views: 33.1ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/19" for ::1 at 2017-03-24 20:27:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.7ms) +Completed 200 OK in 25ms (Views: 21.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/19/edit" for ::1 at 2017-03-24 20:27:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.3ms) + Rendered tasks/edit.html.erb within layouts/application (6.0ms) +Completed 200 OK in 36ms (Views: 29.7ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/19" for ::1 at 2017-03-24 20:27:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"p1DSB2LX/+PmUGpHL4ihe2NUUYNQX4w9dbS/NIRoyj+bNUBlhaqMSQRHwbCJGMCXLwzhBRL+eXX/B//ezoa0Qg==", "task"=>{"title"=>"baseline", "name"=>"with this work", "description"=>"lets see"}, "commit"=>"edit", "id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.19 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.19" for ::1 at 2017-03-24 20:27:15 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 50ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/18" for ::1 at 2017-03-24 20:27:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 32ms (Views: 27.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/18/edit" for ::1 at 2017-03-24 20:27:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"18"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/edit.html.erb within layouts/application (7.5ms) +Completed 200 OK in 37ms (Views: 30.7ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/18" for ::1 at 2017-03-24 20:27:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"J3xxNVmPItywQ83+opLElkvY+puy8JKC2l1CfTLQNVG3zpOod+cmlYEELWKAXZZPB7t7JJB2/OwRWpiXy3XggQ==", "task"=>{"title"=>"baseline", "name"=>"currently ", "description"=>"route is displaying as the completion date. Where i think the string \"completion\" will appear the route for that task it's associated with tasks/3"}, "commit"=>"edit", "id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "complete"], ["updated_at", 2017-03-25 03:27:21 UTC], ["id", 18]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks.18 +Completed 302 Found in 9ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks.18" for ::1 at 2017-03-24 20:27:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 52ms (Views: 32.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/17" for ::1 at 2017-03-24 20:27:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/17/edit" for ::1 at 2017-03-24 20:27:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"17"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.8ms) + Rendered tasks/edit.html.erb within layouts/application (9.2ms) +Completed 200 OK in 34ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/17" for ::1 at 2017-03-24 20:27:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JxpcH2KaCg5rnVv+1q2wxc0drUaeZwHSTL7G1IqA3jnN1/hie1kZdGO0sY2bLcxnJqZ7uzK/LBQbRMKV7sbAvA==", "task"=>{"title"=>"baseline", "name"=>"will this say create?", "description"=>"let's see... nope"}, "commit"=>"edit", "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) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "complete"], ["updated_at", 2017-03-25 03:27:44 UTC], ["id", 17]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks.17 +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.17" for ::1 at 2017-03-24 20:27:44 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.5ms) +Completed 200 OK in 53ms (Views: 37.6ms | ActiveRecord: 0.2ms) + + + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" +Started GET "/tasks" for ::1 at 2017-03-24 20:31:51 -0700 +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `each' for nil:NilClass): + +app/controllers/tasks_controller.rb:20:in `index' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (55.7ms) +Started GET "/tasks" for ::1 at 2017-03-24 20:32:03 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" +Completed 400 Bad Request in 10ms (ActiveRecord: 0.8ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:65:in `task_params' +app/controllers/tasks_controller.rb:21:in `block in index' +app/controllers/tasks_controller.rb:20:in `index' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.3ms) +Started GET "/tasks" for ::1 at 2017-03-24 20:33:01 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 32ms (Views: 20.3ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-24 20:35:02 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/new.html.erb within layouts/application (3.9ms) +Completed 200 OK in 40ms (Views: 24.0ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 20:35:24 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"wUa/qB6V+qMl+VlIVVvifKZoQ02U7ycnBAIIG9HqlfUdYEBrmQxAJ7nJgXNBawzDZ2bcxIsr+uRtuSH+nA6Jew==", "task"=>{"title"=>"baseline", "name"=>"complete", "description"=>"will this show the complete button?\r\n"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "complete"], ["description", "will this show the complete button?\r\n"], ["created_at", 2017-03-25 03:35:24 UTC], ["updated_at", 2017-03-25 03:35:24 UTC], ["title", 0]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:35: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.1ms) +Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:40:46 -0700 + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/controllers/tasks_controller.rb:68: syntax error, unexpected end-of-input, expecting keyword_end): + +app/controllers/tasks_controller.rb:68: syntax error, unexpected end-of-input, expecting keyword_end + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (57.5ms) +Started GET "/tasks" for ::1 at 2017-03-24 20:41:00 -0700 +Processing by TasksController#index as HTML + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (2.5ms) +Completed 200 OK in 45ms (Views: 30.9ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:41:36 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (2.3ms) +Completed 200 OK in 22ms (Views: 19.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:41:37 -0700 +Processing by TasksController#index as HTML + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 29ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 20:41:38 -0700 +Processing by TasksController#index as HTML + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 32ms (Views: 27.1ms | ActiveRecord: 0.4ms) + + + ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" +Migrating to AddCompleteColumn (20170325061757) +  (0.1ms) begin transaction +  (0.9ms) ALTER TABLE "tasks" ADD "complete" boolean + SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20170325061757"]] +  (2.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.1ms) commit transaction + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" From 242731efd15c9dade74e159df6be5bac9ea066a5 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Sat, 25 Mar 2017 15:10:44 -0700 Subject: [PATCH 19/27] Added task complete but & fixed bugs --- Gemfile | 6 + Gemfile.lock | 4 + README.md | 8 +- app/assets/stylesheets/application.css | 16 + app/assets/stylesheets/tasks.scss | 9 + app/controllers/tasks_controller.rb | 9 +- app/views/tasks/index.html.erb | 23 +- config/routes.rb | 9 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 4481 ++++++++++++++++++++++++ 10 files changed, 4545 insertions(+), 20 deletions(-) diff --git a/Gemfile b/Gemfile index b5fbf94e0..3fc88b9e6 100644 --- a/Gemfile +++ b/Gemfile @@ -51,3 +51,9 @@ end # Windows does not include zoneinfo files, so bundle the tzinfo-data gem gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] + + + +# custom gems + +gem 'emoji' diff --git a/Gemfile.lock b/Gemfile.lock index 559a4476d..753b046b2 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -50,6 +50,8 @@ GEM coffee-script-source (1.12.2) concurrent-ruby (1.0.5) debug_inspector (0.0.2) + emoji (1.0.7) + json erubis (2.7.0) execjs (2.7.0) ffi (1.9.18) @@ -63,6 +65,7 @@ GEM rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) thor (>= 0.14, < 2.0) + json (2.0.2) listen (3.0.8) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) @@ -156,6 +159,7 @@ PLATFORMS DEPENDENCIES byebug coffee-rails (~> 4.2) + emoji jbuilder (~> 2.5) jquery-rails listen (~> 3.0.5) diff --git a/README.md b/README.md index b38ad4b4f..4b0ce2bd7 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,8 @@ In this wave, we will add the ability to delete tasks. We will also add the abil 1. Delete a task On the task list, add a button or link for each task that will, once clicked: - 1. Ask the user to confirm that they definitely want to delete the task. - 1. Delete the task from the database and redirect the user back to the list of remaining tasks + **1.** Ask the user to confirm that they definitely want to delete the task. + **1.** Delete the task from the database and redirect the user back to the list of remaining tasks 1. Mark a task complete - - Add a button to the list of tasks on the home page that, when clicked, will mark a task complete - - Update the database with the task's completed date + **-** Add a button to the list of tasks on the home page that, when clicked, will mark a task complete + **-** Update the database with the task's completed date diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css index 0ebd7fe82..8533892b1 100644 --- a/app/assets/stylesheets/application.css +++ b/app/assets/stylesheets/application.css @@ -13,3 +13,19 @@ *= require_tree . *= require_self */ + + /**{ + margin: 0; + padding: 0; + border: 1px solid black; + }*/ + + .page_title { + background-color: #fff + } + +.button { + display: inline; + /*width: 2px;*/ + border-radius: 15% +} diff --git a/app/assets/stylesheets/tasks.scss b/app/assets/stylesheets/tasks.scss index b57862ec7..9bcb90abe 100644 --- a/app/assets/stylesheets/tasks.scss +++ b/app/assets/stylesheets/tasks.scss @@ -1,3 +1,12 @@ // 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/ + + +.tasks { + display: inline-block; + background: #f2f2f2; + padding: 20px; + margin: 20px; + // max-width: 40%; +} diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index ca84d887c..38eb0f5d1 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -30,15 +30,12 @@ def edit def update task = Task.find(params[:id]) - task.title = task_params[:title] - task.name = task_params[:name] - task.description = task_params[:description] - - if task.save + if task.update task_params redirect_to tasks_path(task.id) end end + #destroy def destroy Task.destroy(params[:id]) redirect_to tasks_path @@ -48,6 +45,6 @@ def destroy private def task_params - params.require(:task).permit(:name, :description, :title) + params.require(:task).permit(:name, :description, :title, :completion_date, :complete) end end diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index c327f5d11..9f1595dbf 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,21 +1,32 @@

    Tasks#index

    Task List

    -
      <% title = String.new %> +
        <% @tasks.each do |task| %> - <% if title != task.title %> + <% if title != task.title %> <% title = task.title %> <%= title %> - <% end %> + <% end %> -
      1. <%= task.id %>. <%= link_to task.name, task_path(task.id) %>: <%= link_to task.description, task_path(task.id) %>
      2. +
      3. <%= link_to task.name, task_path(task.id) %>: + <% if task.complete %> + <%= task.description %> + <%= link_to "uncomplete", task_path(task.id, + task: { complete: false, completion_date: nil}), + method: :patch %> + <% else %> + <%= task.description %> + <%= link_to "complete", task_path(task.id, + task: {complete: true, completion_date: Time.now}), method: :patch %> + <% end %> +
      4. <% end %> +
      - <%= link_to "Add Task", new_task_path, class: "button" %> -
    +<%= link_to "Add Task", new_task_path, class: "button" %> diff --git a/config/routes.rb b/config/routes.rb index c2b018995..721733df8 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -5,14 +5,15 @@ get "/tasks/new", to: "tasks#new", as: "new_task" post "/tasks", to: "tasks#create" - #read - get '/tasks', to: 'tasks#index' - get "/tasks/:id", to: "tasks#show", as: 'task' #update get "tasks/:id/edit", to: "tasks#edit", as: "edit_task" put "tasks/:id", to: "tasks#update" - patch "tasks/:id", to: "tasks#complete", as: "complete_task" + patch "tasks/:id", to: "tasks#update" + + #read + get '/tasks', to: 'tasks#index' + get "/tasks/:id", to: "tasks#show", as: 'task' #destroy delete "tasks/:id", to: "tasks#destroy", as: "delete_task" diff --git a/db/development.sqlite3 b/db/development.sqlite3 index b1d66eb839ec36e368d5876fa3886a8688fc9b18..b0c6264c4f35fb93ab3f8ab95bad2ab79f5c11a1 100644 GIT binary patch delta 708 zcmY+CKX21O7>CcKYGWsk5u`&~q8OrpD#&qvd_MaaP!t3sQ%jmqQVW~{r46!7wkoyw z0D*dCsl>v-5ISVw6Ckm&cPXC&3C?zj+U0c8`@Xv8`Mq~=q8ywkA6At8kJnnt{$%Uu z@h$Zblon2vh0}bXzb}0)srf%zx%j=fQW$Ha0#qkP-S|8|okZjLc)C8)qdNr+)S}A$ zW>YcZVdv>(W@1Y)CKxvxh$9sL=+sPR5-gZ4FoF){*mf?3k)~*%9u@RvGjGJ7HtxmK zb~XOJQNALZksywsHguT7Ew_Ihv`uBCy$03#4v_s12f>bc(`>yN?D_J(y`+Ll)syFS zU4rC|ColcLH@#i+6+xIc5N!~NMFk}S;|%M3!4*g%BZvv17Cu*z9O($;HfK5HhH<&G zextAm787SlqO84r;f1~#dePM^2&t0>G2}C63u2o((z&mae-Yy5oESSqFhb|cU$R8 z@s~}OY$er4*4b8mZPv1&r695(<1TicFjk)(mG;2ga83nvKjW$Ny4y1z1S#PTwfc{i zRZ!K_jv36w4bYQwm+%W-jjo01o9_8EU21Jo`YlApbwmS}#RS1EDTN OOfHFr-?si5%JM&En5KjP delta 908 zcmaKqO;6N77{{kzpxs@>6}W)J0YZoeW@o0;>5EZAF!820AP|tcJGyn(ZPOMBr)52u zm>5@`qX$Fc7eEe}_!ayLCVU2OCPtlh36LlpCYhP%|GfWpkF?z*?d^od-d$VN*#73; zgSkQxTp2j*Gv4d*(8uAC%ZC1|Fk1RrnkaS)Pm6ePdhpHgr-8%$PIo{aF16cIIoxSkS9maV%PCa|g!ZRw`hSz*>+*O@Ak7x1K;hfoWa9<7`3Lf;CkRg3EOg zE3q;Ltwt_M(l}5K)2GsDxE(Z`(2pYF$GN7L;&GV0{1m2s(tttMn4ctJHBgaj$|tSo zmgIKD{C}4WdxRj$DIxryE-67Kr7m_4;uWYBwly8hHh}6>{#d>#Z>`LXGl;ooF^|~@ zQ|e$`_zjF3rqamK)umFWTr|K;XHva2`Fi!a{IXmg>Kj@C6kP9=)i01A)@F+v>m?oJ zUb=MG?v@#(#IuM;IC8jYn$AIY?VEQ0-q=_cC>2SXos)8Va_V7@Y)Uwz=Ue*g{W_>D zsxZ3ju3Pf^`nbx5Z4a9sp@>mtJGL}7_S&yNPd#o6qXq4&#P`I|u$81oHLSuH$fgwgUya"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 (1.0ms) +Completed 200 OK in 34ms (Views: 27.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-24 23:30: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]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.8ms) + Rendered tasks/edit.html.erb within layouts/application (19.8ms) +Completed 200 OK in 47ms (Views: 43.3ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-24 23:30:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"jRcpQgDnN+W3N3GRR7F9VUv/QLaCz2ugT7BSrAJntdS+/XLTb90YcsWUIXi1T+qxaraClF8sD2aWsa3y+GCdtQ==", "task"=>{"title"=>"baseline", "name"=>"Fork & Clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "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 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-24 23:30:02 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 54ms (Views: 36.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/20" for ::1 at 2017-03-24 23:30:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"20"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 20], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/20" for ::1 at 2017-03-24 23:30:10 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"1MU7wGczeEaW/PgioB2Bd/gRl28CSsM3hhoLqKT2UfZ3799qNekic/nhvy4eecJUKwhOIVpDZC0qWrLT00QWsQ==", "id"=>"20"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 20], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (1.8ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 20]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:30:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 40ms (Views: 36.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/19" for ::1 at 2017-03-24 23:30:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"19"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 30ms (Views: 27.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/19" for ::1 at 2017-03-24 23:30:15 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"psKDphLDRe9/EnVxAZvJgsu2k0uetbsOWNX+QQO6JP4F6GcMQBkf2hAPMn2//4qhGK9KBca8HBT0lUc6dAhjuQ==", "id"=>"19"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 19], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 19]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:30: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 (5.6ms) +Completed 200 OK in 30ms (Views: 24.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/18" for ::1 at 2017-03-24 23:30:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"18"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 26.4ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/18" for ::1 at 2017-03-24 23:30:22 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"tEiNbAjh5OSyp1sYfb2esAjpgEgJS/3r9+HwfSYWCQEXYmnGWju+0d26HBTD2d2T2/BZBlFCWvFboUkGUaRORg==", "id"=>"18"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 18], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 18]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:30: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 32ms (Views: 22.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:30: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 (4.4ms) +Completed 200 OK in 28ms (Views: 25.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:30:28 -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 (8.1ms) +Completed 200 OK in 39ms (Views: 34.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:30: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 (4.9ms) +Completed 200 OK in 38ms (Views: 34.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/17" for ::1 at 2017-03-24 23:30:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"17"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 29ms (Views: 26.2ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/17" for ::1 at 2017-03-24 23:30:33 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"7qgfLS2ZFs6tVMhQy6TV+e+Je3Luey5MtNsB/ySrhLNNgvuHf0NM+8JJj1x1wJbaPJCiPLZyiVYYm7iEUxnD9A==", "id"=>"17"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 17], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.6ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 17]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:30: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 24ms (Views: 21.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:31: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.2ms) +Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:32:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 23:33:43 -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.2ms) +Completed 200 OK in 32ms (Views: 27.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:33: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 (3.8ms) +Completed 200 OK in 42ms (Views: 39.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:35: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 (8.2ms) +Completed 200 OK in 33ms (Views: 29.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:42: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.9ms) +Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23: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 (3.0ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 23:43: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 (1.5ms) +Completed 200 OK in 30ms (Views: 25.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:43: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 (5.2ms) +Completed 200 OK in 42ms (Views: 39.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-24 23:43:09 -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 (1.7ms) +Completed 200 OK in 30ms (Views: 26.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:43:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.0ms) +Completed 200 OK in 48ms (Views: 43.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-24 23:43:14 -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 (1.7ms) +Completed 200 OK in 34ms (Views: 31.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:43: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 (5.6ms) +Completed 200 OK in 44ms (Views: 38.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-24 23:43:17 -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.2ms) +Completed 200 OK in 30ms (Views: 26.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:43:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 60ms (Views: 55.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/4" for ::1 at 2017-03-24 23:43:20 -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 (2.5ms) +Completed 200 OK in 29ms (Views: 26.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:43:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.7ms) +Completed 200 OK in 47ms (Views: 44.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:54: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.9ms) +Completed 200 OK in 48ms (Views: 45.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:56: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 (4.0ms) +Completed 200 OK in 29ms (Views: 26.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-24 23:56:25 -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 (2.2ms) +Completed 200 OK in 33ms (Views: 29.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-24 23:57:22 -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/_form.html.erb (3.0ms) + Rendered tasks/edit.html.erb within layouts/application (6.3ms) +Completed 200 OK in 37ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-24 23:57:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3uGMadEoRTzOZ9+hbzhbjuEEq0WYS2Lhjp/lEwP/MOvtC9f4vhJqq7zEj0idxsxqwE1pZ0WoBidXnhpN+fgYig==", "task"=>{"title"=>"baseline", "name"=>"Fork & Clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-24 23:57:26 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.6ms) +Completed 200 OK in 52ms (Views: 35.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:57:38 -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.5ms) +Completed 200 OK in 31ms (Views: 27.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:57: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 (4.6ms) +Completed 200 OK in 29ms (Views: 25.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:57:43 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (12.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (16.6ms) +Completed 200 OK in 50ms (Views: 34.3ms | ActiveRecord: 12.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:57:44 -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.9ms) +Completed 200 OK in 43ms (Views: 39.9ms | ActiveRecord: 0.5ms) + + + Task Load (1.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 14], ["LIMIT", 1]] +Started GET "/tasks/new" for ::1 at 2017-03-24 23:58:53 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.1ms) + Rendered tasks/new.html.erb within layouts/application (8.6ms) +Completed 200 OK in 34ms (Views: 29.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-24 23:59:05 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SRySlFdJJUVT3oR5Kt3lJidz6vA4l/L3COp1f1grQM2VOm1X0NCfwc/uXEI+7QuZ5n11eSdTLzRhUVyaFc9cQw==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>""}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (1.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Whereami"], ["description", ""], ["created_at", 2017-03-25 06:59:05 UTC], ["updated_at", 2017-03-25 06:59:05 UTC], ["title", 0]] +  (6.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 7.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-24 23:59:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 30ms (Views: 24.7ms | ActiveRecord: 0.3ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 21], ["LIMIT", 1]] +Started GET "/tasks/21" for ::1 at 2017-03-25 00:02:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"21"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 21], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 44ms (Views: 24.7ms | ActiveRecord: 0.8ms) + + +Started DELETE "/tasks/21" for ::1 at 2017-03-25 00:02:24 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"eLlfpLyj0b02Ls2lxiq2KXYN/xFXubNLLoycvchog2/bk7sO7nmLiFkziql4TvUKpRQmXw+wFFGCzCXGv9rEKA==", "id"=>"21"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 21], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 21]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:02:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 53ms (Views: 48.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 00:02:26 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/new.html.erb within layouts/application (7.0ms) +Completed 200 OK in 33ms (Views: 29.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 00:02:32 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"E/uZ+BPOuCaMJuI0i9OyK+D6PnLc3Weu8s83tIXaOTHP3WY7lFcCohAWOg+f41yUIfSh+8MZum2bdB5RyD4lvw==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>""}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Whereami"], ["description", ""], ["created_at", 2017-03-25 07:02:32 UTC], ["updated_at", 2017-03-25 07:02:32 UTC], ["title", 0]] +  (4.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 4.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:02: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.9ms) +Completed 200 OK in 31ms (Views: 26.8ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 22], ["LIMIT", 1]] +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +Started GET "/tasks/2" for ::1 at 2017-03-25 00:08:17 -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 (1.4ms) +Completed 200 OK in 32ms (Views: 27.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:08:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 45ms (Views: 40.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:08: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 (5.0ms) +Completed 200 OK in 49ms (Views: 42.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:08: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 (6.2ms) +Completed 200 OK in 54ms (Views: 49.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:08: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 (6.4ms) +Completed 200 OK in 42ms (Views: 38.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:08:28 -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.8ms) +Completed 200 OK in 44ms (Views: 40.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:08:28 -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 (8.3ms) +Completed 200 OK in 38ms (Views: 34.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-25 00:15:27 -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.9ms) +Completed 200 OK in 38ms (Views: 22.8ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:15: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 (5.6ms) +Completed 200 OK in 58ms (Views: 51.5ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 00:15:47 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.8ms) + Rendered tasks/new.html.erb within layouts/application (7.5ms) +Completed 200 OK in 34ms (Views: 29.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 00:15:53 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+WnM0S6HhTBgQZ3pB56D7jeIAZaUXwMvz3HOMif46/clTzMSqR4/tPxxRdITrm1R9oaeH4ub3uymyufXahz3eQ==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>""}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Whereami"], ["description", ""], ["created_at", 2017-03-25 07:15:53 UTC], ["updated_at", 2017-03-25 07:15:53 UTC], ["title", 0]] +  (11.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 12.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00: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 (3.5ms) +Completed 200 OK in 25ms (Views: 22.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/23" for ::1 at 2017-03-25 00:15:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"23"} + Task Load (0.2ms) 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.6ms) +Completed 200 OK in 35ms (Views: 28.3ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]] +Started DELETE "/tasks/23" for ::1 at 2017-03-25 00:19:09 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ns8eVS+x+lr3ROi7ILJN5fbhltAQMYmmHmGjj4aJmJU95fr/fWugb5hZr7ee1g7GJfhPnkg4LryyIRr08Tvf0g==", "id"=>"23"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 23]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 21ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:19: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.9ms) +Completed 200 OK in 31ms (Views: 26.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:19:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 41ms (Views: 36.6ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:19:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) 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 (1.2ms) +Completed 200 OK in 34ms (Views: 27.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:19:17 -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.5ms) +Completed 200 OK in 46ms (Views: 40.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/9" for ::1 at 2017-03-25 00:19:17 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 30ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:19: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 (6.9ms) +Completed 200 OK in 50ms (Views: 43.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/22" for ::1 at 2017-03-25 00:19:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"22"} + Task Load (0.2ms) 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.7ms) +Completed 200 OK in 35ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/22" for ::1 at 2017-03-25 00:19:24 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"HU388J2bKpqPEA/wj9CSIx1gOzxZ9tsK4h8xuLq2FFi+Zxhaz0Fwr+ANSPwxtNEAznnicgH/fBBOX4jDzQRTHw==", "id"=>"22"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 22], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 22]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:19:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 46ms (Views: 40.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 00:19:26 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.3ms) + Rendered tasks/new.html.erb within layouts/application (9.8ms) +Completed 200 OK in 39ms (Views: 36.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 00:19:30 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"D2UUg+nDNwP/Dk9hzyMHbTPmec1uTUxlidDLkDgBHODTQ+tAblqNh2M+l1rbE+nS8ujmRHGJkabga+J1deUAbg==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>""}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Whereami"], ["description", ""], ["created_at", 2017-03-25 07:19:30 UTC], ["updated_at", 2017-03-25 07:19:30 UTC], ["title", 0]] +  (3.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 4.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:19: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.5ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/24" for ::1 at 2017-03-25 00:19:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.2ms) 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.6ms) +Completed 200 OK in 31ms (Views: 27.7ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] +Started GET "/tasks" for ::1 at 2017-03-25 00:28:03 -0700 + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/controllers/tasks_controller.rb:66: syntax error, unexpected '=', expecting ')' +on, :title, :completion_date = false, :complete) + ^ +/Users/ashtn/ADA/Projects/TaskList/app/controllers/tasks_controller.rb:66: Can't assign to false +tle, :completion_date = false, :complete) + ^ +/Users/ashtn/ADA/Projects/TaskList/app/controllers/tasks_controller.rb:66: syntax error, unexpected ')', expecting &. or :: or '[' or '.' +etion_date = false, :complete) + ^): + +app/controllers/tasks_controller.rb:66: syntax error, unexpected '=', expecting ')' +app/controllers/tasks_controller.rb:66: Can't assign to false +app/controllers/tasks_controller.rb:66: syntax error, unexpected ')', expecting &. or :: or '[' or '.' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.4ms) +Started GET "/tasks" for ::1 at 2017-03-25 00:29:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 41ms (Views: 32.5ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/24" for ::1 at 2017-03-25 00:29:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.3ms) 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 (2.1ms) +Completed 200 OK in 40ms (Views: 33.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:29: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 (5.7ms) +Completed 200 OK in 42ms (Views: 39.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:29: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 (7.5ms) +Completed 200 OK in 47ms (Views: 43.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:29:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.3ms) +Completed 200 OK in 49ms (Views: 44.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:29:49 -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 (6.7ms) +Completed 200 OK in 48ms (Views: 44.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:29:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.8ms) +Completed 200 OK in 48ms (Views: 44.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:29:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 54ms (Views: 49.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:29: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 (6.5ms) +Completed 200 OK in 43ms (Views: 40.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:31: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.5ms) +Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (No route matches {:action=>"complete", :controller=>"tasks"} missing required keys: [:id]): + 13: + 14: + 15:
  • <%= link_to task.name, task_path(task.id) %>: <%= link_to task.description, task_path(task.id) %> + 16: <%= link_to task.complete, complete_task_path %> + 17:
  • + 18: <% end %> + 19: + +app/views/tasks/index.html.erb:16:in `block in _app_views_tasks_index_html_erb__882005466692305988_70119533423860' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__882005466692305988_70119533423860' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.7ms) +Started GET "/tasks" for ::1 at 2017-03-25 00:34:36 -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 (6.9ms) +Completed 200 OK in 37ms (Views: 33.8ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/24" for ::1 at 2017-03-25 00:34:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.2ms) 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.4ms) +Completed 200 OK in 31ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:34:44 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (22.1ms) +Completed 200 OK in 57ms (Views: 51.8ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:34:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (1.8ms) +Completed 200 OK in 36ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:34:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (3.8ms) +Completed 200 OK in 33ms (Views: 27.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:40:16 -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 (50.7ms) +Completed 200 OK in 113ms (Views: 93.8ms | ActiveRecord: 2.8ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:40:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) 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 (3.3ms) +Completed 200 OK in 69ms (Views: 60.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:40: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 (5.1ms) +Completed 200 OK in 48ms (Views: 44.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:40:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) 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 (1.3ms) +Completed 200 OK in 44ms (Views: 39.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:41:23 -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 (1.5ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:41: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 (7.4ms) +Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (No route matches {:action=>"complete", :controller=>"tasks"} missing required keys: [:id]): + 13: + 14: + 15:
  • <%= link_to task.name, task_path(task.id) %>: <%= link_to task.description, task_path(task.id) %> + 16: <%= link_to "complete", complete_task_path %> + 17:
  • + 18: <% end %> + 19: + +app/views/tasks/index.html.erb:16:in `block in _app_views_tasks_index_html_erb__882005466692305988_70119565528880' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__882005466692305988_70119565528880' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (63.0ms) +Started GET "/tasks" for ::1 at 2017-03-25 00:41: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 (5.8ms) +Completed 200 OK in 40ms (Views: 36.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:41:48 -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 (2.1ms) +Completed 200 OK in 35ms (Views: 30.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:41:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.9ms) +Completed 200 OK in 46ms (Views: 41.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 00:42:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (1.3ms) +Completed 200 OK in 53ms (Views: 46.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:42: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 (7.7ms) +Completed 200 OK in 46ms (Views: 41.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:42:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 45ms (Views: 41.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:42:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 46ms (Views: 41.0ms | ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:42:35 -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 (7.0ms) +Completed 200 OK in 49ms (Views: 44.6ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00: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 (5.8ms) +Completed 200 OK in 43ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:55: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 (18.0ms) +Completed 500 Internal Server Error in 38ms (ActiveRecord: 1.3ms) + + + +ActionView::Template::Error (No route matches {:action=>"complete", :controller=>"tasks", :id=>nil} missing required keys: [:id]): + 16: + 17: <% if task.completion_date == nil %> + 18: <% task.complete = false %> + 19: <%= link_to "Complete", complete_task_path(@task) %> + 20: <%else %> + 21: <% task.complete = true %> + 22: <% task.completion_date = time.now %> + +app/views/tasks/index.html.erb:19:in `block in _app_views_tasks_index_html_erb__882005466692305988_70119547061160' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__882005466692305988_70119547061160' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (77.2ms) +Started GET "/tasks" for ::1 at 2017-03-25 00:56: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 (6.8ms) +Completed 200 OK in 39ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/24" for ::1 at 2017-03-25 00:56:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.8ms) 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.5ms) +Completed 200 OK in 32ms (Views: 26.4ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:56: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 (4.8ms) +Completed 200 OK in 43ms (Views: 39.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/24" for ::1 at 2017-03-25 00:56:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.2ms) 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 39ms (Views: 35.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 00:56:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 45ms (Views: 42.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 01:05:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} +Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms) + + + +NoMethodError (undefined method `each_with_index' for :false:Symbol): + +app/models/task.rb:3:in `' +app/models/task.rb:1:in `' +app/controllers/tasks_controller.rb:23:in `show' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.6ms) +Started GET "/tasks/12" for ::1 at 2017-03-25 09:43:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.3ms) 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 (3.0ms) +Completed 200 OK in 102ms (Views: 61.6ms | ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 09:43: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 (5.7ms) +Completed 200 OK in 41ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 09:43:13 -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.4ms) +Completed 200 OK in 37ms (Views: 34.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 09:45:42 -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.9ms) +Completed 200 OK in 39ms (Views: 30.3ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 09:45:44 -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.6ms) +Completed 200 OK in 31ms (Views: 26.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 09:46: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 36ms (Views: 32.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 09:47: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 (1.7ms) +Completed 200 OK in 29ms (Views: 24.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 09:47:03 -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 (2.7ms) +Completed 200 OK in 52ms (Views: 46.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 09:47:24 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.2ms) +Completed 200 OK in 34ms (Views: 26.3ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1/complete" for ::1 at 2017-03-25 09:47:26 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (12.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.0ms) +Started GET "/tasks" for ::1 at 2017-03-25 09:47: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.8ms) +Completed 200 OK in 43ms (Views: 38.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12/complete" for ::1 at 2017-03-25 09:48:01 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/12/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (6.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (85.4ms) +Started GET "/tasks/12/complete" for ::1 at 2017-03-25 10:12:42 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/12/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (17.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (89.3ms) +Started GET "/tasks/12" for ::1 at 2017-03-25 10:12:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (1.7ms) +Completed 200 OK in 49ms (Views: 26.6ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:12:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 40ms (Views: 37.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1/complete" for ::1 at 2017-03-25 10:12:54 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (5.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.1ms) +Started GET "/tasks/1/complete" for ::1 at 2017-03-25 10:13:27 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.3ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 10:13:32 -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 43ms (Views: 19.0ms | ActiveRecord: 1.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:13:33 -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.1ms) +Completed 200 OK in 39ms (Views: 35.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:13:35 -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.5ms) +Completed 200 OK in 51ms (Views: 47.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:13:38 -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.1ms) +Completed 200 OK in 47ms (Views: 41.4ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 10:13:41 -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 (1.5ms) +Completed 200 OK in 32ms (Views: 28.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:14:57 -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.0ms) +Completed 200 OK in 44ms (Views: 37.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:14: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.9ms) +Completed 200 OK in 45ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:15:01 -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 (3.3ms) +Completed 200 OK in 47ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:15:03 -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 (8.7ms) +Completed 200 OK in 45ms (Views: 40.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:16: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.4ms) +Completed 200 OK in 31ms (Views: 28.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:16:24 -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 (2.0ms) +Completed 200 OK in 30ms (Views: 27.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:16: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.1ms) +Completed 200 OK in 45ms (Views: 39.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:16: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 (1.1ms) +Completed 200 OK in 57ms (Views: 52.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:16:29 -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.0ms) +Completed 200 OK in 54ms (Views: 47.7ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:16:53 -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 (2.1ms) +Completed 200 OK in 56ms (Views: 50.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:16:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.1ms) +Completed 200 OK in 63ms (Views: 57.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:16:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"1"} + Task Load (1.5ms) 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 (22.0ms) +Completed 200 OK in 82ms (Views: 72.9ms | ActiveRecord: 1.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:16:58 -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 (16.4ms) +Completed 200 OK in 89ms (Views: 84.0ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:19:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 49ms (Views: 30.9ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:19:34 -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.5ms) +Completed 200 OK in 33ms (Views: 27.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:19: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 (6.6ms) +Completed 200 OK in 45ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:21:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (154.7ms) +Completed 500 Internal Server Error in 166ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined method `complete_task_path' for #<#:0x007f8bf78189b0> +Did you mean? delete_task_path): + 16: + 17: <% if task.completion_date == nil %> + 18: <% task.complete = false %> + 19: <%= link_to "Complete", complete_task_path(task.id), mehtod: :patch, params:{complete: false} %> + 20: <%else %> + 21: <% task.complete = true %> + 22: <% task.completion_date = time.now %> + +app/views/tasks/index.html.erb:19:in `block in _app_views_tasks_index_html_erb__882005466692305988_70119564825500' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__882005466692305988_70119564825500' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (76.0ms) +Started GET "/tasks" for ::1 at 2017-03-25 10:22: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 (8.8ms) +Completed 200 OK in 39ms (Views: 31.7ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:22:16 -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 (1.2ms) +Completed 200 OK in 33ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:22:18 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 46ms (Views: 42.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:22: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 (1.3ms) +Completed 200 OK in 48ms (Views: 41.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:23:41 -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.2ms) +Completed 200 OK in 40ms (Views: 24.1ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:23:43 -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 (6.5ms) +Completed 200 OK in 40ms (Views: 36.0ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:23:44 -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.9ms) +Completed 200 OK in 48ms (Views: 42.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:23: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 (7.6ms) +Completed 200 OK in 53ms (Views: 49.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 10:23:49 -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.3ms) +Completed 200 OK in 40ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:23:51 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 63ms (Views: 56.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 10:23:52 -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.1ms) +Completed 200 OK in 61ms (Views: 55.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:24: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 (7.8ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.2ms) + + +Started POST "/tasks/1" for ::1 at 2017-03-25 10:24:49 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.5ms) +Started POST "/tasks/1" for ::1 at 2017-03-25 10:25:44 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.4ms) +Started GET "/tasks/2" for ::1 at 2017-03-25 10:25:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.3ms) 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.9ms) +Completed 200 OK in 42ms (Views: 18.9ms | ActiveRecord: 3.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:25:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 34ms (Views: 28.7ms | ActiveRecord: 0.3ms) + + +Started POST "/tasks/1" for ::1 at 2017-03-25 10:25:55 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.3ms) +Started POST "/tasks/1" for ::1 at 2017-03-25 10:26:22 -0700 + +ActionController::RoutingError (No route matches [POST] "/tasks/1"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.5ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.3ms) +Started GET "/tasks/" for ::1 at 2017-03-25 10:26: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 (10.0ms) +Completed 200 OK in 44ms (Views: 29.9ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:26: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 (1.5ms) +Completed 200 OK in 34ms (Views: 27.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:26:29 -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.5ms) +Completed 200 OK in 32ms (Views: 28.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:27:11 -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 (12.4ms) +Completed 200 OK in 49ms (Views: 41.4ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 10:27:12 -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 (2.4ms) +Completed 200 OK in 37ms (Views: 30.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:27:14 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 63ms (Views: 57.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 10:45:41 -0700 + ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" +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 (17.3ms) +Completed 200 OK in 267ms (Views: 247.7ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks/1/complete" for ::1 at 2017-03-25 10:45:43 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.5ms) +Started GET "/tasks" for ::1 at 2017-03-25 11:03:29 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 36ms (Views: 33.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/1/complete" for ::1 at 2017-03-25 11:03:35 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.2ms) +Started GET "/tasks/1/complete" for ::1 at 2017-03-25 11:04:48 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks/1/complete"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.8ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 11:04: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 (1.6ms) +Completed 200 OK in 30ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:04:53 -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 (7.7ms) +Completed 200 OK in 43ms (Views: 39.6ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:04:54 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Nf5LAsG9HmoYuBZGScXqIeNk1dOdvRqxEG4Wd+siqv2HU8Jh9Ap6elCHlWkN4ht2oqV3NzTfSm+oFSBFcrNYcQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.1ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:76:in `task_params' +app/controllers/tasks_controller.rb:54:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (69.6ms) +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:05:38 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Nf5LAsG9HmoYuBZGScXqIeNk1dOdvRqxEG4Wd+siqv2HU8Jh9Ap6elCHlWkN4ht2oqV3NzTfSm+oFSBFcrNYcQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 13ms (ActiveRecord: 0.7ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:76:in `task_params' +app/controllers/tasks_controller.rb:54:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.2ms) +Started GET "/tasks/1" for ::1 at 2017-03-25 11:05: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 (1.0ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:05: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 (6.5ms) +Completed 200 OK in 32ms (Views: 28.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:05:48 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"43BlakC4S5zmwgLrK5tajS9FZP3nGeTgCzAp2y8nWc1R3ewJdQ8vjK79gcRvvKvaboTGGU57tD6zSx/ptrarQQ==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:76:in `task_params' +app/controllers/tasks_controller.rb:54:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.6ms) +Started GET "/tasks" for ::1 at 2017-03-25 11:33:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.5ms) +Completed 200 OK in 41ms (Views: 34.0ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:33:56 -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 (1.3ms) +Completed 200 OK in 30ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:35:49 -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.1ms) +Completed 200 OK in 58ms (Views: 54.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:36:02 -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.7ms) +Completed 200 OK in 45ms (Views: 37.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 11:36:08 -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/_form.html.erb (16.1ms) + Rendered tasks/edit.html.erb within layouts/application (21.9ms) +Completed 200 OK in 48ms (Views: 42.5ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-25 11:36:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"JMbwC9GDDE7oghhoZgzaKogB5TQjrKujEA2w5355HKeWa3lo5DRoXqC9m0ciKyt9ycBH0IrO+32odobV5+juKw==", "task"=>{"title"=>"baseline", "name"=>"Fork & Clone", "description"=>"Fork and clone this repository to your computer does this work?"}, "commit"=>"edit", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Fork and clone this repository to your computer does this work?"], ["updated_at", 2017-03-25 18:36:16 UTC], ["id", 1]] +  (7.3ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 14ms (ActiveRecord: 8.1ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 11:36:16 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 51ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 11:36: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.7ms) +Completed 200 OK in 29ms (Views: 23.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:36:41 -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 (7.5ms) +Completed 200 OK in 31ms (Views: 26.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/24" for ::1 at 2017-03-25 11:36:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"24"} + Task Load (0.2ms) 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.7ms) +Completed 200 OK in 30ms (Views: 25.5ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/24" for ::1 at 2017-03-25 11:37:19 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"jCgtLOXdS2fPdSPblUvecFSVQDiTzYY08Z9iYTd3H28+haRP0Govd4dKoPTRbC8nFVTi3Dqv1upJ5FRTrubt4w==", "id"=>"24"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.6ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 24]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:37: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 (4.5ms) +Completed 200 OK in 44ms (Views: 39.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:51: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.9ms) +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.2ms) +Started GET "/tasks" for ::1 at 2017-03-25 11:51:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Rendered tasks/index.html.erb within layouts/application (1.1ms) +Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + ensure + ^): + +app/views/tasks/index.html.erb:32: syntax error, unexpected keyword_ensure, expecting end-of-input + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.8ms) +Started GET "/tasks" for ::1 at 2017-03-25 11:52: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 (14.4ms) +Completed 200 OK in 41ms (Views: 38.2ms | ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 11:52: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 (5.0ms) +Completed 200 OK in 28ms (Views: 24.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:53:01 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uWzaMCoinfr1tobmdBfu3/SMAzw4WnifXU8BAPRdyAcLwVNTH5X56r2JBckwMB+ItU2h2JE4KEHlNDcybcw6iw==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.2ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:76:in `task_params' +app/controllers/tasks_controller.rb:54:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.6ms) +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:53:10 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uWzaMCoinfr1tobmdBfu3/SMAzw4WnifXU8BAPRdyAcLwVNTH5X56r2JBckwMB+ItU2h2JE4KEHlNDcybcw6iw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:76:in `task_params' +app/controllers/tasks_controller.rb:54:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.5ms) +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:54:24 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uWzaMCoinfr1tobmdBfu3/SMAzw4WnifXU8BAPRdyAcLwVNTH5X56r2JBckwMB+ItU2h2JE4KEHlNDcybcw6iw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 14ms (ActiveRecord: 1.5ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:77:in `task_params' +app/controllers/tasks_controller.rb:54:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.1ms) +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:54:28 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uWzaMCoinfr1tobmdBfu3/SMAzw4WnifXU8BAPRdyAcLwVNTH5X56r2JBckwMB+ItU2h2JE4KEHlNDcybcw6iw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 1ms (ActiveRecord: 0.1ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:77:in `task_params' +app/controllers/tasks_controller.rb:54:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.2ms) +Started PUT "/__web_console/repl_sessions/5b039a054712aaf5b1723810968216a3" for ::1 at 2017-03-25 11:54:33 -0700 +Started PUT "/__web_console/repl_sessions/5b039a054712aaf5b1723810968216a3" for ::1 at 2017-03-25 11:54:35 -0700 +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:55:49 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uWzaMCoinfr1tobmdBfu3/SMAzw4WnifXU8BAPRdyAcLwVNTH5X56r2JBckwMB+ItU2h2JE4KEHlNDcybcw6iw==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.8ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:53:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (56.9ms) +Started PUT "/__web_console/repl_sessions/8aad5d47e161d0da4ca600c8e92fa8a7" for ::1 at 2017-03-25 11:55:55 -0700 +Started PUT "/__web_console/repl_sessions/8aad5d47e161d0da4ca600c8e92fa8a7" for ::1 at 2017-03-25 11:55:58 -0700 +Started PUT "/__web_console/repl_sessions/8aad5d47e161d0da4ca600c8e92fa8a7" for ::1 at 2017-03-25 11:56:24 -0700 +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:57:43 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uWzaMCoinfr1tobmdBfu3/SMAzw4WnifXU8BAPRdyAcLwVNTH5X56r2JBckwMB+ItU2h2JE4KEHlNDcybcw6iw==", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:53:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.2ms) +Started PUT "/__web_console/repl_sessions/950c693fabed1d130a22282b1bc3cfe7" for ::1 at 2017-03-25 11:57:52 -0700 +Started PUT "/__web_console/repl_sessions/950c693fabed1d130a22282b1bc3cfe7" for ::1 at 2017-03-25 11:57:53 -0700 +Started PATCH "/tasks/1/complete" for ::1 at 2017-03-25 11:58:08 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uWzaMCoinfr1tobmdBfu3/SMAzw4WnifXU8BAPRdyAcLwVNTH5X56r2JBckwMB+ItU2h2JE4KEHlNDcybcw6iw==", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.2ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:53:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.6ms) +Started PUT "/__web_console/repl_sessions/63460220f23fe8e33d9415262a682d3a" for ::1 at 2017-03-25 11:58:42 -0700 +Started PUT "/__web_console/repl_sessions/63460220f23fe8e33d9415262a682d3a" for ::1 at 2017-03-25 11:58:42 -0700 + Task Load (1.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 23], ["LIMIT", 1]] +Started GET "/tasks/" for ::1 at 2017-03-25 12:04: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 (4.3ms) +Completed 200 OK in 39ms (Views: 35.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:04:10 -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.9ms) +Completed 200 OK in 29ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:04: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 (5.2ms) +Completed 200 OK in 31ms (Views: 27.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:04:22 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 38ms (Views: 34.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:04: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 (3.0ms) +Completed 200 OK in 25ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 12:04:41 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/new.html.erb within layouts/application (6.1ms) +Completed 200 OK in 32ms (Views: 29.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 12:04:50 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Jl8OlEBzq/UAr97reJzlWVzCFNvstcDi1MzJMK/x7y+U8of3dcTP5UiQXcQ8uxQOHQO2P0XXkDxst/8CNmAdow==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>"where are i"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Whereami"], ["description", "where are i"], ["created_at", 2017-03-25 19:04:50 UTC], ["updated_at", 2017-03-25 19:04:50 UTC], ["title", 0]] +  (8.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 14ms (ActiveRecord: 8.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:04: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.6ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 24], ["LIMIT", 1]] + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:06:20 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"zYWcUDkWWXaU3Y0mHyk1/+6teFRtC415opbuslJ6SRt/KBUzDKE9ZtziDglbDsSor2zasMRp3aca7diAy+u7lw==", "complete"=>"false", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:53:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.1ms) +Started GET "/tasks/" for ::1 at 2017-03-25 12:06: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.1ms) +Completed 200 OK in 34ms (Views: 31.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:06:46 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"BEIQSgNe8fvJaPC4OEppGliAOvgOj4FQn2HLWmKZ4Mu275kpNumV64FXc5d8bZhNGUGYHKft0Y4nGv1o+wgSRw==", "complete"=>"false", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.2ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:53:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (89.3ms) +Started GET "/tasks" for ::1 at 2017-03-25 12:17:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 38ms (Views: 29.9ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:17: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 (3.8ms) +Completed 200 OK in 30ms (Views: 25.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 12:18:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.3ms) 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 (1.4ms) +Completed 200 OK in 31ms (Views: 25.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/25/edit" for ::1 at 2017-03-25 12:18:01 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.8ms) + Rendered tasks/edit.html.erb within layouts/application (7.2ms) +Completed 200 OK in 46ms (Views: 38.3ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/25" for ::1 at 2017-03-25 12:18:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"zBXRCjwZeAbg0SWPgyd24eo+xnqAlDcXk+zmMKDwsSp+uFhpCa4cFqjupqDHAIe2q/9knin2Z8krl9ACOWFDpg==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>"where are i who knows"}, "commit"=>"edit", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction +DEPRECATION WARNING: Method to_hash is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from update at /Users/ashtn/ADA/Projects/TaskList/app/controllers/tasks_controller.rb:43) +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 12:18:06 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 62ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 12:18:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) 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 (1.4ms) +Completed 200 OK in 32ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25/edit" for ::1 at 2017-03-25 12:18:15 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/edit.html.erb within layouts/application (7.8ms) +Completed 200 OK in 34ms (Views: 29.6ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/25" for ::1 at 2017-03-25 12:18:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qcumKuEXls0644JfnXQslcVtukH83rUIBcf6qXKGduIbZi9J1KDy3XLcAXDZU93ChKwYpVW85da9vMyb6xeEbg==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>"where are i who knows"}, "commit"=>"edit", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction +DEPRECATION WARNING: Method to_hash is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from update at /Users/ashtn/ADA/Projects/TaskList/app/controllers/tasks_controller.rb:43) +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 12:18:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 48ms (Views: 31.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 12:18:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) 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 (2.2ms) +Completed 200 OK in 31ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25/edit" for ::1 at 2017-03-25 12:18:27 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/edit.html.erb within layouts/application (7.9ms) +Completed 200 OK in 35ms (Views: 29.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:18: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 (15.8ms) +Completed 200 OK in 40ms (Views: 33.8ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 12:18:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.3ms) 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 (1.4ms) +Completed 200 OK in 47ms (Views: 40.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/25/edit" for ::1 at 2017-03-25 12:18:49 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.0ms) + Rendered tasks/edit.html.erb within layouts/application (7.7ms) +Completed 200 OK in 45ms (Views: 39.8ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/25" for ::1 at 2017-03-25 12:18:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qYrEhhpHgnzeabRraL8ddqAhRqB5F/toGdDUOHqI+9EbJ03lL/DmbJZWN0QsmOwh4eDkRNB1q7ahq+IK4xkJXQ==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>"where are i who knows"}, "commit"=>"edit", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:42:in `update' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.6ms) +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:19:05 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:19:05 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:19:36 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:08 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:09 -0700 +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:15 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:18 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:20 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:34 -0700 +  (0.1ms) begin transaction +DEPRECATION WARNING: Method to_hash is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from create_or_update at /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/activerecord-5.0.2/lib/active_record/persistence.rb:540) +  (0.1ms) commit transaction +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:40 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:46 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:20:58 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:00 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:07 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:09 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:12 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:31 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:42 -0700 +  (0.1ms) begin transaction +DEPRECATION WARNING: Method to_hash is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from create_or_update at /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/activerecord-5.0.2/lib/active_record/persistence.rb:540) +  (0.0ms) commit transaction +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:48 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:55 -0700 +Started PUT "/__web_console/repl_sessions/b38e01d654cea2e0c2af21655a6249f0" for ::1 at 2017-03-25 12:21:58 -0700 +Started GET "/tasks/2" for ::1 at 2017-03-25 12:25:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"2"} + Task Load (0.3ms) 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.0ms) +Completed 200 OK in 73ms (Views: 39.3ms | ActiveRecord: 1.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:25: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 (4.2ms) +Completed 200 OK in 34ms (Views: 30.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:25:02 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"OI9FLevDdcipxtAMU7EWffG9JxDKKZnAUbJawhq1QVCKIsxO3nQR2OH5UyMXlucqsHyF9GNLyR7pyWzwgySz3A==", "complete"=>"false", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:58:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.5ms) +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:25:13 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"OI9FLevDdcipxtAMU7EWffG9JxDKKZnAUbJawhq1QVCKIsxO3nQR2OH5UyMXlucqsHyF9GNLyR7pyWzwgySz3A==", "complete"=>"false", "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.7ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:58:in `complete' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.6ms) +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:26:19 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"OI9FLevDdcipxtAMU7EWffG9JxDKKZnAUbJawhq1QVCKIsxO3nQR2OH5UyMXlucqsHyF9GNLyR7pyWzwgySz3A==", "complete"=>"false", "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 "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", false], ["updated_at", 2017-03-25 19:26:19 UTC], ["id", 1]] +  (1.7ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:26: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.0ms) +Completed 200 OK in 24ms (Views: 21.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:26:21 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"4F+BkKFDhwpA3RQ2DT5GSG1kMe8Rk4R/ZmMDl7VtPmJS8gjzlPTjGgjilxlJGbcfLKWTC7jx1KHeGDWlLPzM7g==", "complete"=>"false", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:26: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.9ms) +Completed 200 OK in 29ms (Views: 26.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:26:23 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"niO3fcUlmOzps/bAR9ePDFLlPgovxaCm4MLQ7erIVtosjj4e8JL8/KGMde8D8H5bEySc7oan8HhYuebfc1mkVg==", "complete"=>"false", "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 ::1 at 2017-03-25 12:26: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 (4.7ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/25/complete?complete=false" for ::1 at 2017-03-25 12:26:54 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"nMNdPILvk0YpbRkhVSj/JZ91oqTS6TH95ue7HAwK/GwubtRft1j3VmFSmg4RDw5y3rQAQHuLYSNenI0ulZsO4A==", "complete"=>"false", "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", false], ["updated_at", 2017-03-25 19:26:54 UTC], ["id", 25]] +  (3.3ms) commit transaction +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 11ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:26:54 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started GET "/tasks" for ::1 at 2017-03-25 12:31:28 -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.4ms) +Completed 200 OK in 32ms (Views: 28.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/1/complete?complete=false" for ::1 at 2017-03-25 12:31:30 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"kRKA3jL0eObn3j4+y3lCkF1B239RU+Nl9ilb/7C1eEQjvwm9B0Mc9q/hvRGPXrPHHIB5m/gxs7tOUm3NKSSKyA==", "complete"=>"false", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 0.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:31: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 26ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25/complete?complete=false" for ::1 at 2017-03-25 12:31:34 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"BDHv8eexf4oIlX4ud999aHWQEPsbGVbrfcWPHrfw8K62nGaS0gYbmkCq/QEz+Iw/NFGyH7J7BjXFvrksLmECIg==", "complete"=>"false", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:31: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.6ms) +Completed 200 OK in 24ms (Views: 22.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:37: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 (0.8ms) +Completed 200 OK in 38ms (Views: 24.3ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 12:37:41 -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/_form.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (7.0ms) +Completed 200 OK in 36ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:41:54 -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 (144.4ms) +Completed 500 Internal Server Error in 160ms (ActiveRecord: 1.8ms) + + + +ActionView::Template::Error (undefined method `complete_task_path' for #<#:0x007fe954d82b70> +Did you mean? delete_task_path): + 16: + 17: <%# if task.completion_date == nil %> + 18: <%# task.complete = false %> + 19: <%= link_to "Complete", complete_task_path(task.id, complete: true), method: :patch %> + 20: <%#else %> + 21: <%# task.complete = true %> + 22: <%# task.completion_date = time.now %> + +app/views/tasks/index.html.erb:19:in `block in _app_views_tasks_index_html_erb__316294975842881652_70320069347240' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb__316294975842881652_70320069347240' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (76.1ms) +Started GET "/tasks" for ::1 at 2017-03-25 12: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 (7.0ms) +Completed 200 OK in 35ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1?complete=true" for ::1 at 2017-03-25 12:42:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"EXUXIBric4xAw5rEiavgLQI+gwCqi70ARPjWhI9QSHCj2J5DL1UXnAj8GevNjBF6Q/8h5APp7d78g+C2FsG6/A==", "complete"=>"true", "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +Completed 400 Bad Request in 2ms (ActiveRecord: 0.2ms) + + + +ActionController::ParameterMissing (param is missing or the value is empty: task): + +app/controllers/tasks_controller.rb:82:in `task_params' +app/controllers/tasks_controller.rb:34:in `update' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (11.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.8ms) +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:42:50 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:42:52 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:42:52 -0700 + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:10 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:10 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:14 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:26 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:36 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:37 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:56 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:44:57 -0700 +Started PUT "/__web_console/repl_sessions/fc07b411b46c851fd61a72008468b9f4" for ::1 at 2017-03-25 12:45:15 -0700 +Started GET "/tasks" for ::1 at 2017-03-25 12:59: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 (10.7ms) +Completed 200 OK in 43ms (Views: 35.2ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:59: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 (13.0ms) +Completed 200 OK in 55ms (Views: 51.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 12:59:28 -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 37ms (Views: 28.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 12:59:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.0ms) +Completed 200 OK in 93ms (Views: 86.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+12%3A59%3A30+-0700" for ::1 at 2017-03-25 12:59:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XJQi8+7LBE3Yya/+YQ/hvwvJZQqSDpuIzf8+FywCNr3uOauQ23xgXZD2LNElKBDoSgjH7jtsy1Z1hAgltZPEMQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 12:59:30 -0700"}, "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "title" = ?, "name" = ?, "description" = ?, "complete" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["name", nil], ["description", nil], ["complete", true], ["completion_date", "2017-03-25 12:59:32 -0700"], ["updated_at", 2017-03-25 19:59:32 UTC], ["id", 25]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 9ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 12:59:32 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 55ms (Views: 39.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 13:00: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 (10.0ms) +Completed 200 OK in 36ms (Views: 29.4ms | ActiveRecord: 1.0ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A00%3A41+-0700" for ::1 at 2017-03-25 13:00:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"aH5r6EcAz4EBwQdnonxgh9F9HHCMa5L6TAiNMCWEXlja0+KLcrerkUn+hEjmW5HQkLy+lCUJwiT0c7sCvBWs1A==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:00:41 -0700"}, "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.2ms) + + + +RuntimeError (): + +app/controllers/tasks_controller.rb:81:in `task_params' +app/controllers/tasks_controller.rb:34:in `update' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.4ms) +Started PUT "/__web_console/repl_sessions/ddb1ca68bf725e6380acc82d9235e661" for ::1 at 2017-03-25 13:01:01 -0700 +Started PUT "/__web_console/repl_sessions/ddb1ca68bf725e6380acc82d9235e661" for ::1 at 2017-03-25 13:01:02 -0700 +Started PUT "/__web_console/repl_sessions/ddb1ca68bf725e6380acc82d9235e661" for ::1 at 2017-03-25 13:01:36 -0700 + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A00%3A41+-0700" for ::1 at 2017-03-25 13:03:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"aH5r6EcAz4EBwQdnonxgh9F9HHCMa5L6TAiNMCWEXlja0+KLcrerkUn+hEjmW5HQkLy+lCUJwiT0c7sCvBWs1A==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:00:41 -0700"}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:03:36 -0700"], ["updated_at", 2017-03-25 20:03:36 UTC], ["id", 25]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 16ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:03:36 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 51ms (Views: 36.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 13:03:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.4ms) 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 (1.9ms) +Completed 200 OK in 33ms (Views: 26.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 13:03:45 -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 (3.5ms) +Completed 200 OK in 50ms (Views: 43.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/25/edit" for ::1 at 2017-03-25 13:03:46 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (6.9ms) + Rendered tasks/edit.html.erb within layouts/application (11.0ms) +Completed 200 OK in 41ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/25" for ::1 at 2017-03-25 13:05:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kAAuUT/d7V8iTTxANVHqYsqnPGLd9cLaYqj+QnWJBTUiracyCmqJT2pyv29xdhs1i2aehnSXkgTa08hw7Bj3uQ==", "task"=>{"title"=>"baseline", "name"=>"Whereami", "description"=>"who knows"}, "commit"=>"edit", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "title" = ?, "name" = ?, "description" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 0], ["name", "Whereami"], ["description", "who knows"], ["complete", nil], ["updated_at", 2017-03-25 20:05:24 UTC], ["id", 25]] +  (6.1ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 12ms (ActiveRecord: 6.8ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:05:24 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 48ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A05%3A24+-0700" for ::1 at 2017-03-25 13:05:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"VMiFLEDQIHTEFRl16fW9lItWYFD8BoG0AYyMxDzI7UDmZQxPdWdEZIwqmlqt0kzDypfCtFVk0Wq597r2pVkfzA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:05:24 -0700"}, "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "name" = ?, "description" = ?, "complete" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", nil], ["name", nil], ["description", nil], ["complete", true], ["completion_date", "2017-03-25 13:05:30 -0700"], ["updated_at", 2017-03-25 20:05:30 UTC], ["id", 25]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:05:30 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 58ms (Views: 42.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 13:05:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) 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 (2.1ms) +Completed 200 OK in 32ms (Views: 26.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25/edit" for ::1 at 2017-03-25 13:05:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.9ms) + Rendered tasks/edit.html.erb within layouts/application (7.7ms) +Completed 200 OK in 41ms (Views: 36.4ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/25" for ::1 at 2017-03-25 13:05:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"4a4v+XCLn+GlfoL8nNezuae36MZwlud4MLAxmzaZL9FTA6aaRTz78e1BAdPY8ELu5nZKItn0t6aIyweprwjdXQ==", "task"=>{"title"=>"baseline", "name"=>"Where am i", "description"=>""}, "commit"=>"edit", "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "title" = ?, "name" = ?, "description" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 0], ["name", "Where am i"], ["description", ""], ["complete", nil], ["updated_at", 2017-03-25 20:05:42 UTC], ["id", 25]] +  (5.2ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 9ms (ActiveRecord: 5.7ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:05:42 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 52ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A05%3A42+-0700" for ::1 at 2017-03-25 13:06:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"W9ajzsr+8jf4CB3pWY2dQkUPmLNqAekb3psMiI+1VW/peyqt/0mWJ7A3nsYdqmwVBM46V8NjucVm4Dq6FiSn4w==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:05:42 -0700"}, "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 "complete" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", true], ["completion_date", "2017-03-25 13:05:42 -0700"], ["updated_at", 2017-03-25 20:06:42 UTC], ["id", 1]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 16ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:06:42 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.2ms) +Completed 200 OK in 67ms (Views: 50.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 13:06:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) 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 (2.0ms) +Completed 200 OK in 32ms (Views: 25.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 13:06: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 (7.0ms) +Completed 200 OK in 41ms (Views: 35.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A06%3A49+-0700" for ::1 at 2017-03-25 13:06:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"bOXK8LZhGBnqF9CRqlQlI2n4DXiD2b9Qn901Ev8u+1XeSEOTg9Z8CaIoU77uc9R0KDmvnCq7744npgMgZr8J2Q==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:06:49 -0700"}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "complete" = ?, "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["complete", true], ["completion_date", "2017-03-25 13:06:49 -0700"], ["updated_at", 2017-03-25 20:06:50 UTC], ["id", 25]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:06:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 55ms (Views: 38.2ms | ActiveRecord: 0.3ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A06%3A50+-0700" for ::1 at 2017-03-25 13:07:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+GcGdsp+ygfCZvm6QoX9LYjr+DE2E+hwuOUAEwblkx1Kyo8V/8muF4pZepUGogx6ySpa1Z9xuK4AnjYhn3RhkQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:06:50 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:06:50 -0700"], ["updated_at", 2017-03-25 20:07:14 UTC], ["id", 25]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:07:14 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 62ms (Views: 47.0ms | ActiveRecord: 0.3ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A07%3A14+-0700" for ::1 at 2017-03-25 13:09:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xzCCr2aygQEqwqdCsLSgif1/is/Lm0pMfOXjG3WNvKF1nQvMUwXlEWL9JG30k1HevL4oK2L5GpLEntUp7BxOLQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:07:14 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:07:14 -0700"], ["updated_at", 2017-03-25 20:09:26 UTC], ["id", 25]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 15ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:09:26 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 67ms (Views: 49.9ms | ActiveRecord: 0.3ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A09%3A27+-0700" for ::1 at 2017-03-25 13:09:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"AKV9LglTlqwVC2Iw4yo5Qrm7bfLkSHYbYHyw8A5cTgWyCPRNPOTyvF004R+nDcgV+HrPFk0qJsXYB4bCl828iQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:09:27 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:09:27 -0700"], ["updated_at", 2017-03-25 20:09:40 UTC], ["id", 25]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:09:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 65ms (Views: 49.6ms | ActiveRecord: 0.3ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started GET "/tasks" for ::1 at 2017-03-25 13:15:55 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 39ms (Views: 30.9ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 13:16:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.3ms) 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 (1.2ms) +Completed 200 OK in 35ms (Views: 29.6ms | ActiveRecord: 0.3ms) + + + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:16:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"DNw2O7YWWfHpCa9O++bEha5kqigRcggCjJt2HcCm/wa+cb9Yg6E94aE2LGG/wTXS76UIzLgQWNw04EAvWTcNig==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:16:53 UTC], ["id", 25]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 7ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:16:53 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.0ms) +Completed 200 OK in 77ms (Views: 60.5ms | ActiveRecord: 0.3ms) + + + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:18:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0fLs7avI87Uc5fXLfupwWGNw+ifT4AzlkZPwWZlhdTtjX2WOnn+XpVTaduQ6zYEPIrFYw3qCXDsp6MZrAPCHtw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 12ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:18:06 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 64ms (Views: 46.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:18:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"CB1ubL8KCZ6JBbjF+TVYynN+do0Rmf6CuT+7x836Hbq6sOcPir1tjsE6O+q9EqmdMr/Uabj7rlwBRI31VGvvNg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:18:07 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 60ms (Views: 44.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:18:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"IYeQ0yCnlmK0/My4ZB4zC8daMIcJfoYksCk5JK14j2qTKhmwFRDycvzDT5cgOcJchpuSY6Ac1voIUg8WNOl95g==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.0ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 2ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:18:08 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 58ms (Views: 41.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 13:19:08 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.7ms) + Rendered tasks/new.html.erb within layouts/application (5.0ms) +Completed 200 OK in 34ms (Views: 27.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 13:19:16 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"dUsgTbYt/qCuYuxep1xLUnGD2dyToS1oV6Fvx3acw47H5qkug5qasOZdb3Hje7oFMEJ7ODrDfbbv2ln17w0xAg==", "task"=>{"title"=>"baseline", "name"=>"Whereami2", "description"=>""}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Whereami2"], ["description", ""], ["created_at", 2017-03-25 20:19:16 UTC], ["updated_at", 2017-03-25 20:19:16 UTC], ["title", 0]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 13:19: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 32ms (Views: 30.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/26?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A19%3A16+-0700" for ::1 at 2017-03-25 13:19:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"7MMcI3A41ImmQ4ihHcQhB1HFOE9eUDmvAC7+ZI5R+lJebpVARY+wme58C45Z49BQEASaq/cyaXG4VchWF8AI3g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:19:16 -0700"}, "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:19:16 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:19:18 UTC], ["id", 26]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.26 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:19:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 62ms (Views: 43.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/26?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:19:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"bUuwKLrfMXqqauTghmipU3VvasodPbGlc8FnRH95+g/f5jlLj2hVauJVZ8/CT1gENK7ILrRf4XvLulF25ugIgw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:19:21 UTC], ["id", 26]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.26 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:19:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 64ms (Views: 47.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A19%3A21+-0700" for ::1 at 2017-03-25 13:19:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"o3RgYCVLKuJ9lv+2CSZvZoNKqvnmrfersqC5FwUGY68R2ekDEPxO8jWpfJlNAZ4xwosIHU/Pp3UK248lnJeRIw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:19:21 -0700"}, "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:19:21 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:19:24 UTC], ["id", 12]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 7ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:19:24 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 59ms (Views: 43.3ms | ActiveRecord: 0.2ms) + + + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +Started PATCH "/tasks/26?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:20:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ABFB9PxGv6uDwzEzaaw4L/tX/Joo4wec5zq21dGZlcqyvMiXyfHbu8v8shwti8l4upZefoGBV0JfQYDnSAhnRg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.26 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:20:52 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 69ms (Views: 52.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/26" for ::1 at 2017-03-25 13:20:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"26"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 32ms (Views: 26.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A20%3A52+-0700" for ::1 at 2017-03-25 13:20:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"eNuHD/9E3ZLFSkEYkrPaPAIooIyB5uLZsQpEeRhL9VXKdg5syvO5go11wjfWlCtrQ+kCaCiEsgcJcXJLgdoH2Q==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:20:52 -0700"}, "id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:20:52 -0700"], ["updated_at", 2017-03-25 20:20:59 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:20:59 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 55ms (Views: 37.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A20%3A59+-0700" for ::1 at 2017-03-25 13:21:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ggmtoSMBp1ZcstruqEDOesRz/Cm4WVg9LPr0jxXZn08wpCTCFrbDRhSNWcHsZz8thbJezRE7COOUgcK9jEhtww==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:20:59 -0700"}, "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:20:59 -0700"], ["updated_at", 2017-03-25 20:21:01 UTC], ["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:21:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 60ms (Views: 43.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:22:08 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 62ms (Views: 45.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 13:22:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.8ms) +Completed 200 OK in 37ms (Views: 34.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 13:22:10 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.3ms) +Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 13:22:10 -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 (22.7ms) +Completed 200 OK in 76ms (Views: 71.5ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A11+-0700" for ::1 at 2017-03-25 13:22:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"5/+cUOnCQPXXZBwiUR+LA90jMy4k/Ws2y3VFlEIlwSxVUhUz3HUk5Z9bnw0VOHpUnOKRyo2fO+hzDnOm27QzoA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:11 -0700"}, "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:11 -0700"], ["updated_at", 2017-03-25 20:22:13 UTC], ["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:22:13 -0700 +Processing by TasksController#index as + 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.9ms) +Completed 200 OK in 70ms (Views: 52.7ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A13+-0700" for ::1 at 2017-03-25 13:22:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GNyuJjtpzDW59zrK4MiaAJkw46/cPWJG+4wy2Rht4laqcSdFDt6oJfHIueWk72tX2PFBS3VfMphD9wTrgfwQ2g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:13 -0700"}, "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:13 -0700"], ["updated_at", 2017-03-25 20:22:14 UTC], ["id", 12]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:22:14 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.1ms) +Completed 200 OK in 81ms (Views: 58.5ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A14+-0700" for ::1 at 2017-03-25 13:22:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Q3HBskmpmBmZkJS/iz+ULfOWaHODTEVoIKD8rXyecf7x3EjRfB78CdGvF5DPGGV6slfKlyouFbaY28qf5Q+Dcg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:14 -0700"}, "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:14 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:22:16 UTC], ["id", 4]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 13:22:16 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 70ms (Views: 48.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 13:22:31 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 51ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:22:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"8cKL05J0JPWYuKVS100ObL+9O682xJUnTdrIAFJ0+fJDbwKwp8NA5dCHJn2Tav87/nyZS5+mxfn1of4yy+ULfg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"1"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:22:43 UTC], ["id", 1]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 9ms (ActiveRecord: 3.9ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:22:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 62ms (Views: 46.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A43+-0700" for ::1 at 2017-03-25 13:22:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"TfVRzHO1ba2MjfLFShezv/pIzbgqx86IEubPCUfI6Yv/WNivRgIJvcSyceoOMELou4lvXIOlnlaqnfk73lkbBw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:43 -0700"}, "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:43 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:22:44 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:22:44 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 57ms (Views: 41.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:22:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"HMeSCPyQRCRQ8mZ23QT/g3lcLNHxUx0kdCSN2gI8IjyuahtryScgNBjN5VmZIw7UOJ2ONVgxTfrMX7vom63QsA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:22:45 UTC], ["id", 1]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 12ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:22:45 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.7ms) +Completed 200 OK in 63ms (Views: 44.2ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A45+-0700" for ::1 at 2017-03-25 13:22:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"05y6voFY4BCgGNEzSGNuHQFKlsUjW1srSV3YI5CwmyRhMTPdtO+EAOgnUhwMRJ9KQIs0IYo5C/XxJu4RCSFpqA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:45 -0700"}, "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:45 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:22:46 UTC], ["id", 1]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:22:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 59ms (Views: 42.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:22:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"SUKy+/Zg1PeqQ8EQsCCVrLtviJLKQNS5dgFixf/l68X77zuYw9ew5+J8Qj/0B2T7+q4qdmMihGfOelT3ZnQZSQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:22:46 UTC], ["id", 1]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:22:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 55ms (Views: 39.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A46+-0700" for ::1 at 2017-03-25 13:22:48 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"suTxjxoYGN1nhTlN+3k/Ow9BtzQBoGIAhjvwLAwLYZQASXjsL698zS+6umK/Xs5sToAV0KjCMt4+QMYelZqTGA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:46 -0700"}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:46 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:22:48 UTC], ["id", 25]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:22:48 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 60ms (Views: 44.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:22:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"8C5T9Efxb3EJuyf6263zcIOE/0DfbyiXhv0fDZ/a8tVCg9qXckYLYUGEpNWfigInwkVdpHYNeEk+hik/BksAWQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:22:49 UTC], ["id", 25]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 8ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:22:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 69ms (Views: 50.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/26?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A49+-0700" for ::1 at 2017-03-25 13:22:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"7J/Xoe/ppKR7rHjJC59phh9ByBlG6Adss0GL1yFzLlZeMl7C2l7AtDOT++ZPuJjRXoBq/e+KV7ILOr3luOLc2g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:49 -0700"}, "id"=>"26"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:49 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:22:50 UTC], ["id", 26]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.26 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:22:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 55ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A22%3A50+-0700" for ::1 at 2017-03-25 13:22:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hyjl9iQo3AdBanlYmt8OYRXnzUD3xuGffWobp/gbHvg1hWyVEZ+4FwlV+nfe+P82VCZvpF6ksUHFES2VYYrsdA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:22:50 -0700"}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:22:50 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:22:51 UTC], ["id", 25]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:22:51 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 57ms (Views: 38.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:22:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FT2fQme2j6nwXP0Z9XB3W/fpNJkpLUUxQZ0mVO4GHkunkBYhUgHrubhjfjaxV4YMtiiWfYBPFe/55hBmd5fsxw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.2ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:22:52 UTC], ["id", 25]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 9ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:22:52 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 60ms (Views: 43.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:28:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"47HSnytBb4qvrOx2NJ/XGK19eQO7J0pELW0YuUe3QaVRHFv8HvYLmueTb1lwuCZP7Lzb5xJFGpqVFi6L3iazKQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:28:16 UTC], ["id", 12]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 5ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:28:16 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 70ms (Views: 55.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A28%3A16+-0700" for ::1 at 2017-03-25 13:28:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"qRe2HiZyj2a19/PReNaZfqzDixoACzL/gLtQzrLSpBkbuj99E8Xrdv3IcP488Wgp7QIp/qlpYiE4wGb8K0NWlQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:28:16 -0700"}, "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:28:16 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:28:34 UTC], ["id", 1]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:28:34 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.5ms) +Completed 200 OK in 65ms (Views: 49.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:28:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"o598HcPg0shasuwLjF/5kf9T5xDQDc5ql3+x2EB95H0RMvV+9le22BKNbyTIeAjGvpJF9HlvnrQvBIfq2ewW8Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"1"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:28:36 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 9ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 13:28:36 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.1ms) +Completed 200 OK in 74ms (Views: 54.5ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A28%3A36+-0700" for ::1 at 2017-03-25 13:28:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XLqZTR8e1VHBdoTsPuFQNmp847g9WbEytSowcWyxcCjuFxAuKqmxQYlJB8N6xqFhK71BXJQ74ewNUQZD9SCCpA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:28:36 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:28:36 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:28:55 UTC], ["id", 3]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 13:28:55 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 61ms (Views: 45.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/26?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:29:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"yI1UvUgbG0UP4j96REDBhPeUtZiulLgi9ifF25faNCZ6IN3efax/VUfdvFUAZzDTtlUXfAf26PxOXPPpDkvGqg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:29:31 UTC], ["id", 26]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.26 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:29:31 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.5ms) +Completed 200 OK in 68ms (Views: 52.4ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started GET "/tasks.26" for ::1 at 2017-03-25 13:30:13 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 56ms (Views: 39.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:31:42 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 54ms (Views: 38.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:31:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"EYLbjtmMyMwj+/icu/eSWF1uBjoyQcCTztNDvxXa2gujL1Lt7Dus3GvEe7P/0GMPHK+k3psjkE12qHWNjEsohw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:31:58 UTC], ["id", 3]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 13:31:58 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 58ms (Views: 42.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A31%3A58+-0700" for ::1 at 2017-03-25 13:32:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"sEIrpyIgGSf9rmdQe1pWAB62fcSHKe4DvxshkcAgEJMC76LEF5d9N7WR5H8/fadXX3ffIC5Lvt0HYBejWbHiHw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:31:58 -0700"}, "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:31:58 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:00 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 13:32:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 70ms (Views: 47.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:32:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"9qckaREyEyjuyZETAeMqzni+KmjUnBeOimRqUdKiCidECq0KJIV3OKb2EjxFxNuZOX+IjH3+R1AyH1xjSzP4qw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:32:01 UTC], ["id", 3]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 8ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 13:32:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.7ms) +Completed 200 OK in 79ms (Views: 56.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A32%3A01+-0700" for ::1 at 2017-03-25 13:32:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"kXinmd9THKAyW/4f4j1CMehHW7Lu9M+zJ/Mx63uhAyYj1S766uR4sHpkfTCmGrNmqYb5VkeWn22fiAfZ4jDxqg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:32:01 -0700"}, "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:32:01 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:02 UTC], ["id", 3]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 13:32:02 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 70ms (Views: 48.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:32:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"T10Pint32Xj/cNNcuCm9xISl6AesKlt3JFmRQ8N1gMv98IbpTsC9aLdPUHP8DkyTxWRK4wVIC6mcIqdxWuRyRw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"3"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:32:03 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 9ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 13:32:03 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 65ms (Views: 46.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A32%3A04+-0700" for ::1 at 2017-03-25 13:32:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rzetj/b9Zqz38ywRAF13WaKH+ZIrTELIRXKcAiAT/yUdmiTsw0oCvL/Mrz5EeoYO40ZbdoIuEhb9CaowuYINqQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:32:04 -0700"}, "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:32:04 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:04 UTC], ["id", 3]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 7ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 13:32:04 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 57ms (Views: 39.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A32%3A04+-0700" for ::1 at 2017-03-25 13:32:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"qsKokeZcustOQy7BYo+80SafJ1bel+3EfqR46iTGQXIYbyHy0+ve2wZ8re4mqE2GZ16Fsnf1vRrG307YvVez/g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:32:04 -0700"}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:32:04 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:08 UTC], ["id", 25]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:32:08 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.2ms) +Completed 200 OK in 66ms (Views: 50.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:32:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"W7Bge5nvkZ4Oh8tUssEgSpyH6grx+RD9t0rEirSIwD/pHekYrFj1jka4SHv25tEd3UZI7libQCMPMfK4LRkysw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:32:10 UTC], ["id", 25]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:32:10 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 64ms (Views: 42.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A32%3A10+-0700" for ::1 at 2017-03-25 13:32:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"QOqhP0eSX2dTb5YTnRXIQll74hFN5XAbojJ6+eg6Op7yRyhcciU7dxtQFTzZMjkVGLpA9eSHIMUaSUzLcavIEg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:32:10 -0700"}, "id"=>"25"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:32:10 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:10 UTC], ["id", 25]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:32:10 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 53ms (Views: 38.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:32:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"L39DPqdOCG0wo1RfPnL5d7wf6h1ARlhggvFingD+j2qd0spdkvlsfXic13B6VQgg/d5I+ekkCL46ilSsmW995g==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:32:11 UTC], ["id", 25]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:32:11 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 57ms (Views: 37.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/25?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A32%3A11+-0700" for ::1 at 2017-03-25 13:32:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"J9nIaXCf0TFk9CZAgutxrZpSkcFCpRaySaF/6mr1lSiVdEEKRSi1ISzLpW/GzID625MzJevHRmzx2knY82RnpA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:32:11 -0700"}, "id"=>"25"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 25], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:32:11 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:11 UTC], ["id", 25]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.25 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.25" for ::1 at 2017-03-25 13:32:11 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 72ms (Views: 55.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/26?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A32%3A11+-0700" for ::1 at 2017-03-25 13:32:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"o1i81mOvoYa7IFFUL8tVjZ/RyXp208eu/rRLCZ4BxSkR9TW1VhjFlvMf0ntr7KTa3hBrnt+xl3BGz307B5A3pQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:32:11 -0700"}, "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:32:11 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:13 UTC], ["id", 26]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks.26 +Completed 302 Found in 6ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:32:13 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.9ms) +Completed 200 OK in 67ms (Views: 47.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/26?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 13:32:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"6DyzhdHbnwD7i7m1dwI9gKVWHxQFmvohZkQrIl3YuKRakTrm5Gz7ELO0OpozJczX5Je98Kz4qv/ePx0QxElKKA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"26"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 20:32:13 UTC], ["id", 26]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.26 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.26" for ::1 at 2017-03-25 13:32:13 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 62ms (Views: 45.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+13%3A32%3A14+-0700" for ::1 at 2017-03-25 13:32:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"9NoHO7XaxKtfGqltkRBLVoHaHRqI7n8BNk8+aj/MItpGd45YgG2guxclKkLVN7oBwBu//iGML9+ONAhYpl3QVg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 13:32:14 -0700"}, "id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 13:32:14 -0700"], ["complete", true], ["updated_at", 2017-03-25 20:32:15 UTC], ["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 13:32:15 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 66ms (Views: 48.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 14:17: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 (7.9ms) +Completed 200 OK in 41ms (Views: 36.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 14:17:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.6ms) + Rendered tasks/new.html.erb within layouts/application (6.4ms) +Completed 200 OK in 30ms (Views: 27.2ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 14:55: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 (16.2ms) +Completed 200 OK in 78ms (Views: 71.1ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/11?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+14%3A55%3A57+-0700" for ::1 at 2017-03-25 14:56:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"//DGjbeWL/4z6Qz1PsmSIhtL+ELG+NszacQyWvzSuyhNXU/ugiFL7nvWj9p67mN1Wopapm+ai+3RvwRoZUNJpA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 14:55:57 -0700"}, "id"=>"11"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (2.0ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 14:55:57 -0700"], ["complete", true], ["updated_at", 2017-03-25 21:56:10 UTC], ["id", 11]] +  (6.5ms) commit transaction +Redirected to http://localhost:3000/tasks.11 +Completed 302 Found in 22ms (ActiveRecord: 9.0ms) + + +Started GET "/tasks.11" for ::1 at 2017-03-25 14:56:10 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 69ms (Views: 53.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/11?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 14:56:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Z9NlCb34ymirXrG7+1oYvHZG4u5coOsdcirRdTofWuLVfuxqiE+ueONhMpS/fenrN4dACvXCu8PKUedHo46obg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 21:56:14 UTC], ["id", 11]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks.11 +Completed 302 Found in 9ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks.11" for ::1 at 2017-03-25 14:56:14 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.6ms) +Completed 200 OK in 85ms (Views: 68.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 14:56:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"h/9rab8ok2fLkgzaXa6SRkBtOyWirJJiLUgCNRe4HvE1UuIKip/3d4Otj/UZiWMRAayZwQvOwryVMzQHjinsfQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 21:56:23 UTC], ["id", 4]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 9ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 14:56:23 -0700 +Processing by TasksController#index as + 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.8ms) +Completed 200 OK in 65ms (Views: 49.3ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+14%3A56%3A23+-0700" for ::1 at 2017-03-25 14:56:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"bncd19RiWIeD+j34oDwOMEJesp5F5ls7rN6DsvC76Vvc2pS04dU8l8vFvtfkG/9nA58QeuyEC+UUpbWAaSob1w==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 14:56:23 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 14:56:23 -0700"], ["complete", true], ["updated_at", 2017-03-25 21:56:26 UTC], ["id", 4]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 14:56:26 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 70ms (Views: 49.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 14:56:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"KKMfoetRFYl64uBZkm2qvRf+QK/YaMudyKrrjD0XwMWaDpbC3uZxmTLdY3bWSlvqVj/iS3EKm0Nw0d2+pIYySQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"4"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 21:56:27 UTC], ["id", 4]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 14:56:27 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.2ms) +Completed 200 OK in 63ms (Views: 43.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+14%3A56%3A27+-0700" for ::1 at 2017-03-25 14:56:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"sVzY9/Hi44mpkGxH0ML4e2catoOlm4ynLEXiZ+HYrZgD8VGUxFWHmeGv72iU5QksJtsUZwz53HmUPtRVeElfFA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 14:56:27 -0700"}, "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 14:56:27 -0700"], ["complete", true], ["updated_at", 2017-03-25 21:56:39 UTC], ["id", 4]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 14:56:39 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 59ms (Views: 43.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 14:56:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"6FAml9wcpvD32DRVgfuajLkaKY0xysjqdDTfq6AnWxda/a/06avC4L/nt3rF3Gvb+NuLaZiomDTMT+mZObapmw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"4"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 21:56:40 UTC], ["id", 4]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 8ms (ActiveRecord: 4.3ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 14:56:40 -0700 +Processing by TasksController#index as + 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 67ms (Views: 45.7ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 14:56:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"E6uLkFJT8csmQm06l9fyVEcw/wPRel8mcl7FFNLytkShBgLzZ+SV22597hXT8AMDBvFd53gYD/jKJfMmS2NEyA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"12"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 21:56:45 UTC], ["id", 12]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 8ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 14:56:45 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.2ms) +Completed 200 OK in 114ms (Views: 79.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 14:59:30 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.9ms) + Rendered tasks/new.html.erb within layouts/application (6.3ms) +Completed 200 OK in 36ms (Views: 31.5ms | ActiveRecord: 0.0ms) + + From 28f1985c2e93f05a8f59eb06cbb9f4229deb1607 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Sat, 25 Mar 2017 15:31:37 -0700 Subject: [PATCH 20/27] added wave for select option to model and from --- app/models/task.rb | 2 +- app/views/tasks/_form.html.erb | 2 +- app/views/tasks/show.html.erb | 6 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 1332 ++++++++++++++++++++++++++++++++ 5 files changed, 1338 insertions(+), 4 deletions(-) diff --git a/app/models/task.rb b/app/models/task.rb index 80db7c31c..5f5e27bd4 100644 --- a/app/models/task.rb +++ b/app/models/task.rb @@ -1,3 +1,3 @@ class Task < ApplicationRecord - enum title: [:baseline, :wave1, :wave2, :wave3] + enum title: [:baseline, :wave1, :wave2, :wave3, :wave4] end diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index 88c118372..247fb3dfc 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -1,6 +1,6 @@ <%= form_for @task, method: form_method do |f| %> - <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3]])) %> + <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3], ['Wave 4', :wave4]])) %> <%= f.label :name %> <%= f.text_field :name %> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 5424d26f8..41960c98c 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -3,11 +3,13 @@

    <%= @task.title %>

    +beyonce

    <%= @task.id %>. <%= @task.name %>: <%= @task.description %>

    - -beyonce + <% if @task.completion_date != nil %> + Task was completed on: <%= @task.completion_date %> + <% end %> <%= link_to "edit task", edit_task_path(@task) %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index b0c6264c4f35fb93ab3f8ab95bad2ab79f5c11a1..927a7983fed66e656d5ab20293f80eee231f6b75 100644 GIT binary patch literal 28672 zcmeI4PjBPa5x_~yE3fHjwJlHxMcU@Aj3N=T=JJoIe?6qyR9!5(Yp0HVSo9z~iO&{m zid0C-ULRNPC+G+0si$0m9*Ta2B442e@&$sTEfAoW0-brJB+9mc4UofjF|=ig^B&)u z`MsGTDH`+Xub+8|U?*WT<_WWv`--Y6KW9u)l+WR{1+V#b2R>}hci>&keO~wRb7k+p zlTzuiQr!7kDgUhe=X($C{d?!@cmBEV0Fn~{B0vO)01+SpM1Tko0V43-5SXcVwknm1 zdc_ky@I}JovsnHqetg*L9`)E!_wlnHt4djweNgq>Dto$r)O*r9WS<;9ecnBM!G6_y z!Mevs2T%9mpy$2)Bes74uj6OW9Bjv4LcDL;C_D$E(8n0ZZKIv=IR!Km>>Y z5g-CYfCvx)B0vO)01+SpZ#04Xg^ikJm`%gB9HU`2o#y?Gg~YOK%W~TH)rG{g45wu} z8rW1Q{}u25{|0Zg5dk7V1c(3;AOb{y2oM1xKm>>Y5g-C@FoEwEYU=9Ue<3HzZvQvF zSEy}gy|Vj%eEzSNzfj_ydwmN&|5wZZQs9?1B0vO)01+Sp zM1Tko0U|&IhyW2F0z}|#A#ks-yPf;`0H6PF7au6)-`{Jz^VQB5+LzmZxXZV8iVt>v z06+TnpUOWi|FQU&x5a$2g9s1-B0vOQlfbLfT}^Rjj?(R_%5xr_G0w0+6r0yp>bfq7 z2Gb-71D1p=842clal*nA*)e7)2jM7$YEBb=DqxR8C8&#$2-wi~hG)WsJq_?GcY z+OaJAB*(yVLjxWQ=$?$E1a)~oUTEXW!cmLwyB%g(9jggnhUjKOKTWF_skm0o2BR4rR?+fAd@ zT5SQUMniA38;!QPIqN*ol-;Ybq}p@6Bx9P^@>=qOHH=5$MdlzO6!9ARQx{esU|>Na z3752Fm<#3T}XlW;Qiv3%IlcMufggK&y;V6_k| z&LLQgMUg?DsqcdHEH_i09`;|+o1Z{wEUA@r0hl=}Sys|k5m`>hXz8X|w@vs*%a6XK)7CAc4)V=ejcJN`^%20kt9&f0qX9lN702&n3{hb@pA0)#*%1deJatOgO`Uaq z)VGGX2sJ*LMByaz0Af1di6?wF{NSBwEJP*u1$VAVTzQ@5L~wz+(gmBPxk zyc)cxDNklUl#Yfb$J5CqjAZag&sv1$I&3nCkyq-8e28_tmQf7_!n||OopN7VU((WY zb-1rl;gn^y_b@R;B8fbBtO&6O6fr0{2Z zoWkzZTe^i0H?O51%kDT0-LmSY(ViXsSW_;p4kWL|dM%2y!8yo-d@avCi&peUX{=N) z6Qf3pyqcC%lX%kFZ)|YMqG^yOQ0N(P&ySfq=%h12@(;&jpqYlsa`1VIStL8ibArRU z6M`J;3&MM@grb~~&rfyeo1jt7@8$Hw5Z3zc17SpNXL;;x%uxJC>uH zP8|~a`j**?A8E?jmAILg4yEOgDd4;=>)>V6rbH0!f-_>k6Zbq;^ktI_DD)KRImkXi z?@JvUFClcc45{1@nbXUdz2&HExp7K3+d;Mo7>^?GS-4cmxf{+EFSS{QENbL>@x+Hi z=ELV=VQEUH2c+?p)NXYQTQ}Q=Xf&fqO01mbX*+b|i zazibgvw-3J!W`y-EU6p>l4g4CtNY;t$1gl;9(jm^!%%>C0w5Ql@m9^Rg)Tk-l}VFw?NWMtA; z%2x)jQA24S;Fu4KFhomZn43ow=FC^xXOy_YFzt@TNvTjmE6G$D3Yqyd>Ym__aIF<} z!od&w>pQp+g}q_>=MdY-GclWq37@${a!(19M?i!6-1UVfu5yj^4wK0-2Q4R4FxEn? z8$wTb^YnC3+gs_^yFs(n!=3Q_3MJ(WMyO<*@ew5o-Edz?VmOqb$CB9z2dU(SUEqb% zS53&h9l|m}_h6_Vbnqu%evF?q2dn$MpXcM4d63MPhDgKhBU`J))c92UloRf{#?__A zXldod%8ZT-ULVansJaxu^Ku!MSe$uq9Ckw-v~e@frZ5anaGx=|xcm+bURtK$`@_+4vxciFj(GIS#OO;e!F?p1*_EUnQI4~#;6uh z1aLCKDCg$#;G|<$;2lLY)0E3fJd%xHxo`!k;%cUY zu06Ttpp|eG>XhHXcYC;hksqH1M`4~NZNQ#vLAcbOzBF!j$t5L%8&}A~&lUjZa+*9J zd7dck7iP{h;mq~uTZw>AehZE{@w8T+IYbD(ggQrEnb-O7f9r$|02kWl@BS5C-GJ~2 PRdDG<{A>N6nZm-qx*zYV diff --git a/log/development.log b/log/development.log index 6821fdaf2..9348df050 100644 --- a/log/development.log +++ b/log/development.log @@ -11115,3 +11115,1335 @@ Processing by TasksController#new as HTML Completed 200 OK in 36ms (Views: 31.5ms | ActiveRecord: 0.0ms) +Started GET "/tasks/26" for ::1 at 2017-03-25 15:11:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"26"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 86ms (Views: 55.0ms | ActiveRecord: 0.9ms) + + +Started DELETE "/tasks/26" for ::1 at 2017-03-25 15:11:38 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mYLhgqghAQttw4WWqBoNEFSSlIpTRQ6dSQo/GiMGlrErL2jhnZZlGyX8BrnsPfxHFVM2bvonXkPxcQkoupdkPQ==", "id"=>"26"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 26]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:11:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 45ms (Views: 41.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 15:11:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) 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 (1.4ms) +Completed 200 OK in 44ms (Views: 38.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/25" for ::1 at 2017-03-25 15:11:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"+HwCt0pc1RskedV148KcorPp6jJjLs5qxeMuKDce/AZK0YvUf+uxC2xGVlqn5W318ihI1spMnrR9mBgaro8Oig==", "id"=>"25"} + Task Load (12.4ms) 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]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 18ms (ActiveRecord: 14.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:11: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 (6.9ms) +Completed 200 OK in 44ms (Views: 41.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 15:12:30 -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 (3.6ms) +Completed 200 OK in 48ms (Views: 43.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 15:12:32 -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]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.1ms) + Rendered tasks/edit.html.erb within layouts/application (5.4ms) +Completed 200 OK in 45ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/2" for ::1 at 2017-03-25 15:12:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Dgd7ux39uj7kpFOapXLznyNGoWsOlqabuXJ16i9K0WK8qvLYKEreLqyb0LXhVQLIYocDj6f09kUBCUPYttsj7g==", "task"=>{"title"=>"baseline", "name"=>"Create App", "description"=>"Create a new Rails application using `rails new`"}, "commit"=>"edit", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "description" = ?, "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Create a new Rails application using `rails new`"], ["title", 0], ["updated_at", 2017-03-25 22:12:49 UTC], ["id", 2]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.2 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.2" for ::1 at 2017-03-25 15:12:49 -0700 +Processing by TasksController#index as + 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.0ms) +Completed 200 OK in 54ms (Views: 37.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:12:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rHcyK8WtCqomrcSmYTYqe6urePnF+lL7H21RI8a1Q4Ie2rtI8Bpuum6SR4klEdss6mraHWyYAiWnFmcRXySxDg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:12:53 UTC], ["id", 3]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 15:12:53 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 64ms (Views: 47.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A12%3A53+-0700" for ::1 at 2017-03-25 15:15:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WQ5Gdbwf42BiYusXwfUiaWrlM9Z/f6vPUFWaRxd7TSvro88WiaiHcCpdaDiF0tM+KySRMtYd+xHoLqx1juq/pw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:12:53 -0700"}, "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:12:53 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:15:40 UTC], ["id", 1]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 15:15:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 61ms (Views: 44.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:15:41 -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 (2.3ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/show.html.erb:11: syntax error, unexpected keyword_end +ze;@output_buffer.append=( end );@output_buffer.safe_append= + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/show.html.erb:20: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/show.html.erb:22: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:11: syntax error, unexpected keyword_end +app/views/tasks/show.html.erb:20: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:22: syntax error, unexpected keyword_end, expecting ')' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.1ms) +Started GET "/tasks.1" for ::1 at 2017-03-25 15:15:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 56ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:15: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 (2.3ms) +Completed 200 OK in 34ms (Views: 29.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:16:28 -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 26ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 15:16:43 -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/_form.html.erb (3.1ms) + Rendered tasks/edit.html.erb within layouts/application (8.3ms) +Completed 200 OK in 36ms (Views: 29.6ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-25 15:16:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"fP7dTASjWsyKpmlZBeSJAMY6Z3eHkCWUW87HGn6sYrvOU1QvMRQ+3MKZ6nZBw3hXh/vFky7ydUrjtfEo5z2QNw==", "task"=>{"title"=>"baseline", "name"=>"Fork & Clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Fork and clone this repository to your computer"], ["updated_at", 2017-03-25 22:16:46 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 15:16:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 50ms (Views: 34.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 15:16:50 -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.4ms) +Completed 200 OK in 31ms (Views: 25.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:16: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 (7.1ms) +Completed 200 OK in 31ms (Views: 27.1ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/9?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A16%3A58+-0700" for ::1 at 2017-03-25 15:17:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"BIxfrj+9wzwD4F+yym9Z44zDT7Hw1RJlQwCiLoUpY+62IdbNCgqnLEvf3J2OSKi0zQLtVVm3Qrv7e5QcHLiRYg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:16:58 -0700"}, "id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:16:58 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:17:25 UTC], ["id", 9]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.9 +Completed 302 Found in 5ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.9" for ::1 at 2017-03-25 15:17:25 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 61ms (Views: 45.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A17%3A25+-0700" for ::1 at 2017-03-25 15:17:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"zICYaIQa/yrTv5pnW3vrbe23ATXoZWxVv/fQjNp7cDl+LRELsa2bOpuAGUgfXBo6rHaj0UEHPIsHjOa+Q+qCtQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:17:25 -0700"}, "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:17:25 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:17:27 UTC], ["id", 8]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.8 +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.8" for ::1 at 2017-03-25 15:17:27 -0700 +Processing by TasksController#index as + 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 69ms (Views: 53.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/7" for ::1 at 2017-03-25 15:17:31 -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 (1.4ms) +Completed 200 OK in 30ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/7" for ::1 at 2017-03-25 15:17:34 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ES0KORYAQy7ewB6vxrpEpDDx6pgu968WiS5CF4toanSjgINaI7cnPpb/nYCCnbXzcTBIfIeV/8gxVXQlEvmY+A==", "id"=>"7"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.9ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:17:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A17%3A34+-0700" for ::1 at 2017-03-25 15:18:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"G/+9hE2SrY7rzo8glq/5ROnjuBTukjR4/mGm6wkrFdOpUjTneCXJnqPxDA/SiAgTqCIa8EfwZKZGGpDZkLrnXw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:17:34 -0700"}, "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:17:34 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:18:54 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 15:18:54 -0700 +Processing by TasksController#index as + 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 62ms (Views: 45.7ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/11?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A18%3A54+-0700" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GpxN8tM0BE6Z3B3sT8P+eRPeYCTq8cYQQOULCuPOw6moMcSR5oNgXtHjnsML5A8uUh/CwEOTls74nj04el8xJQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:18:54 -0700"}, "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:18:54 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:00 UTC], ["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.11 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.11" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 61ms (Views: 43.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/10?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A00+-0700" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4y7IiEXpDLE6P3xCPs0tHa95soDP8v/e7ySt6+RZ+chRg0HrcF5ooXIA/2166txK7rgQZGaQrwBXX5vZfcgLRA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:00 -0700"}, "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:00 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:00 UTC], ["id", 10]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.10 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.10" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 54ms (Views: 38.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/9?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"em7jXx6CKkaj1SkCGyyxygAAKtiuDfYNXd1HJ2YSD7fIw2o8KzVOVuvqqi1fC0CdQcGIPAdvptPlpnEV/4P9Ow==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:19:01 UTC], ["id", 9]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.9 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.9" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 58ms (Views: 41.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GRSiQfjjkzCWNNt11QXahhc/WjTnPp1WD1spQfGzrViruSsizVT3IN4LWFqRIivRVv740E5czYi3IB9zaCJf1A==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:19:01 UTC], ["id", 8]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.8 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.8" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 55ms (Views: 38.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A01+-0700" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"zJc7KBPtoeCrkmIEPx8cwi2ASg3HPQvwJ2ic8SqujxJ+OrJLJlrF8OOt4St7OO2VbEHo6W5fWy6fE6rDsz99ng==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:01 -0700"}, "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:01 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:03 UTC], ["id", 6]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.6 +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.6" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 75ms (Views: 51.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/5?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A03+-0700" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"di6hMbN9YYeBp/ToIi6iXUG2yP8D2O+AID8lDyTrkwbEgyhShsoFl8mYd8dmCVMKAHdqG6q6v16YRBM9vXphig==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:03 -0700"}, "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:03 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:03 UTC], ["id", 5]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.5 +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks.5" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#index as + 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.6ms) +Completed 200 OK in 59ms (Views: 42.8ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A03+-0700" for ::1 at 2017-03-25 15:19:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"A2lvKbB4WlhxpWBfILaaIo1okQhdfTDSNMBJkCfac9qxxOZKhc8+SDma43BkkWt1zKkz7PQfYAyMu3+ivkuBVg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:03 -0700"}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:03 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:04 UTC], ["id", 4]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 15:19:04 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 58ms (Views: 39.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A04+-0700" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2CTi0ASJKyJROhIYqfUS2Bq57xS/mtwWRxs1JRQXxYRqiWuzMT5PMhkFkTft0uOPW3hN8Bb4jMj/YAMXjYY3CA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:04 -0700"}, "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:04 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:05 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#index as + 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.1ms) +Completed 200 OK in 60ms (Views: 43.3ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/2?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A05+-0700" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"yAX7Up+OOdunKrTLQSzhBJLZTL33JKaKO5tz0nmSDC96qHIxqjldy+8VN+QFCxBT0xjuWV5G9lSD4EXg4AP+ow==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:05 -0700"}, "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:05 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:05 UTC], ["id", 2]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.2 +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks.2" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 58ms (Views: 42.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:19:07 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/new.html.erb within layouts/application (3.8ms) +Completed 200 OK in 29ms (Views: 24.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:19: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 (4.4ms) +Completed 200 OK in 39ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:20:28 -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.9ms) +Completed 200 OK in 29ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/1" for ::1 at 2017-03-25 15:20:31 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"EuruIf/gw/uFCRWn2xL+h+9iH/ZKY4Npl+alh8yCQvygR2dCylen6802loifNQ/QrqO9EuMB07cvnZO1VROwcA==", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 (7.0ms) +Completed 200 OK in 37ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 15:20:33 -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 (1.7ms) +Completed 200 OK in 29ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/2" for ::1 at 2017-03-25 15:20:36 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"shQeY9E/ny40P2IUOYZWh7LFLwoz3ALlsVgzXFqXfp0AuZcA5Ij7PnwA4Tt9oafQ8wSN7pq+UjsJIwVuwwaMEQ==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20:36 -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 36ms (Views: 31.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 15:20:37 -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.5ms) +Completed 200 OK in 28ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/3" for ::1 at 2017-03-25 15:20:40 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"CZJymtDn3cfjvJZaPobQXTQe34pRAQUWpAEO5Zf74nG7P/v55VC516uDFXV6oSEKdd99bvhjVcgcejjXDmoQ/Q==", "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (3.1ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 4.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 (5.3ms) +Completed 200 OK in 37ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for ::1 at 2017-03-25 15:20:41 -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 (1.4ms) +Completed 200 OK in 32ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/4" for ::1 at 2017-03-25 15:20:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"YyZ8VedUj2sJ6tjtwbxOtvtqDbXRH7953TdtC4H+J3nRi/U20uPre0HVW8KFm7/huquvUXh976dlTFs5GG/V9Q==", "id"=>"4"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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.0ms) +Completed 200 OK in 32ms (Views: 29.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 15:20:45 -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.5ms) +Completed 200 OK in 33ms (Views: 29.4ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/5" for ::1 at 2017-03-25 15:20:47 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"PYtEmZV85RXVDc8K4ZvKtuxV/lyAFfEgKW9qs/aL2IWPJs36oMuBBZ0yTCWlvDvhrZRcuCl3of6RFFyBbxoqCQ==", "id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 5]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 (3.8ms) +Completed 200 OK in 29ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 15:20:48 -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 (1.5ms) +Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/6" for ::1 at 2017-03-25 15:20:51 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"sRGA37NZpWTRqG/Fdys7IA20gh0Y6hshN4LqtbpKuZoDvAm8hu7BdJmX7OozDMp3THUg+bGIS/+P+dyHI9tLFg==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 6]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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.1ms) +Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-25 15:20:52 -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 (1.2ms) +Completed 200 OK in 35ms (Views: 30.7ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/8" for ::1 at 2017-03-25 15:20:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"l8YHwj3p4eQe9pusKfx0qNBBdENMlJD+CQisnpn70L8la46hCF6F9FbJGINt24X/kYDWp+X2wCCxc5qsAGoiMw==", "id"=>"8"} + Task Load (1.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 8]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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.8ms) +Completed 200 OK in 33ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9" for ::1 at 2017-03-25 15:20:56 -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 (2.1ms) +Completed 200 OK in 38ms (Views: 34.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/9" for ::1 at 2017-03-25 15:20:59 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"JvJFCZlW4mBmxib8sPAHxvhdxbrOsqbuSHh2eQQ/3AqUX8xqrOGGcC75pdP01/aRuZxnXmfQ9jDwA0BLna4uhg==", "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.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 46ms (Views: 42.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/10" for ::1 at 2017-03-25 15:21:00 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.2ms) +Completed 200 OK in 39ms (Views: 34.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/10" for ::1 at 2017-03-25 15:21:03 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"lEFRYnliDfbdF1oSJXWxbZNnQXVscBcfHGSxJfxMz6om7NgBTNVp5pUo2T1hUkA60qbjkcUSR8GkH4cXZd09Jg==", "id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21: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 (6.8ms) +Completed 200 OK in 58ms (Views: 52.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 15:21:04 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 29ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/11" for ::1 at 2017-03-25 15:21:06 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Xk+g8jM7g64xF8O1fzyXSGHEgxjyqsj9Je4z1QEFa1bs4imRBoznvnkoQJo7G2YfIAUh/FvImCOdlQXnmJSZ2g==", "id"=>"11"} + Task Load (0.3ms) 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.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 32ms (Views: 27.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 15:21:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (1.5ms) +Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/12" for ::1 at 2017-03-25 15:21:10 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"tSYmQqUPylH4w/Xsq2BZzvR9BpxgK9BaOG0n1dAdX+UHi68hkLiuQbD8dsPvR6iZtbykeMlJgISAFhHnSYytaQ==", "id"=>"12"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21: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 (2.5ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:21:13 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/new.html.erb within layouts/application (8.1ms) +Completed 200 OK in 41ms (Views: 35.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:21:46 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PZXlJVPXJ60jkdtWJmWVDgCbDTytObFsEksDO3BFNgqPOGxGZmBDvWuuWHliQmRZQVqv2ARb4bKqMDUJ6dTEhg==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone this repository to your computer", "description"=>""}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Fork and clone this repository to your computer"], ["description", ""], ["created_at", 2017-03-25 22:21:46 UTC], ["updated_at", 2017-03-25 22:21:46 UTC], ["title", 0]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 20.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:21:47 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:22:03 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qm541B4CKMBa6TQ7+4JVBzm0aL7DcoAKiX7Vnl5w2ssYw/G3K7VM0BLWtxS/paRQeHXKWmoQ0NQxBeOsx+EoRw==", "task"=>{"title"=>"baseline", "name"=>"Create a new Rails application using rails new ", "description"=>"create a Tasks controller\r\ncreate a route to view the task index page\r\ncreate a controller action for the task index page which contains an array of hard-coded tasks\r\ncreate an ERB view to display the tasks from the controller action"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (1.0ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Create a new Rails application using rails new "], ["description", "create a Tasks controller\r\ncreate a route to view the task index page\r\ncreate a controller action for the task index page which contains an array of hard-coded tasks\r\ncreate an ERB view to display the tasks from the controller action"], ["created_at", 2017-03-25 22:22:03 UTC], ["updated_at", 2017-03-25 22:22:03 UTC], ["title", 0]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:22:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 15:22:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for ::1 at 2017-03-25 15:22:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (6.8ms) +Completed 200 OK in 36ms (Views: 31.6ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/28" for ::1 at 2017-03-25 15:22:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"IfMHfCKNIUXvbeA+BYEO9tSiicOY9vaLRP2MdS3JH6eTXo4fFzpFVadSYxFBpv+hlWMrJzGUplX8hrpHtFjtKw==", "task"=>{"title"=>"baseline", "name"=>"Create a new Rails application using rails new ", "description"=>"create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."}, "commit"=>"edit", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."], ["updated_at", 2017-03-25 22:22:49 UTC], ["id", 28]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 8ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 15:22:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 50ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:23:03 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.1ms) + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 31ms (Views: 28.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:23:25 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9ZvK8e4tYnurcGM6G9+pdpkigW4sEr9UBEpngVsDhI1HNkOS25oGa+NP4BVf+Fgh2OMjioVw74q8MVGzwpJ2AQ==", "task"=>{"title"=>"wave1", "name"=>"create a migration which will create a new Task model", "description"=>"create the database schema and tables by running the rails db:migrate command\r\nthe Task model should include at least a name, a description and a completion date\r\ncreate at least 2 Task model instances using the rails console"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "create a migration which will create a new Task model"], ["description", "create the database schema and tables by running the rails db:migrate command\r\nthe Task model should include at least a name, a description and a completion date\r\ncreate at least 2 Task model instances using the rails console"], ["created_at", 2017-03-25 22:23:25 UTC], ["updated_at", 2017-03-25 22:23:25 UTC], ["title", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:23: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.1ms) +Completed 200 OK in 28ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:23:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.7ms) + Rendered tasks/new.html.erb within layouts/application (6.9ms) +Completed 200 OK in 32ms (Views: 29.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:23:48 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KIEx1kkf2oR7HjZ69VYQGbRWy6nh8GkidX+NnVeWJvGaLLi1fKi+lDMhtVWxceFO9ZdpTUiSOfzNBLuvzgfUfQ==", "task"=>{"title"=>"baseline", "name"=>"update the controller's index action", "description"=>"update the controller's index action you created to retrieve and show all Task objects from the database\r\nyou may need to update the view as well to use the model fields rather than the hard-coded data\r\n"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "update the controller's index action"], ["description", "update the controller's index action you created to retrieve and show all Task objects from the database\r\nyou may need to update the view as well to use the model fields rather than the hard-coded data\r\n"], ["created_at", 2017-03-25 22:23:48 UTC], ["updated_at", 2017-03-25 22:23:48 UTC], ["title", 0]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:23:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 24ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for ::1 at 2017-03-25 15:23:51 -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.7ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30/edit" for ::1 at 2017-03-25 15:23:53 -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/_form.html.erb (3.5ms) + Rendered tasks/edit.html.erb within layouts/application (7.4ms) +Completed 200 OK in 38ms (Views: 33.8ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/30" for ::1 at 2017-03-25 15:23:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hRQcqHA7oIRfJczCfvlFgNzA3rkjczsiLYYhsEPT8MU3uZXLRYzElBcaT+063rTXnQF8XYoRa/yV/ReC2kICSQ==", "task"=>{"title"=>"wave1", "name"=>"update the controller's index action", "description"=>"update the controller's index action you created to retrieve and show all Task objects from the database\r\nyou may need to update the view as well to use the model fields rather than the hard-coded data\r\n"}, "commit"=>"edit", "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 "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 1], ["updated_at", 2017-03-25 22:23:56 UTC], ["id", 30]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.30 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.30" for ::1 at 2017-03-25 15:23:56 -0700 +Processing by TasksController#index as + 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 48ms (Views: 32.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:24:07 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.1ms) + Rendered tasks/new.html.erb within layouts/application (6.4ms) +Completed 200 OK in 37ms (Views: 34.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:24:23 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"J75zmPquAqW4is3VMmpndd5fi2pUBw1MXTxMS5U0+fKVE/r7zxlmtfC1Tvp2TZYin54pjv1lXZLlR3p5DKULfg==", "task"=>{"title"=>"wave2", "name"=>"add support to show each task", "description"=>"update the task list to link to a show action for each individual task\r\ncreate a route\r\ncreate a controller action\r\ncreate an ERB view"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "add support to show each task"], ["description", "update the task list to link to a show action for each individual task\r\ncreate a route\r\ncreate a controller action\r\ncreate an ERB view"], ["created_at", 2017-03-25 22:24:23 UTC], ["updated_at", 2017-03-25 22:24:23 UTC], ["title", 2]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:24: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 28ms (Views: 24.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:24:25 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.8ms) + Rendered tasks/new.html.erb within layouts/application (8.1ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:24:37 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UVSWsVUBdEW3so8jqP+ue65mc4qFvdseNIc0lLSG7FPj+R/SYLYQVf+NDAzs2F8s76fRbizfi8CM/AKmLRce3w==", "task"=>{"title"=>"baseline", "name"=>"Create a new task:", "description"=>"update the task list to have a link to add a new task\r\nthis will give the user a new page with a form with the appropriate task fields\r\nthe site should take the user back to the task list after the new task is added\r\n"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Create a new task:"], ["description", "update the task list to have a link to add a new task\r\nthis will give the user a new page with a form with the appropriate task fields\r\nthe site should take the user back to the task list after the new task is added\r\n"], ["created_at", 2017-03-25 22:24:37 UTC], ["updated_at", 2017-03-25 22:24:37 UTC], ["title", 0]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:24: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 (6.3ms) +Completed 200 OK in 42ms (Views: 39.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:24:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.4ms) + Rendered tasks/new.html.erb within layouts/application (8.5ms) +Completed 200 OK in 41ms (Views: 38.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:25:08 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ITsGobGXEGRNU/vxDYnSkQ5cLUlH2euejx9BEHu2kEeTlo/ChCB0dAVseN5JriPGT52Pre67u0A3ZHci4idiyw==", "task"=>{"title"=>"wave3", "name"=>"Edit a task", "description"=>"update each task's show page to include an edit link\r\nthis will give the user a new page with a form that is pre-populated with the data about that task\r\nthe site should take the user back to the task's show page after the task is updated\r\n"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Edit a task"], ["description", "update each task's show page to include an edit link\r\nthis will give the user a new page with a form that is pre-populated with the data about that task\r\nthe site should take the user back to the task's show page after the task is updated\r\n"], ["created_at", 2017-03-25 22:25:08 UTC], ["updated_at", 2017-03-25 22:25:08 UTC], ["title", 3]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:25: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 (5.3ms) +Completed 200 OK in 43ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:26:34 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.2ms) + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 40ms (Views: 26.6ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:27:23 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kGfWk0dWhjzA0AuBg5eGcBdHDbX4Ibc/YSnKbTQP02Iiyl/wcuHiLIjviK7HsHcnVoavUVFD5+HZUvxfrZ4h7g==", "task"=>{"title"=>"wave3", "name"=>"Delete a task", "description"=>"On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Delete a task"], ["description", "On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"], ["created_at", 2017-03-25 22:27:23 UTC], ["updated_at", 2017-03-25 22:27:23 UTC], ["title", 3]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:27: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.1ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:27:26 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/new.html.erb within layouts/application (9.0ms) +Completed 200 OK in 38ms (Views: 31.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:27:57 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"LiF8kpAXYQPelclCQx7faggB5Jovq63XCx58MB0iZ+CcjPXxpaAFE5aqSm0HOS49ScBGfobJ/QmzZUoChLOVbA==", "task"=>{"title"=>"baseline", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Mark a task complete"], ["description", "Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"], ["created_at", 2017-03-25 22:27:58 UTC], ["updated_at", 2017-03-25 22:27:58 UTC], ["title", 0]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 12ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:27: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 24ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:28:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 27.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/35/edit" for ::1 at 2017-03-25 15:28:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/edit.html.erb within layouts/application (6.7ms) +Completed 200 OK in 31ms (Views: 26.1ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/35" for ::1 at 2017-03-25 15:28:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7GivgdY3UwOZDoENxjOWd/n6r2+sZeW71EXYZQXzVHJexSbi44A3E9ExAiKCFGcguDsNiwUHtWVsPu5XnGKm/g==", "task"=>{"title"=>"wave3", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"edit", "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (3.8ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 3], ["updated_at", 2017-03-25 22:28:10 UTC], ["id", 35]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 13ms (ActiveRecord: 5.8ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:28:10 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 48ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34" for ::1 at 2017-03-25 15:28:15 -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.3ms) +Completed 200 OK in 31ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/34/edit" for ::1 at 2017-03-25 15:28:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.2ms) + Rendered tasks/edit.html.erb within layouts/application (6.6ms) +Completed 200 OK in 31ms (Views: 26.4ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/34" for ::1 at 2017-03-25 15:28:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SigbW6swiINQYg/dJDgHnoe5cTHSeNgn7ZuX5PwYHHT4hZI4nofskxhdjPJgH/bJxnjT1XsaiPlV4KHWZYnu+A==", "task"=>{"title"=>"wave3", "name"=>"Delete a task", "description"=>"On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"}, "commit"=>"edit", "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-25 15:28:28 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 48ms (Views: 32.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34" for ::1 at 2017-03-25 15:28:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"34"} + Task Load (0.2ms) 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.4ms) +Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +Started GET "/tasks.34" for ::1 at 2017-03-25 15:29:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 52ms (Views: 35.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33" for ::1 at 2017-03-25 15:29:53 -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.8ms) +Completed 200 OK in 32ms (Views: 27.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33/edit" for ::1 at 2017-03-25 15:29:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/edit.html.erb within layouts/application (5.4ms) +Completed 200 OK in 30ms (Views: 24.7ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/33" for ::1 at 2017-03-25 15:29:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CebocacGKb3oUeei7D+Y7plPUM2ksz1y7Q3P42gDwwK7S2ESkrFNraBuZI2oGGm52I7yKQ3RbaxVdvnR8ZIxjg==", "task"=>{"title"=>"wave4", "name"=>"Edit a task", "description"=>"update each task's show page to include an edit link\r\nthis will give the user a new page with a form that is pre-populated with the data about that task\r\nthe site should take the user back to the task's show page after the task is updated\r\n"}, "commit"=>"edit", "id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 4], ["updated_at", 2017-03-25 22:29:59 UTC], ["id", 33]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.33 +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.33" for ::1 at 2017-03-25 15:29:59 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 52ms (Views: 35.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34" for ::1 at 2017-03-25 15:30:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"34"} + Task Load (0.2ms) 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.2ms) +Completed 200 OK in 30ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34/edit" for ::1 at 2017-03-25 15:30:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"34"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (8.7ms) + Rendered tasks/edit.html.erb within layouts/application (13.4ms) +Completed 200 OK in 39ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/34" for ::1 at 2017-03-25 15:30:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"IX3dc+LJD9sAZpVAFRO3vHqTcvG2rMKAZlRbScPbkzST0FQQ135ry0hZFm9RNEbrO1LQFR/Okl7eL217WkphuA==", "task"=>{"title"=>"wave4", "name"=>"Delete a task", "description"=>"On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"}, "commit"=>"edit", "id"=>"34"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 4], ["updated_at", 2017-03-25 22:30:06 UTC], ["id", 34]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 7ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-25 15:30:06 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 48ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:30:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 30ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35/edit" for ::1 at 2017-03-25 15:30:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.9ms) + Rendered tasks/edit.html.erb within layouts/application (7.4ms) +Completed 200 OK in 36ms (Views: 30.9ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/35" for ::1 at 2017-03-25 15:30:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"MFwkggoVJV8oOmoO1OSdUrfqrlmfGDyqooyi+ClursqC8a3hP6JBT2AF6SGQw2wF9isMvTZ6bHQa95TKsP9cRg==", "task"=>{"title"=>"wave4", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"edit", "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 4], ["updated_at", 2017-03-25 22:30:15 UTC], ["id", 35]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:30:15 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 50ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + From 6b445c9e1b5d83f8e1c56ad5b072b8519f867e4c Mon Sep 17 00:00:00 2001 From: Ashtn Date: Sat, 25 Mar 2017 15:31:37 -0700 Subject: [PATCH 21/27] added wave4 to select option in model and form --- app/models/task.rb | 2 +- app/views/tasks/_form.html.erb | 2 +- app/views/tasks/show.html.erb | 6 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 1332 ++++++++++++++++++++++++++++++++ 5 files changed, 1338 insertions(+), 4 deletions(-) diff --git a/app/models/task.rb b/app/models/task.rb index 80db7c31c..5f5e27bd4 100644 --- a/app/models/task.rb +++ b/app/models/task.rb @@ -1,3 +1,3 @@ class Task < ApplicationRecord - enum title: [:baseline, :wave1, :wave2, :wave3] + enum title: [:baseline, :wave1, :wave2, :wave3, :wave4] end diff --git a/app/views/tasks/_form.html.erb b/app/views/tasks/_form.html.erb index 88c118372..247fb3dfc 100644 --- a/app/views/tasks/_form.html.erb +++ b/app/views/tasks/_form.html.erb @@ -1,6 +1,6 @@ <%= form_for @task, method: form_method do |f| %> - <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3]])) %> + <%= f.select(:title, options_for_select([['Baseline', :baseline], ['Wave 1', :wave1], [ 'Wave 2', :wave2], ['Wave 3', :wave3], ['Wave 4', :wave4]])) %> <%= f.label :name %> <%= f.text_field :name %> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 5424d26f8..41960c98c 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -3,11 +3,13 @@

    <%= @task.title %>

    +beyonce

    <%= @task.id %>. <%= @task.name %>: <%= @task.description %>

    - -beyonce + <% if @task.completion_date != nil %> + Task was completed on: <%= @task.completion_date %> + <% end %> <%= link_to "edit task", edit_task_path(@task) %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index b0c6264c4f35fb93ab3f8ab95bad2ab79f5c11a1..927a7983fed66e656d5ab20293f80eee231f6b75 100644 GIT binary patch literal 28672 zcmeI4PjBPa5x_~yE3fHjwJlHxMcU@Aj3N=T=JJoIe?6qyR9!5(Yp0HVSo9z~iO&{m zid0C-ULRNPC+G+0si$0m9*Ta2B442e@&$sTEfAoW0-brJB+9mc4UofjF|=ig^B&)u z`MsGTDH`+Xub+8|U?*WT<_WWv`--Y6KW9u)l+WR{1+V#b2R>}hci>&keO~wRb7k+p zlTzuiQr!7kDgUhe=X($C{d?!@cmBEV0Fn~{B0vO)01+SpM1Tko0V43-5SXcVwknm1 zdc_ky@I}JovsnHqetg*L9`)E!_wlnHt4djweNgq>Dto$r)O*r9WS<;9ecnBM!G6_y z!Mevs2T%9mpy$2)Bes74uj6OW9Bjv4LcDL;C_D$E(8n0ZZKIv=IR!Km>>Y z5g-CYfCvx)B0vO)01+SpZ#04Xg^ikJm`%gB9HU`2o#y?Gg~YOK%W~TH)rG{g45wu} z8rW1Q{}u25{|0Zg5dk7V1c(3;AOb{y2oM1xKm>>Y5g-C@FoEwEYU=9Ue<3HzZvQvF zSEy}gy|Vj%eEzSNzfj_ydwmN&|5wZZQs9?1B0vO)01+Sp zM1Tko0U|&IhyW2F0z}|#A#ks-yPf;`0H6PF7au6)-`{Jz^VQB5+LzmZxXZV8iVt>v z06+TnpUOWi|FQU&x5a$2g9s1-B0vOQlfbLfT}^Rjj?(R_%5xr_G0w0+6r0yp>bfq7 z2Gb-71D1p=842clal*nA*)e7)2jM7$YEBb=DqxR8C8&#$2-wi~hG)WsJq_?GcY z+OaJAB*(yVLjxWQ=$?$E1a)~oUTEXW!cmLwyB%g(9jggnhUjKOKTWF_skm0o2BR4rR?+fAd@ zT5SQUMniA38;!QPIqN*ol-;Ybq}p@6Bx9P^@>=qOHH=5$MdlzO6!9ARQx{esU|>Na z3752Fm<#3T}XlW;Qiv3%IlcMufggK&y;V6_k| z&LLQgMUg?DsqcdHEH_i09`;|+o1Z{wEUA@r0hl=}Sys|k5m`>hXz8X|w@vs*%a6XK)7CAc4)V=ejcJN`^%20kt9&f0qX9lN702&n3{hb@pA0)#*%1deJatOgO`Uaq z)VGGX2sJ*LMByaz0Af1di6?wF{NSBwEJP*u1$VAVTzQ@5L~wz+(gmBPxk zyc)cxDNklUl#Yfb$J5CqjAZag&sv1$I&3nCkyq-8e28_tmQf7_!n||OopN7VU((WY zb-1rl;gn^y_b@R;B8fbBtO&6O6fr0{2Z zoWkzZTe^i0H?O51%kDT0-LmSY(ViXsSW_;p4kWL|dM%2y!8yo-d@avCi&peUX{=N) z6Qf3pyqcC%lX%kFZ)|YMqG^yOQ0N(P&ySfq=%h12@(;&jpqYlsa`1VIStL8ibArRU z6M`J;3&MM@grb~~&rfyeo1jt7@8$Hw5Z3zc17SpNXL;;x%uxJC>uH zP8|~a`j**?A8E?jmAILg4yEOgDd4;=>)>V6rbH0!f-_>k6Zbq;^ktI_DD)KRImkXi z?@JvUFClcc45{1@nbXUdz2&HExp7K3+d;Mo7>^?GS-4cmxf{+EFSS{QENbL>@x+Hi z=ELV=VQEUH2c+?p)NXYQTQ}Q=Xf&fqO01mbX*+b|i zazibgvw-3J!W`y-EU6p>l4g4CtNY;t$1gl;9(jm^!%%>C0w5Ql@m9^Rg)Tk-l}VFw?NWMtA; z%2x)jQA24S;Fu4KFhomZn43ow=FC^xXOy_YFzt@TNvTjmE6G$D3Yqyd>Ym__aIF<} z!od&w>pQp+g}q_>=MdY-GclWq37@${a!(19M?i!6-1UVfu5yj^4wK0-2Q4R4FxEn? z8$wTb^YnC3+gs_^yFs(n!=3Q_3MJ(WMyO<*@ew5o-Edz?VmOqb$CB9z2dU(SUEqb% zS53&h9l|m}_h6_Vbnqu%evF?q2dn$MpXcM4d63MPhDgKhBU`J))c92UloRf{#?__A zXldod%8ZT-ULVansJaxu^Ku!MSe$uq9Ckw-v~e@frZ5anaGx=|xcm+bURtK$`@_+4vxciFj(GIS#OO;e!F?p1*_EUnQI4~#;6uh z1aLCKDCg$#;G|<$;2lLY)0E3fJd%xHxo`!k;%cUY zu06Ttpp|eG>XhHXcYC;hksqH1M`4~NZNQ#vLAcbOzBF!j$t5L%8&}A~&lUjZa+*9J zd7dck7iP{h;mq~uTZw>AehZE{@w8T+IYbD(ggQrEnb-O7f9r$|02kWl@BS5C-GJ~2 PRdDG<{A>N6nZm-qx*zYV diff --git a/log/development.log b/log/development.log index 6821fdaf2..9348df050 100644 --- a/log/development.log +++ b/log/development.log @@ -11115,3 +11115,1335 @@ Processing by TasksController#new as HTML Completed 200 OK in 36ms (Views: 31.5ms | ActiveRecord: 0.0ms) +Started GET "/tasks/26" for ::1 at 2017-03-25 15:11:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"26"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.3ms) +Completed 200 OK in 86ms (Views: 55.0ms | ActiveRecord: 0.9ms) + + +Started DELETE "/tasks/26" for ::1 at 2017-03-25 15:11:38 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"mYLhgqghAQttw4WWqBoNEFSSlIpTRQ6dSQo/GiMGlrErL2jhnZZlGyX8BrnsPfxHFVM2bvonXkPxcQkoupdkPQ==", "id"=>"26"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 26], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 26]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:11:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 45ms (Views: 41.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/25" for ::1 at 2017-03-25 15:11:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"25"} + Task Load (0.2ms) 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 (1.4ms) +Completed 200 OK in 44ms (Views: 38.3ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/25" for ::1 at 2017-03-25 15:11:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"+HwCt0pc1RskedV148KcorPp6jJjLs5qxeMuKDce/AZK0YvUf+uxC2xGVlqn5W318ihI1spMnrR9mBgaro8Oig==", "id"=>"25"} + Task Load (12.4ms) 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]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 18ms (ActiveRecord: 14.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:11: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 (6.9ms) +Completed 200 OK in 44ms (Views: 41.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 15:12:30 -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 (3.6ms) +Completed 200 OK in 48ms (Views: 43.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2/edit" for ::1 at 2017-03-25 15:12:32 -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]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.1ms) + Rendered tasks/edit.html.erb within layouts/application (5.4ms) +Completed 200 OK in 45ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/2" for ::1 at 2017-03-25 15:12:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Dgd7ux39uj7kpFOapXLznyNGoWsOlqabuXJ16i9K0WK8qvLYKEreLqyb0LXhVQLIYocDj6f09kUBCUPYttsj7g==", "task"=>{"title"=>"baseline", "name"=>"Create App", "description"=>"Create a new Rails application using `rails new`"}, "commit"=>"edit", "id"=>"2"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "description" = ?, "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Create a new Rails application using `rails new`"], ["title", 0], ["updated_at", 2017-03-25 22:12:49 UTC], ["id", 2]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.2 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.2" for ::1 at 2017-03-25 15:12:49 -0700 +Processing by TasksController#index as + 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.0ms) +Completed 200 OK in 54ms (Views: 37.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:12:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rHcyK8WtCqomrcSmYTYqe6urePnF+lL7H21RI8a1Q4Ie2rtI8Bpuum6SR4klEdss6mraHWyYAiWnFmcRXySxDg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"3"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:12:53 UTC], ["id", 3]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 15:12:53 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 64ms (Views: 47.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/1?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A12%3A53+-0700" for ::1 at 2017-03-25 15:15:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WQ5Gdbwf42BiYusXwfUiaWrlM9Z/f6vPUFWaRxd7TSvro88WiaiHcCpdaDiF0tM+KySRMtYd+xHoLqx1juq/pw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:12:53 -0700"}, "id"=>"1"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:12:53 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:15:40 UTC], ["id", 1]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 15:15:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 61ms (Views: 44.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:15:41 -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 (2.3ms) +Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.2ms) + + + +SyntaxError (/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/show.html.erb:11: syntax error, unexpected keyword_end +ze;@output_buffer.append=( end );@output_buffer.safe_append= + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/show.html.erb:20: syntax error, unexpected keyword_ensure, expecting ')' + ensure + ^ +/Users/ashtn/ADA/Projects/TaskList/app/views/tasks/show.html.erb:22: syntax error, unexpected keyword_end, expecting ')' + end + ^): + +app/views/tasks/show.html.erb:11: syntax error, unexpected keyword_end +app/views/tasks/show.html.erb:20: syntax error, unexpected keyword_ensure, expecting ')' +app/views/tasks/show.html.erb:22: syntax error, unexpected keyword_end, expecting ')' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.1ms) +Started GET "/tasks.1" for ::1 at 2017-03-25 15:15:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 56ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:15: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 (2.3ms) +Completed 200 OK in 34ms (Views: 29.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:16:28 -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 26ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/1/edit" for ::1 at 2017-03-25 15:16:43 -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/_form.html.erb (3.1ms) + Rendered tasks/edit.html.erb within layouts/application (8.3ms) +Completed 200 OK in 36ms (Views: 29.6ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/1" for ::1 at 2017-03-25 15:16:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"fP7dTASjWsyKpmlZBeSJAMY6Z3eHkCWUW87HGn6sYrvOU1QvMRQ+3MKZ6nZBw3hXh/vFky7ydUrjtfEo5z2QNw==", "task"=>{"title"=>"baseline", "name"=>"Fork & Clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Fork and clone this repository to your computer"], ["updated_at", 2017-03-25 22:16:46 UTC], ["id", 1]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.1 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.1" for ::1 at 2017-03-25 15:16:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 50ms (Views: 34.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 15:16:50 -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.4ms) +Completed 200 OK in 31ms (Views: 25.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:16: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 (7.1ms) +Completed 200 OK in 31ms (Views: 27.1ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/9?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A16%3A58+-0700" for ::1 at 2017-03-25 15:17:25 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"BIxfrj+9wzwD4F+yym9Z44zDT7Hw1RJlQwCiLoUpY+62IdbNCgqnLEvf3J2OSKi0zQLtVVm3Qrv7e5QcHLiRYg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:16:58 -0700"}, "id"=>"9"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:16:58 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:17:25 UTC], ["id", 9]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.9 +Completed 302 Found in 5ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.9" for ::1 at 2017-03-25 15:17:25 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.5ms) +Completed 200 OK in 61ms (Views: 45.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A17%3A25+-0700" for ::1 at 2017-03-25 15:17:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"zICYaIQa/yrTv5pnW3vrbe23ATXoZWxVv/fQjNp7cDl+LRELsa2bOpuAGUgfXBo6rHaj0UEHPIsHjOa+Q+qCtQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:17:25 -0700"}, "id"=>"8"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:17:25 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:17:27 UTC], ["id", 8]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.8 +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.8" for ::1 at 2017-03-25 15:17:27 -0700 +Processing by TasksController#index as + 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 69ms (Views: 53.5ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/7" for ::1 at 2017-03-25 15:17:31 -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 (1.4ms) +Completed 200 OK in 30ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/7" for ::1 at 2017-03-25 15:17:34 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"ES0KORYAQy7ewB6vxrpEpDDx6pgu968WiS5CF4toanSjgINaI7cnPpb/nYCCnbXzcTBIfIeV/8gxVXQlEvmY+A==", "id"=>"7"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 7], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.9ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 7]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:17:34 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 24ms (Views: 20.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/12?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A17%3A34+-0700" for ::1 at 2017-03-25 15:18:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"G/+9hE2SrY7rzo8glq/5ROnjuBTukjR4/mGm6wkrFdOpUjTneCXJnqPxDA/SiAgTqCIa8EfwZKZGGpDZkLrnXw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:17:34 -0700"}, "id"=>"12"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:17:34 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:18:54 UTC], ["id", 12]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.12 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.12" for ::1 at 2017-03-25 15:18:54 -0700 +Processing by TasksController#index as + 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 62ms (Views: 45.7ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/11?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A18%3A54+-0700" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GpxN8tM0BE6Z3B3sT8P+eRPeYCTq8cYQQOULCuPOw6moMcSR5oNgXtHjnsML5A8uUh/CwEOTls74nj04el8xJQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:18:54 -0700"}, "id"=>"11"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 11], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:18:54 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:00 UTC], ["id", 11]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.11 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.11" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 61ms (Views: 43.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/10?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A00+-0700" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4y7IiEXpDLE6P3xCPs0tHa95soDP8v/e7ySt6+RZ+chRg0HrcF5ooXIA/2166txK7rgQZGaQrwBXX5vZfcgLRA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:00 -0700"}, "id"=>"10"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:00 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:00 UTC], ["id", 10]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.10 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.10" for ::1 at 2017-03-25 15:19:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 54ms (Views: 38.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/9?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"em7jXx6CKkaj1SkCGyyxygAAKtiuDfYNXd1HJ2YSD7fIw2o8KzVOVuvqqi1fC0CdQcGIPAdvptPlpnEV/4P9Ow==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"9"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 9], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:19:01 UTC], ["id", 9]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.9 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.9" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 58ms (Views: 41.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/8?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GRSiQfjjkzCWNNt11QXahhc/WjTnPp1WD1spQfGzrViruSsizVT3IN4LWFqRIivRVv740E5czYi3IB9zaCJf1A==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:19:01 UTC], ["id", 8]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.8 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.8" for ::1 at 2017-03-25 15:19:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 55ms (Views: 38.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/6?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A01+-0700" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"zJc7KBPtoeCrkmIEPx8cwi2ASg3HPQvwJ2ic8SqujxJ+OrJLJlrF8OOt4St7OO2VbEHo6W5fWy6fE6rDsz99ng==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:01 -0700"}, "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:01 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:03 UTC], ["id", 6]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.6 +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.6" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 75ms (Views: 51.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/5?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A03+-0700" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"di6hMbN9YYeBp/ToIi6iXUG2yP8D2O+AID8lDyTrkwbEgyhShsoFl8mYd8dmCVMKAHdqG6q6v16YRBM9vXphig==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:03 -0700"}, "id"=>"5"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:03 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:03 UTC], ["id", 5]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.5 +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks.5" for ::1 at 2017-03-25 15:19:03 -0700 +Processing by TasksController#index as + 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.6ms) +Completed 200 OK in 59ms (Views: 42.8ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/4?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A03+-0700" for ::1 at 2017-03-25 15:19:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"A2lvKbB4WlhxpWBfILaaIo1okQhdfTDSNMBJkCfac9qxxOZKhc8+SDma43BkkWt1zKkz7PQfYAyMu3+ivkuBVg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:03 -0700"}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:03 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:04 UTC], ["id", 4]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks.4 +Completed 302 Found in 4ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.4" for ::1 at 2017-03-25 15:19:04 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 58ms (Views: 39.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/3?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A04+-0700" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2CTi0ASJKyJROhIYqfUS2Bq57xS/mtwWRxs1JRQXxYRqiWuzMT5PMhkFkTft0uOPW3hN8Bb4jMj/YAMXjYY3CA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:04 -0700"}, "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:04 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:05 UTC], ["id", 3]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.3 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.3" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#index as + 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.1ms) +Completed 200 OK in 60ms (Views: 43.3ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/2?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A19%3A05+-0700" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"yAX7Up+OOdunKrTLQSzhBJLZTL33JKaKO5tz0nmSDC96qHIxqjldy+8VN+QFCxBT0xjuWV5G9lSD4EXg4AP+ow==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:19:05 -0700"}, "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:19:05 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:19:05 UTC], ["id", 2]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.2 +Completed 302 Found in 4ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks.2" for ::1 at 2017-03-25 15:19:05 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 58ms (Views: 42.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:19:07 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/new.html.erb within layouts/application (3.8ms) +Completed 200 OK in 29ms (Views: 24.6ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:19: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 (4.4ms) +Completed 200 OK in 39ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/1" for ::1 at 2017-03-25 15:20:28 -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.9ms) +Completed 200 OK in 29ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/1" for ::1 at 2017-03-25 15:20:31 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"EuruIf/gw/uFCRWn2xL+h+9iH/ZKY4Npl+alh8yCQvygR2dCylen6802loifNQ/QrqO9EuMB07cvnZO1VROwcA==", "id"=>"1"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 1]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 (7.0ms) +Completed 200 OK in 37ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-25 15:20:33 -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 (1.7ms) +Completed 200 OK in 29ms (Views: 24.8ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/2" for ::1 at 2017-03-25 15:20:36 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"shQeY9E/ny40P2IUOYZWh7LFLwoz3ALlsVgzXFqXfp0AuZcA5Ij7PnwA4Tt9oafQ8wSN7pq+UjsJIwVuwwaMEQ==", "id"=>"2"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 2]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20:36 -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 36ms (Views: 31.4ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/3" for ::1 at 2017-03-25 15:20:37 -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.5ms) +Completed 200 OK in 28ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/3" for ::1 at 2017-03-25 15:20:40 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"CZJymtDn3cfjvJZaPobQXTQe34pRAQUWpAEO5Zf74nG7P/v55VC516uDFXV6oSEKdd99bvhjVcgcejjXDmoQ/Q==", "id"=>"3"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 3], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (3.1ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 3]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 4.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 (5.3ms) +Completed 200 OK in 37ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/4" for ::1 at 2017-03-25 15:20:41 -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 (1.4ms) +Completed 200 OK in 32ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/4" for ::1 at 2017-03-25 15:20:43 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"YyZ8VedUj2sJ6tjtwbxOtvtqDbXRH7953TdtC4H+J3nRi/U20uPre0HVW8KFm7/huquvUXh976dlTFs5GG/V9Q==", "id"=>"4"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 4], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 4]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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.0ms) +Completed 200 OK in 32ms (Views: 29.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/5" for ::1 at 2017-03-25 15:20:45 -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.5ms) +Completed 200 OK in 33ms (Views: 29.4ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/5" for ::1 at 2017-03-25 15:20:47 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"PYtEmZV85RXVDc8K4ZvKtuxV/lyAFfEgKW9qs/aL2IWPJs36oMuBBZ0yTCWlvDvhrZRcuCl3of6RFFyBbxoqCQ==", "id"=>"5"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 5], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 5]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 (3.8ms) +Completed 200 OK in 29ms (Views: 27.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/6" for ::1 at 2017-03-25 15:20:48 -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 (1.5ms) +Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/6" for ::1 at 2017-03-25 15:20:51 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"sRGA37NZpWTRqG/Fdys7IA20gh0Y6hshN4LqtbpKuZoDvAm8hu7BdJmX7OozDMp3THUg+bGIS/+P+dyHI9tLFg==", "id"=>"6"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 6], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 6]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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.1ms) +Completed 200 OK in 30ms (Views: 27.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/8" for ::1 at 2017-03-25 15:20:52 -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 (1.2ms) +Completed 200 OK in 35ms (Views: 30.7ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/8" for ::1 at 2017-03-25 15:20:55 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"l8YHwj3p4eQe9pusKfx0qNBBdENMlJD+CQisnpn70L8la46hCF6F9FbJGINt24X/kYDWp+X2wCCxc5qsAGoiMw==", "id"=>"8"} + Task Load (1.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 8], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 8]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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.8ms) +Completed 200 OK in 33ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/9" for ::1 at 2017-03-25 15:20:56 -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 (2.1ms) +Completed 200 OK in 38ms (Views: 34.8ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/9" for ::1 at 2017-03-25 15:20:59 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"JvJFCZlW4mBmxib8sPAHxvhdxbrOsqbuSHh2eQQ/3AqUX8xqrOGGcC75pdP01/aRuZxnXmfQ9jDwA0BLna4uhg==", "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.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:20: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 46ms (Views: 42.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/10" for ::1 at 2017-03-25 15:21:00 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.2ms) +Completed 200 OK in 39ms (Views: 34.6ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/10" for ::1 at 2017-03-25 15:21:03 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"lEFRYnliDfbdF1oSJXWxbZNnQXVscBcfHGSxJfxMz6om7NgBTNVp5pUo2T1hUkA60qbjkcUSR8GkH4cXZd09Jg==", "id"=>"10"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 10], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 10]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21: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 (6.8ms) +Completed 200 OK in 58ms (Views: 52.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/11" for ::1 at 2017-03-25 15:21:04 -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]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 29ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/11" for ::1 at 2017-03-25 15:21:06 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"Xk+g8jM7g64xF8O1fzyXSGHEgxjyqsj9Je4z1QEFa1bs4imRBoznvnkoQJo7G2YfIAUh/FvImCOdlQXnmJSZ2g==", "id"=>"11"} + Task Load (0.3ms) 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.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.7ms) +Completed 200 OK in 32ms (Views: 27.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/12" for ::1 at 2017-03-25 15:21:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"12"} + Task Load (0.2ms) 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 (1.5ms) +Completed 200 OK in 34ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/12" for ::1 at 2017-03-25 15:21:10 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"tSYmQqUPylH4w/Xsq2BZzvR9BpxgK9BaOG0n1dAdX+UHi68hkLiuQbD8dsPvR6iZtbykeMlJgISAFhHnSYytaQ==", "id"=>"12"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 12], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 12]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21: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 (2.5ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:21:13 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.0ms) + Rendered tasks/new.html.erb within layouts/application (8.1ms) +Completed 200 OK in 41ms (Views: 35.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:21:46 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PZXlJVPXJ60jkdtWJmWVDgCbDTytObFsEksDO3BFNgqPOGxGZmBDvWuuWHliQmRZQVqv2ARb4bKqMDUJ6dTEhg==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone this repository to your computer", "description"=>""}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Fork and clone this repository to your computer"], ["description", ""], ["created_at", 2017-03-25 22:21:46 UTC], ["updated_at", 2017-03-25 22:21:46 UTC], ["title", 0]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:21:46 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.1ms) +Completed 200 OK in 24ms (Views: 20.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:21:47 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:22:03 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qm541B4CKMBa6TQ7+4JVBzm0aL7DcoAKiX7Vnl5w2ssYw/G3K7VM0BLWtxS/paRQeHXKWmoQ0NQxBeOsx+EoRw==", "task"=>{"title"=>"baseline", "name"=>"Create a new Rails application using rails new ", "description"=>"create a Tasks controller\r\ncreate a route to view the task index page\r\ncreate a controller action for the task index page which contains an array of hard-coded tasks\r\ncreate an ERB view to display the tasks from the controller action"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (1.0ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Create a new Rails application using rails new "], ["description", "create a Tasks controller\r\ncreate a route to view the task index page\r\ncreate a controller action for the task index page which contains an array of hard-coded tasks\r\ncreate an ERB view to display the tasks from the controller action"], ["created_at", 2017-03-25 22:22:03 UTC], ["updated_at", 2017-03-25 22:22:03 UTC], ["title", 0]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:22:03 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 15:22:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 30ms (Views: 27.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for ::1 at 2017-03-25 15:22:12 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (6.8ms) +Completed 200 OK in 36ms (Views: 31.6ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/28" for ::1 at 2017-03-25 15:22:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"IfMHfCKNIUXvbeA+BYEO9tSiicOY9vaLRP2MdS3JH6eTXo4fFzpFVadSYxFBpv+hlWMrJzGUplX8hrpHtFjtKw==", "task"=>{"title"=>"baseline", "name"=>"Create a new Rails application using rails new ", "description"=>"create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."}, "commit"=>"edit", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."], ["updated_at", 2017-03-25 22:22:49 UTC], ["id", 28]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 8ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 15:22:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (1.8ms) +Completed 200 OK in 50ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:23:03 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.1ms) + Rendered tasks/new.html.erb within layouts/application (7.6ms) +Completed 200 OK in 31ms (Views: 28.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:23:25 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"9ZvK8e4tYnurcGM6G9+pdpkigW4sEr9UBEpngVsDhI1HNkOS25oGa+NP4BVf+Fgh2OMjioVw74q8MVGzwpJ2AQ==", "task"=>{"title"=>"wave1", "name"=>"create a migration which will create a new Task model", "description"=>"create the database schema and tables by running the rails db:migrate command\r\nthe Task model should include at least a name, a description and a completion date\r\ncreate at least 2 Task model instances using the rails console"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "create a migration which will create a new Task model"], ["description", "create the database schema and tables by running the rails db:migrate command\r\nthe Task model should include at least a name, a description and a completion date\r\ncreate at least 2 Task model instances using the rails console"], ["created_at", 2017-03-25 22:23:25 UTC], ["updated_at", 2017-03-25 22:23:25 UTC], ["title", 1]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:23: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.1ms) +Completed 200 OK in 28ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:23:27 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.7ms) + Rendered tasks/new.html.erb within layouts/application (6.9ms) +Completed 200 OK in 32ms (Views: 29.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:23:48 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"KIEx1kkf2oR7HjZ69VYQGbRWy6nh8GkidX+NnVeWJvGaLLi1fKi+lDMhtVWxceFO9ZdpTUiSOfzNBLuvzgfUfQ==", "task"=>{"title"=>"baseline", "name"=>"update the controller's index action", "description"=>"update the controller's index action you created to retrieve and show all Task objects from the database\r\nyou may need to update the view as well to use the model fields rather than the hard-coded data\r\n"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "update the controller's index action"], ["description", "update the controller's index action you created to retrieve and show all Task objects from the database\r\nyou may need to update the view as well to use the model fields rather than the hard-coded data\r\n"], ["created_at", 2017-03-25 22:23:48 UTC], ["updated_at", 2017-03-25 22:23:48 UTC], ["title", 0]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:23:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.4ms) +Completed 200 OK in 24ms (Views: 20.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for ::1 at 2017-03-25 15:23:51 -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.7ms) +Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30/edit" for ::1 at 2017-03-25 15:23:53 -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/_form.html.erb (3.5ms) + Rendered tasks/edit.html.erb within layouts/application (7.4ms) +Completed 200 OK in 38ms (Views: 33.8ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/30" for ::1 at 2017-03-25 15:23:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"hRQcqHA7oIRfJczCfvlFgNzA3rkjczsiLYYhsEPT8MU3uZXLRYzElBcaT+063rTXnQF8XYoRa/yV/ReC2kICSQ==", "task"=>{"title"=>"wave1", "name"=>"update the controller's index action", "description"=>"update the controller's index action you created to retrieve and show all Task objects from the database\r\nyou may need to update the view as well to use the model fields rather than the hard-coded data\r\n"}, "commit"=>"edit", "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 "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 1], ["updated_at", 2017-03-25 22:23:56 UTC], ["id", 30]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.30 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.30" for ::1 at 2017-03-25 15:23:56 -0700 +Processing by TasksController#index as + 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 48ms (Views: 32.1ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:24:07 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.1ms) + Rendered tasks/new.html.erb within layouts/application (6.4ms) +Completed 200 OK in 37ms (Views: 34.2ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:24:23 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"J75zmPquAqW4is3VMmpndd5fi2pUBw1MXTxMS5U0+fKVE/r7zxlmtfC1Tvp2TZYin54pjv1lXZLlR3p5DKULfg==", "task"=>{"title"=>"wave2", "name"=>"add support to show each task", "description"=>"update the task list to link to a show action for each individual task\r\ncreate a route\r\ncreate a controller action\r\ncreate an ERB view"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "add support to show each task"], ["description", "update the task list to link to a show action for each individual task\r\ncreate a route\r\ncreate a controller action\r\ncreate an ERB view"], ["created_at", 2017-03-25 22:24:23 UTC], ["updated_at", 2017-03-25 22:24:23 UTC], ["title", 2]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:24: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 28ms (Views: 24.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:24:25 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.8ms) + Rendered tasks/new.html.erb within layouts/application (8.1ms) +Completed 200 OK in 33ms (Views: 30.5ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:24:37 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UVSWsVUBdEW3so8jqP+ue65mc4qFvdseNIc0lLSG7FPj+R/SYLYQVf+NDAzs2F8s76fRbizfi8CM/AKmLRce3w==", "task"=>{"title"=>"baseline", "name"=>"Create a new task:", "description"=>"update the task list to have a link to add a new task\r\nthis will give the user a new page with a form with the appropriate task fields\r\nthe site should take the user back to the task list after the new task is added\r\n"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Create a new task:"], ["description", "update the task list to have a link to add a new task\r\nthis will give the user a new page with a form with the appropriate task fields\r\nthe site should take the user back to the task list after the new task is added\r\n"], ["created_at", 2017-03-25 22:24:37 UTC], ["updated_at", 2017-03-25 22:24:37 UTC], ["title", 0]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 3ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:24: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 (6.3ms) +Completed 200 OK in 42ms (Views: 39.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:24:48 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.4ms) + Rendered tasks/new.html.erb within layouts/application (8.5ms) +Completed 200 OK in 41ms (Views: 38.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:25:08 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"ITsGobGXEGRNU/vxDYnSkQ5cLUlH2euejx9BEHu2kEeTlo/ChCB0dAVseN5JriPGT52Pre67u0A3ZHci4idiyw==", "task"=>{"title"=>"wave3", "name"=>"Edit a task", "description"=>"update each task's show page to include an edit link\r\nthis will give the user a new page with a form that is pre-populated with the data about that task\r\nthe site should take the user back to the task's show page after the task is updated\r\n"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Edit a task"], ["description", "update each task's show page to include an edit link\r\nthis will give the user a new page with a form that is pre-populated with the data about that task\r\nthe site should take the user back to the task's show page after the task is updated\r\n"], ["created_at", 2017-03-25 22:25:08 UTC], ["updated_at", 2017-03-25 22:25:08 UTC], ["title", 3]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:25: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 (5.3ms) +Completed 200 OK in 43ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:26:34 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.2ms) + Rendered tasks/new.html.erb within layouts/application (4.4ms) +Completed 200 OK in 40ms (Views: 26.6ms | ActiveRecord: 0.8ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:27:23 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kGfWk0dWhjzA0AuBg5eGcBdHDbX4Ibc/YSnKbTQP02Iiyl/wcuHiLIjviK7HsHcnVoavUVFD5+HZUvxfrZ4h7g==", "task"=>{"title"=>"wave3", "name"=>"Delete a task", "description"=>"On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.3ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Delete a task"], ["description", "On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"], ["created_at", 2017-03-25 22:27:23 UTC], ["updated_at", 2017-03-25 22:27:23 UTC], ["title", 3]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:27: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.1ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 15:27:26 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/new.html.erb within layouts/application (9.0ms) +Completed 200 OK in 38ms (Views: 31.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-25 15:27:57 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"LiF8kpAXYQPelclCQx7faggB5Jovq63XCx58MB0iZ+CcjPXxpaAFE5aqSm0HOS49ScBGfobJ/QmzZUoChLOVbA==", "task"=>{"title"=>"baseline", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "Mark a task complete"], ["description", "Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"], ["created_at", 2017-03-25 22:27:58 UTC], ["updated_at", 2017-03-25 22:27:58 UTC], ["title", 0]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 12ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:27: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 24ms (Views: 21.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:28:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 27.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/35/edit" for ::1 at 2017-03-25 15:28:07 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.8ms) + Rendered tasks/edit.html.erb within layouts/application (6.7ms) +Completed 200 OK in 31ms (Views: 26.1ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/35" for ::1 at 2017-03-25 15:28:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"7GivgdY3UwOZDoENxjOWd/n6r2+sZeW71EXYZQXzVHJexSbi44A3E9ExAiKCFGcguDsNiwUHtWVsPu5XnGKm/g==", "task"=>{"title"=>"wave3", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"edit", "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (3.8ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 3], ["updated_at", 2017-03-25 22:28:10 UTC], ["id", 35]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 13ms (ActiveRecord: 5.8ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:28:10 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 48ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34" for ::1 at 2017-03-25 15:28:15 -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.3ms) +Completed 200 OK in 31ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/34/edit" for ::1 at 2017-03-25 15:28:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.2ms) + Rendered tasks/edit.html.erb within layouts/application (6.6ms) +Completed 200 OK in 31ms (Views: 26.4ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/34" for ::1 at 2017-03-25 15:28:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SigbW6swiINQYg/dJDgHnoe5cTHSeNgn7ZuX5PwYHHT4hZI4nofskxhdjPJgH/bJxnjT1XsaiPlV4KHWZYnu+A==", "task"=>{"title"=>"wave3", "name"=>"Delete a task", "description"=>"On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"}, "commit"=>"edit", "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.1ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 4ms (ActiveRecord: 0.3ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-25 15:28:28 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 48ms (Views: 32.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34" for ::1 at 2017-03-25 15:28:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"34"} + Task Load (0.2ms) 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.4ms) +Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 0.2ms) + + +  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +Started GET "/tasks.34" for ::1 at 2017-03-25 15:29:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 52ms (Views: 35.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33" for ::1 at 2017-03-25 15:29:53 -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.8ms) +Completed 200 OK in 32ms (Views: 27.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/33/edit" for ::1 at 2017-03-25 15:29:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.0ms) + Rendered tasks/edit.html.erb within layouts/application (5.4ms) +Completed 200 OK in 30ms (Views: 24.7ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/33" for ::1 at 2017-03-25 15:29:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"CebocacGKb3oUeei7D+Y7plPUM2ksz1y7Q3P42gDwwK7S2ESkrFNraBuZI2oGGm52I7yKQ3RbaxVdvnR8ZIxjg==", "task"=>{"title"=>"wave4", "name"=>"Edit a task", "description"=>"update each task's show page to include an edit link\r\nthis will give the user a new page with a form that is pre-populated with the data about that task\r\nthe site should take the user back to the task's show page after the task is updated\r\n"}, "commit"=>"edit", "id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 4], ["updated_at", 2017-03-25 22:29:59 UTC], ["id", 33]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.33 +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.33" for ::1 at 2017-03-25 15:29:59 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 52ms (Views: 35.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34" for ::1 at 2017-03-25 15:30:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"34"} + Task Load (0.2ms) 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.2ms) +Completed 200 OK in 30ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/34/edit" for ::1 at 2017-03-25 15:30:03 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"34"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (8.7ms) + Rendered tasks/edit.html.erb within layouts/application (13.4ms) +Completed 200 OK in 39ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/34" for ::1 at 2017-03-25 15:30:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"IX3dc+LJD9sAZpVAFRO3vHqTcvG2rMKAZlRbScPbkzST0FQQ135ry0hZFm9RNEbrO1LQFR/Okl7eL217WkphuA==", "task"=>{"title"=>"wave4", "name"=>"Delete a task", "description"=>"On the task list, add a button or link for each task that will, once clicked:\r\nAsk the user to confirm that they definitely want to delete the task.\r\nDelete the task from the database and redirect the user back to the list of remaining tasks\r\nMark a task complete"}, "commit"=>"edit", "id"=>"34"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 4], ["updated_at", 2017-03-25 22:30:06 UTC], ["id", 34]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 7ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-25 15:30:06 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 48ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:30:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 30ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35/edit" for ::1 at 2017-03-25 15:30:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.9ms) + Rendered tasks/edit.html.erb within layouts/application (7.4ms) +Completed 200 OK in 36ms (Views: 30.9ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/35" for ::1 at 2017-03-25 15:30:15 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"MFwkggoVJV8oOmoO1OSdUrfqrlmfGDyqooyi+ClursqC8a3hP6JBT2AF6SGQw2wF9isMvTZ6bHQa95TKsP9cRg==", "task"=>{"title"=>"wave4", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"edit", "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 4], ["updated_at", 2017-03-25 22:30:15 UTC], ["id", 35]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:30:15 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 50ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + From 2898d8a3fb3042261b811746f9def3f1c628b568 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Sat, 25 Mar 2017 18:12:02 -0700 Subject: [PATCH 22/27] added partial for completed date information with method to conditionally show when/if task is complete --- app/controllers/tasks_controller.rb | 1 - app/views/tasks/_completed_on.html.erb | 13 + app/views/tasks/index.html.erb | 8 +- app/views/tasks/show.html.erb | 13 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 3210 ++++++++++++++++++++++++ 6 files changed, 3234 insertions(+), 11 deletions(-) create mode 100644 app/views/tasks/_completed_on.html.erb diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 38eb0f5d1..0a478f229 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -41,7 +41,6 @@ def destroy redirect_to tasks_path end - private def task_params diff --git a/app/views/tasks/_completed_on.html.erb b/app/views/tasks/_completed_on.html.erb new file mode 100644 index 000000000..9b21656bf --- /dev/null +++ b/app/views/tasks/_completed_on.html.erb @@ -0,0 +1,13 @@ +<% def completed_on %> + <% @task = Task.find(params[:id]) %> + <% if @task.completion_date? %> + <% return "TEST On: " %> + <%# else %> + <%# return "you got this!" %> + <% end %> +<% end %> + + +

    + <%= completed_on %> <%=@task.completion_date %> +

    diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 9f1595dbf..4298a0c54 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -8,19 +8,19 @@ <% if title != task.title %> <% title = task.title %> - <%= title %> + <%= title.upcase %> <% end %> -
  • <%= link_to task.name, task_path(task.id) %>: +
  • <% if task.complete %> - <%= task.description %> + <%= link_to task.name, task_path(task.id) %> <%= link_to "uncomplete", task_path(task.id, task: { complete: false, completion_date: nil}), method: :patch %> <% else %> - <%= task.description %> + <%= link_to task.name, task_path(task.id) %> <%= link_to "complete", task_path(task.id, task: {complete: true, completion_date: Time.now}), method: :patch %> <% end %> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index 41960c98c..a46bf8d7e 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -1,15 +1,16 @@

    Show Task

    -

    +

    <%= @task.title %> -

    -beyonce +

    + +beyonce +

    <%= @task.id %>. <%= @task.name %>: <%= @task.description %>

    - <% if @task.completion_date != nil %> - Task was completed on: <%= @task.completion_date %> - <% end %> + +<%= render partial: "completed_on" %> <%= link_to "edit task", edit_task_path(@task) %> diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 927a7983fed66e656d5ab20293f80eee231f6b75..ca8b30cdb5990e0ace57605b7a27d56af0de1f36 100644 GIT binary patch delta 477 zcmZp8z}WDBae_4Ct%)+ujJGx>EcBOTQ)J*|>SbUnVd~}8<6h5oiscJOB0Dz==VqyZ zC?=O?AsH?P&lXpEM@J5R=c3fal2nC6g}l`Arb>teFS>+6P-13Iu|i@&K~83JVo7Fx z-el)EJx0CFg>k}+GR9U0=2oUAdZwl(mX=0ojTy>Z45m${KvNj`C+mfsmN!!{Ftjo- zu`;#LGcz<_)mTu?Wth z9+5OLu`)E#Gc+fnU#Tom9Zhz&bW9reqcBPMSvC> N7@8Pclq^aR002AeeHs7& delta 231 zcmZp8z}WDBae_4Cs);hrjH@;#EcBOTU|`^6Q)J+u#An8HpL;#mDb9HuiR|2LikqbZ zqL?;LSj)`Pn6AtJWZMkTnvWI z_6&}W9GgN#7$^S<<=K2HN|cGEDMXfQ^5Yoq$+fYTlXu4+mNYW9GBVXOG&Qj_HgAfQ z;bO>cP6cUWm^>>;Zt}GtfyqbXeoVd}EG=nd1+>h>QqS1J%+$;Oukl diff --git a/log/development.log b/log/development.log index 9348df050..f7536beb3 100644 --- a/log/development.log +++ b/log/development.log @@ -12447,3 +12447,3213 @@ Processing by TasksController#index as Completed 200 OK in 50ms (Views: 34.3ms | ActiveRecord: 0.2ms) +Started GET "/tasks.35" for ::1 at 2017-03-25 15:35:27 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 56ms (Views: 38.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:36:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 50ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:36:54 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 51ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:37:45 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 49ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:38:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 49ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/32" for ::1 at 2017-03-25 15:38:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"32"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 31ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/32/edit" for ::1 at 2017-03-25 15:38:22 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.2ms) + Rendered tasks/edit.html.erb within layouts/application (8.2ms) +Completed 200 OK in 38ms (Views: 33.1ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/32" for ::1 at 2017-03-25 15:38:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"34DZWW/JgoIjQOSO/PCHlkbU96lNX8BBUtmt/TFcDEltLVA6Wn7mkmt/Z6G413bBBxVVTeQ9kJ/qopvPqM3+xQ==", "task"=>{"title"=>"wave2", "name"=>"Create a new task:", "description"=>"update the task list to have a link to add a new task\r\nthis will give the user a new page with a form with the appropriate task fields\r\nthe site should take the user back to the task list after the new task is added\r\n"}, "commit"=>"edit", "id"=>"32"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 2], ["updated_at", 2017-03-25 22:38:27 UTC], ["id", 32]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 8ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-25 15:38:27 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 51ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-25 15:39:37 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 51ms (Views: 34.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-25 15:39:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 48ms (Views: 32.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-25 15:40:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 50ms (Views: 34.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-25 15:40:31 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 49ms (Views: 32.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-25 15:40:45 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 48ms (Views: 32.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A40%3A45+-0700" for ::1 at 2017-03-25 15:40:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GwAavXi0Fqq5zbQ8u1fiM4FkAyBRutJDl7jCuNZg3JiprZPeTQNyuvHyNxP/cBNkwKWhxPjYgp0vw/SKT/EuFA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:40:45 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:40:45 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:40:49 UTC], ["id", 27]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:40:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 74ms (Views: 46.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:41:28 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 63ms (Views: 40.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:41:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"9vSyILirnFWtzw7KPvzxoyza1OUsv8RTYbYYhA1+/fREWTtDjRz4ReXwjeV62wD0bRt2AYXdlI3ZzS62lO8PeA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:41:32 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:41:32 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 64ms (Views: 42.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A41%3A32+-0700" for ::1 at 2017-03-25 15:41:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"6li898vOh+1fdfF3LLsKKj1m7hcyuc5kFZumRZpdV/9Y9TWU/nnj/RdKclhonPt9fKdM85vbnrqt4JB3A8ylcw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:41:32 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:41:32 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:41:33 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:41:33 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.6ms) +Completed 200 OK in 77ms (Views: 51.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:42:47 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 48ms (Views: 32.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 15:42:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 200 OK in 33ms (Views: 29.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-25 15:42:56 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.0ms) + Rendered tasks/edit.html.erb within layouts/application (8.2ms) +Completed 200 OK in 32ms (Views: 28.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:43:22 -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 (6.6ms) +Completed 200 OK in 36ms (Views: 33.3ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 15:43:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.2ms) +Completed 200 OK in 28ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A43%3A22+-0700" for ::1 at 2017-03-25 15:43:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"VryQdQ8PahjC7QkX+6K+k/6a3rplXrNAU0sWsT+nnFDkERkWOrgOCIrSiji/hU/Ev1t8Xsw8457rMCCDpjZu3A==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:43:22 -0700"}, "id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:43:22 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:43:30 UTC], ["id", 28]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 15:43:30 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 59ms (Views: 37.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 15:43:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 28ms (Views: 24.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/29" for ::1 at 2017-03-25 15:43:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 24.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/29/edit" for ::1 at 2017-03-25 15:43:58 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.6ms) + Rendered tasks/edit.html.erb within layouts/application (7.3ms) +Completed 200 OK in 30ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/29" for ::1 at 2017-03-25 15:44:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"TRKntpGVvfu+xTIUns0A1rxTquNK4TjSFyOLSbJGXwz/vy7VpCLZ6/b6sTva6vGB/ZIIB+ODaAyvWL17K9etgA==", "task"=>{"title"=>"baseline", "name"=>"create a migration which will create a new Task model", "description"=>"Create the database schema and tables by running the rails db:migrate
    command\r\nthe Task model should include at least a name, a description and a completion date\r\ncreate at least 2 Task model instances using the rails console"}, "commit"=>"edit", "id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "description" = ?, "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Create the database schema and tables by running the rails db:migrate
    command\r\nthe Task model should include at least a name, a description and a completion date\r\ncreate at least 2 Task model instances using the rails console"], ["title", 0], ["updated_at", 2017-03-25 22:44:14 UTC], ["id", 29]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks.29 +Completed 302 Found in 8ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks.29" for ::1 at 2017-03-25 15:44:14 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 50ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 15:44:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 27ms (Views: 23.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for ::1 at 2017-03-25 15:44:21 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/edit.html.erb within layouts/application (6.0ms) +Completed 200 OK in 30ms (Views: 25.3ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/28" for ::1 at 2017-03-25 15:44:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"SzSi3SXQz0di+dCXTy7n8BHPSrvOOaRwQ5iuG1X7b1X5mSu+EGerVyrGU7gLCRanUA7oX2db9K7745gpzGqd2Q==", "task"=>{"title"=>"baseline", "name"=>"Create a new Rails application using rails new ", "description"=>"create a Tasks controller.
    create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."}, "commit"=>"edit", "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) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "create a Tasks controller.
    create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."], ["updated_at", 2017-03-25 22:44:29 UTC], ["id", 28]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 15:44:29 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 54ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 15:44:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 32ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for ::1 at 2017-03-25 15:44:40 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (5.8ms) +Completed 200 OK in 32ms (Views: 26.8ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/28" for ::1 at 2017-03-25 15:44:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"PlfZv+sWlUq8JS3ld6/ozScSuxcZ4tvXxWN9HpPiyCqM+lDc3qHxWvQarsoziBmaZtMZ87CAiwl9GEssCnM6pg==", "task"=>{"title"=>"baseline", "name"=>"Create a new Rails application using rails new ", "description"=>"create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."}, "commit"=>"edit", "id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (3.9ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."], ["updated_at", 2017-03-25 22:44:47 UTC], ["id", 28]] +  (5.3ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 17ms (ActiveRecord: 9.5ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 15:44:47 -0700 +Processing by TasksController#index as + 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 50ms (Views: 35.7ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 15:44:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (0.8ms) +Completed 200 OK in 35ms (Views: 30.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 15:44:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 43ms (Views: 37.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:45: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 (6.3ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:45:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"jBaDJhCUnHtWeXGht3T1NMdd0vSGgLtDEtUhSA6mPYA+uwpFJSP4ax5G8o7zUwRjhpxwEC/i652qrhd6lzfPDA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:45:12 UTC], ["id", 28]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 8ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 15:45:12 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 58ms (Views: 41.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:45:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"plMBFNQ75W90cuOOlSoQpUVNwfrPpF08rjs9fiJSlgMU/oh34YyBfzxNYKHRDeHyBIxjHmbGDeIWQAtMu8Nkjw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:45:13 UTC], ["id", 27]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:45:13 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.6ms) +Completed 200 OK in 70ms (Views: 46.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:50:05 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 53ms (Views: 37.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A50%3A05+-0700" for ::1 at 2017-03-25 15:50:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"NJG92/DuuJQnsXxFCQvTnqlv2GFVp84Rga02PZefsZuGPDS4xVnchG+O/2pNLCLJ6K56hfzFns851gAPDg5DFw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:50:05 -0700"}, "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:50:05 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:50:07 UTC], ["id", 35]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 8ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:50:07 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 73ms (Views: 44.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:50:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 33ms (Views: 29.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:50:21 -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 (9.0ms) +Completed 200 OK in 31ms (Views: 28.5ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 15:50:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"m2eXVdCsyeGFKY4x1FaG/ZHEqSGbiJYEa59+0ymZptIpyh425Rut8c0WDR6QcXeq0AULxTLqxtrT5EjhsAhUXg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 22:50:23 UTC], ["id", 35]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 15:50:23 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 60ms (Views: 39.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:50:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 28ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:58:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (152.0ms) +Completed 500 Internal Server Error in 159ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `task_was_completed_on' for #<#:0x007fe95125a5c0>): + 14: + 15:

    + 16: <% if @task.completion_date != nil %> + 17: <%= task_was_completed_on @task.completion_date %> + 18: <% end %> + 19:

    + 20: + +app/views/tasks/show.html.erb:17:in `_app_views_tasks_show_html_erb__4404479315926747916_70320032767540' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.0ms) +Started GET "/tasks/35" for ::1 at 2017-03-25 15:58:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (152.2ms) +Completed 500 Internal Server Error in 164ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `task_was_completed_on' for #<#:0x007fe950c14058>): + 14: + 15:

    + 16: <% if @task.completion_date != nil %> + 17: <%= puts task_was_completed_on @task.completion_date %> + 18: <% end %> + 19:

    + 20: + +app/views/tasks/show.html.erb:17:in `_app_views_tasks_show_html_erb__4404479315926747916_70320029476120' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.6ms) +Started GET "/tasks/35" for ::1 at 2017-03-25 15:59:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 48ms (Views: 44.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:59:09 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 35ms (Views: 31.5ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+15%3A59%3A09+-0700" for ::1 at 2017-03-25 15:59:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+89+ffENhTIryWR2KszqeugZN935JoXToPxdLx8eZc9JYvcexLrhImP251lu6xstqdiVOVBE1Q0Yh2sdho+XQw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 15:59:09 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 15:59:09 -0700"], ["complete", true], ["updated_at", 2017-03-25 22:59:12 UTC], ["id", 27]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 3.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 15:59:12 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.0ms) +Completed 200 OK in 77ms (Views: 47.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 15:59:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 38ms (Views: 32.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 15:59:56 -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 (8.7ms) +Completed 200 OK in 38ms (Views: 33.9ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 15:59:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 64ms (Views: 59.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00: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 (9.1ms) +Completed 200 OK in 44ms (Views: 39.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/30" for ::1 at 2017-03-25 16:00:05 -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 30ms (Views: 25.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 46ms (Views: 41.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:00:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 42ms (Views: 37.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00: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 (8.0ms) +Completed 200 OK in 40ms (Views: 36.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:00:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 29ms (Views: 25.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00: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 (6.1ms) +Completed 200 OK in 39ms (Views: 36.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/29" for ::1 at 2017-03-25 16:00:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 33ms (Views: 29.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00: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.9ms) +Completed 200 OK in 44ms (Views: 40.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/30" for ::1 at 2017-03-25 16:00: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.3ms) +Completed 200 OK in 44ms (Views: 39.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00: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 (7.5ms) +Completed 200 OK in 47ms (Views: 42.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:00:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 48ms (Views: 42.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00:31 -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 (9.9ms) +Completed 200 OK in 54ms (Views: 48.7ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+16%3A00%3A31+-0700" for ::1 at 2017-03-25 16:00:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LYW0oc5FApe84eAVvqwtalOZDLk8nQCTvhboFJWR2iSfKD3C+/Jmh/TeYzr6i9w9EliuXZX/UE0Gbd4mDAAoqA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 16:00:31 -0700"}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 16:00:31 -0700"], ["complete", true], ["updated_at", 2017-03-25 23:00:32 UTC], ["id", 28]] +  (3.2ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 9ms (ActiveRecord: 3.9ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 16:00:32 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 63ms (Views: 45.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.3ms) +Completed 200 OK in 39ms (Views: 36.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:00:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 30ms (Views: 26.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:00:40 -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 (9.6ms) +Completed 200 OK in 46ms (Views: 41.9ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 16:00:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WfZO6IvSlenuWIxF60P1A2+QaGa0CTJwORkSUChhO3nrW8eLvmXx+aZnD2qvZARULlHKgh1rYq6BYiRisfDJ9Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 23:00:42 UTC], ["id", 27]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:00:42 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 69ms (Views: 41.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:00:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 28ms (Views: 25.0ms | ActiveRecord: 0.1ms) + + + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +Started GET "/tasks" for ::1 at 2017-03-25 16:02:04 -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 (7.5ms) +Completed 200 OK in 32ms (Views: 27.6ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:02:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 30ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02: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 (3.4ms) +Completed 200 OK in 44ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 16:02:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 32ms (Views: 26.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02:12 -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.0ms) +Completed 200 OK in 44ms (Views: 38.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/34" for ::1 at 2017-03-25 16:02:13 -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 (2.0ms) +Completed 200 OK in 32ms (Views: 27.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02: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 (9.2ms) +Completed 200 OK in 46ms (Views: 40.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/29" for ::1 at 2017-03-25 16:02:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 38ms (Views: 33.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.7ms) +Completed 200 OK in 46ms (Views: 41.8ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/30" for ::1 at 2017-03-25 16:02:18 -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 40ms (Views: 34.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02: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.6ms) +Completed 200 OK in 43ms (Views: 36.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:02:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 40ms (Views: 34.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 42ms (Views: 39.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 16:02:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 39ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02: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 (6.4ms) +Completed 200 OK in 42ms (Views: 38.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:02:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 52ms (Views: 45.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:02:40 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 48ms (Views: 44.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:02:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 51ms (Views: 45.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:02:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.7ms) +Completed 200 OK in 38ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +Started GET "/tasks" for ::1 at 2017-03-25 16:03:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 44ms (Views: 38.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+16%3A03%3A30+-0700" for ::1 at 2017-03-25 16:03:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UzXOnuUmQTtwMzw+JOCvzEHKaSVkcVx6UGADWOm8i6XhmEf90JElKzgMvxFgx16bAAvLwc0TDKToGzVqcC15KQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 16:03:30 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 16:03:30 -0700"], ["complete", true], ["updated_at", 2017-03-25 23:03:31 UTC], ["id", 27]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:03:31 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 78ms (Views: 48.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:03:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +Started GET "/tasks" for ::1 at 2017-03-25 16:04:33 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 31ms (Views: 26.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:04:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 43ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:04: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 (7.1ms) +Completed 200 OK in 43ms (Views: 38.1ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:04:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 36ms (Views: 32.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 16:04:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"H+uQPNakEDVPF+AMuK0RKP344X+JRYGcRWwdWK4gQRCtRhlf4xN0JQcoYyP8iuB/vDlDmyAn0UL9FytqN7GznA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 23:04:49 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:04:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 58ms (Views: 39.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:04:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 27ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +Started GET "/tasks/27" for ::1 at 2017-03-25 16:05:56 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["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: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-25 16:06:00 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (7.6ms) +Completed 200 OK in 33ms (Views: 27.2ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/27" for ::1 at 2017-03-25 16:06:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"k1uQlSONMVRUeDE/5SUt1L4KeOE3wzuQovqL1NNIZnwh9hn2FjpVRBxHshChAtyD/8vaBZ6ha04agb3mStmU8A==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone this repository to your computer", "description"=>"why?"}, "commit"=>"edit", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "why?"], ["updated_at", 2017-03-25 23:06:20 UTC], ["id", 27]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:06:20 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 50ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:06:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 32ms (Views: 26.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:06:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 44ms (Views: 38.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-25 16:06:41 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (5.8ms) +Completed 200 OK in 38ms (Views: 32.7ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/27" for ::1 at 2017-03-25 16:06:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"o6WY23aycEg0Kmf1lvAIcEDUYTU0cHZbwQYi39bzghURCBG4QwUUWHwV5NrS1/knARXD0Z0SJoV5fRTtT2JwmQ==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "name" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "Fork and clone"], ["description", "Fork and clone this repository to your computer"], ["updated_at", 2017-03-25 23:06:56 UTC], ["id", 27]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:06:56 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 53ms (Views: 33.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:07:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.5ms) +Completed 200 OK in 34ms (Views: 27.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for ::1 at 2017-03-25 16:07:13 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.5ms) + Rendered tasks/edit.html.erb within layouts/application (6.3ms) +Completed 200 OK in 30ms (Views: 25.2ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/28" for ::1 at 2017-03-25 16:07:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"1qVeYvm1n3fnb5TfMuIdaKosRiq0O+XrliAH76fibWVkCNcBzAL7Z69QF/B2xew/6+3kzh1ZtTUuWzHdPnOf6Q==", "task"=>{"title"=>"baseline", "name"=>"Create a new Rails application", "description"=>"Create a new Rails application using rails new. create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."}, "commit"=>"edit", "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "name" = ?, "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["name", "Create a new Rails application"], ["description", "Create a new Rails application using rails new. create a Tasks controller. create a route to view the task index page. \r\ncreate a controller action for the task index page which contains an array of hard-coded tasks. create an ERB view to display the tasks from the controller action."], ["updated_at", 2017-03-25 23:07:51 UTC], ["id", 28]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 8ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 16:07:51 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 50ms (Views: 32.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 16:07:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"pCifEInltPMVBsev7P8CcgHUgWIMLz8hHtjNgo5SJs4WhRZzvFLQ4105RICo2PMlQBUjhqVNb/+mo/uwF8PUQg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 23:07:54 UTC], ["id", 28]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-25 16:07:54 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 74ms (Views: 49.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 16:08:08 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.5ms) + Rendered tasks/new.html.erb within layouts/application (3.4ms) +Completed 200 OK in 28ms (Views: 23.6ms | ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+16%3A07%3A54+-0700" for ::1 at 2017-03-25 16:08:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"RWhk0smZh7DGawj6f84UnQd2bV5LWWs3tI/2BfEQOZH3xe2x/C7joI5Ui9U76eXKRrfPuuI7O+kM9MA3aIHLHQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 16:07:54 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 16:07:54 -0700"], ["complete", true], ["updated_at", 2017-03-25 23:08:29 UTC], ["id", 27]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:08:29 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 61ms (Views: 43.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 16:08:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"b++lN6NIa81jmcaDFBDB4unZzVtN8SjIUc2X3uwX8i3dQixUlv8P3SumRaxQNzC1qBhvv+STeBbptqHsdYYAoQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 23:08:31 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:08:31 -0700 +Processing by TasksController#index as + 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.8ms) +Completed 200 OK in 77ms (Views: 48.0ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 16:08:34 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.1ms) + Rendered tasks/new.html.erb within layouts/application (6.2ms) +Completed 200 OK in 34ms (Views: 30.9ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 16:08:43 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.7ms) + Rendered tasks/new.html.erb within layouts/application (10.7ms) +Completed 200 OK in 47ms (Views: 41.2ms | ActiveRecord: 0.0ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+16%3A08%3A31+-0700" for ::1 at 2017-03-25 16:08:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GZBNUzaOkzAX7RG2DeJ9f4kp2N4BoN2xDQllzKJ1foyrPcQwAzn3IF/SkplJxYwoyOh6OqjCjW+1clP+O+SMAA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 16:08:31 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 16:08:31 -0700"], ["complete", true], ["updated_at", 2017-03-25 23:08:46 UTC], ["id", 27]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:08:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 72ms (Views: 52.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 16:09:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"9uwORNATWMe8Iswb6J9XDRaMjmVvvc1RaHFppUNPQoBEQYcn5aQ81/QdTzSsuKZaV00sgcbfnY/QCl+X2t6wDA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-25 23:09:06 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:09:06 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 67ms (Views: 42.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+16%3A09%3A06+-0700" for ::1 at 2017-03-25 16:09:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"E/ZblvcjKijB2KxzOn8JF3cKOBwspTrgieoG3iLtdYahW9L1wpROOInnL1x+WPhANsua+IXHaj4xkTDsu3yHCg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 16:09:06 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.1ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 16:09:06 -0700"], ["complete", true], ["updated_at", 2017-03-25 23:09:11 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 4.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 16:09:11 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 79ms (Views: 49.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 16:09:16 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.5ms) + Rendered tasks/new.html.erb within layouts/application (6.6ms) +Completed 200 OK in 32ms (Views: 29.3ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-25 16:09:34 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.4ms) + Rendered tasks/new.html.erb within layouts/application (5.1ms) +Completed 200 OK in 44ms (Views: 38.8ms | ActiveRecord: 0.0ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:17:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 36ms (Views: 29.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28/edit" for ::1 at 2017-03-25 16:17:47 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.7ms) + Rendered tasks/edit.html.erb within layouts/application (5.7ms) +Completed 200 OK in 31ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:17: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 (6.9ms) +Completed 200 OK in 32ms (Views: 28.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 16:17:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 32ms (Views: 27.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 16:17: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 (6.3ms) +Completed 200 OK in 50ms (Views: 46.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:17:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.6ms) +Completed 200 OK in 45ms (Views: 38.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 16:57:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (5.9ms) +Completed 200 OK in 71ms (Views: 56.4ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 17:19:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (371.3ms) +Completed 500 Internal Server Error in 380ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task_was_completed_on' for #<#:0x007fe9510ea730>): + 18: + 19:

    + 20: <% if @task.completion_date %> + 21: <%= task_was_completed_on %> + 22: <% end %> + 23:

    + 24: + +app/views/tasks/show.html.erb:21:in `_app_views_tasks_show_html_erb__4404479315926747916_70320032023800' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.9ms) +Started GET "/tasks/28" for ::1 at 2017-03-25 17:23:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (255.5ms) +Completed 500 Internal Server Error in 277ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (undefined local variable or method `task_was_completed_on' for #<#:0x007fe9513c3ec0>): + 18: + 19:

    + 20: <% if @task.completion_date %> + 21: <%= task_was_completed_on %> + 22: <% end %> + 23:

    + 24: + +app/views/tasks/show.html.erb:21:in `_app_views_tasks_show_html_erb__4404479315926747916_70320033506420' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (65.8ms) +Started GET "/tasks/28" for ::1 at 2017-03-25 17:30:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["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 25ms (ActiveRecord: 0.9ms) + + + +ActionView::Template::Error (wrong number of arguments (given 1, expected 0)): + 10: <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + 11:

    + 12: + 13: + 14:

    + 15: <% if @task.completion_date %> + 16: <%= completed_on @task.completion_date %> + +app/views/tasks/show.html.erb:13:in `completed_on' +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__4404479315926747916_70320028682780' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.7ms) +Started GET "/tasks/28" for ::1 at 2017-03-25 17:31:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (2.8ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (wrong number of arguments (given 1, expected 0)): + 10: <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + 11:

    + 12: + 13: + 14:

    + 15: <% if @task.completion_date %> + 16: <%= completed_on @task.completion_date %> + +app/views/tasks/show.html.erb:13:in `completed_on' +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__4404479315926747916_70320078743600' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.0ms) +Started GET "/tasks/2" for ::1 at 2017-03-25 17:31:53 -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:22:in `show' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.6ms) +Started GET "/tasks" for ::1 at 2017-03-25 17:31: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 (6.4ms) +Completed 200 OK in 40ms (Views: 36.7ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 17:31:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xFkWhRB/uc+EVucPwG91Cm94oWgxvvhp4PlTUMd/uUl29J/mJcjd38xpZCCESIRdLrkDjJjcqLdYgmViXu5LxQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 00:31:56 UTC], ["id", 27]] +  (3.3ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 5.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:31:56 -0700 +Processing by TasksController#index as + 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 71ms (Views: 46.5ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+17%3A31%3A56+-0700" for ::1 at 2017-03-25 17:31:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"TSiBL+JsnJBCtBXWdJD6SJXHpWT0BWQCh74jHA7YxO//hQhM19v4gAqLlvkwtwsf1AYHgF1nNNw/xRUul0k2Yw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 17:31:56 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 17:31:56 -0700"], ["complete", true], ["updated_at", 2017-03-26 00:31:57 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:31:57 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 79ms (Views: 52.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:31:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (4.7ms) +Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (wrong number of arguments (given 1, expected 0)): + 10: <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + 11:

    + 12: + 13: + 14:

    + 15: <% if @task.completion_date %> + 16: <%= completed_on @task.completion_date %> + +app/views/tasks/show.html.erb:13:in `completed_on' +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__4404479315926747916_70320078470500' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.3ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:33:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.0ms) +Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (wrong number of arguments (given 1, expected 0)): + 10: <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + 11:

    + 12: + 13: + 14:

    + 15: <% if @task.completion_date %> + 16: <%= completed_on @task.completion_date %> + +app/views/tasks/show.html.erb:13:in `completed_on' +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__4404479315926747916_70320046890640' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.1ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:34:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.1ms) +Completed 200 OK in 41ms (Views: 25.1ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:34:23 -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.5ms) +Completed 200 OK in 33ms (Views: 29.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:34:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 47ms (Views: 42.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:34: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 (6.1ms) +Completed 200 OK in 45ms (Views: 41.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 17:34:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0QFuq9kOD3mHe6MC0zVX1CXxk0a+wzcsxwuhSj/obitjrOfI7Llrac9EIC2XEqaDZDAxohehZ/J/cJd4pnmcpw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 00:34:28 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:34:28 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 64ms (Views: 44.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:34:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.4ms) +Completed 200 OK in 31ms (Views: 28.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:35:20 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.3ms) +Completed 200 OK in 38ms (Views: 31.3ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+17%3A35%3A20+-0700" for ::1 at 2017-03-25 17:35:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"oq4pTBFhLL0aekXPcD39Qfelyu+MBsLTYXf0gl4mXUIQA6AvJNZIrVJFxuA0GgwWtmRoCyVkkg3ZDMKwx7evzg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 17:35:20 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 17:35:20 -0700"], ["complete", true], ["updated_at", 2017-03-26 00:35:22 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:35:22 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 58ms (Views: 39.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:35:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 28ms (Views: 25.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:35:25 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 53ms (Views: 45.8ms | ActiveRecord: 1.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 17:35:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"k4ixG1yxwXMq44bvdgVuIOgvk92V/boEyJutUW5PbBUhJTh4aQalY2LcBcAyIp93qe4xOTyf6tpw4Jtj996emQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 00:35:28 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:35:28 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 60ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:35:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.3ms) +Completed 200 OK in 31ms (Views: 28.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:36:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (12.4ms) +Completed 500 Internal Server Error in 21ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined method `completed_on' for # +Did you mean? complete): + 13: + 14:

    + 15: <% if @task.completion_date %> + 16: <%= @task.completed_on %> <%=@task.completion_date %> + 17: <% end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__4404479315926747916_70320064234280' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.9ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:37:15 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 36ms (Views: 33.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:37: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 (7.3ms) +Completed 200 OK in 32ms (Views: 29.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:37:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 46ms (Views: 40.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:37: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 (5.9ms) +Completed 200 OK in 45ms (Views: 41.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+17%3A37%3A21+-0700" for ::1 at 2017-03-25 17:37:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"M5Kx3+fxOnwDJD5nE5hNpNNW+wwdG43VIUkBlJkcPuGBPzi80kZebEsbvUhXv7zzkpdZ6LR53QuZMjemAI3MbQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 17:37:21 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.2ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 17:37:21 -0700"], ["complete", true], ["updated_at", 2017-03-26 00:37:22 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:37:22 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 62ms (Views: 40.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:37:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 31ms (Views: 27.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:38:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 33ms (Views: 18.8ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:38:08 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.0ms) +Completed 200 OK in 42ms (Views: 38.7ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 17:38:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 32ms (Views: 28.7ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:38: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 (6.0ms) +Completed 200 OK in 45ms (Views: 41.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:38:23 -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 (13.2ms) +Completed 200 OK in 48ms (Views: 35.0ms | ActiveRecord: 1.7ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 17:38:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ScOsZy3vVWAEvLPXBYmn6R09HoGI6Pcq2JfR8VDR2KH7biUEGFgxcEyDMPhBrla+XPy8ZSGKp/Rg7OfDyUAqLQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 00:38:24 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:38:24 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 67ms (Views: 40.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+17%3A38%3A25+-0700" for ::1 at 2017-03-25 17:38:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"uzII57guMkgqL5x5SlkRbwkyTGEPrsxAYoN3ZSu/BOIJn4GEjZlWWGIQH1YOfuA4SPPuhabMnJ7a+EFXsi72bg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 17:38:25 -0700"}, "id"=>"27"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 17:38:25 -0700"], ["complete", true], ["updated_at", 2017-03-26 00:38:26 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:38:26 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.8ms) +Completed 200 OK in 68ms (Views: 48.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:38:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (3.8ms) +Completed 200 OK in 31ms (Views: 26.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:38:31 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 31ms (Views: 28.8ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 17:38:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"oQ+bRqcMEscKwy8HgZrq0FxxM0HXqnwhsmqVNg0hKnMTohIlkrt210L8rCjFvRuHHbCRpX7ILP8KEaMElLDY/w==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 00:38:33 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:38:33 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.6ms) +Completed 200 OK in 60ms (Views: 40.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:38:35 -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 (6.0ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:38:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.5ms) +Completed 200 OK in 41ms (Views: 37.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:39:28 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (192.9ms) +Completed 500 Internal Server Error in 228ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe04d0961b0> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300692648520' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (70.4ms) + Task Load (1.9ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started GET "/tasks/27" for ::1 at 2017-03-25 17:43:17 -0700 +Started GET "/tasks/2" for ::1 at 2017-03-25 17:43:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (197.9ms) +Completed 500 Internal Server Error in 216ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe04c66fb00> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300680727600' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.9ms) +Processing by TasksController#show as HTML +Started GET "/tasks" for ::1 at 2017-03-25 17:43:27 -0700 + Parameters: {"id"=>"2"} +Processing by TasksController#index as HTML + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]] +Completed 404 Not Found in 9ms (ActiveRecord: 0.7ms) + + + +ActiveRecord::RecordNotFound (Couldn't find Task with 'id'=2): + +app/controllers/tasks_controller.rb:22:in `show' + 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.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.5ms) +Completed 200 OK in 460ms (Views: 450.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:43:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (187.0ms) +Completed 500 Internal Server Error in 197ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe0512eca00> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300705712800' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.6ms) +Started PUT "/__web_console/repl_sessions/6505cbd42ab4e076965184f6b5be0dd8" for ::1 at 2017-03-25 17:44:01 -0700 +Started PUT "/__web_console/repl_sessions/6505cbd42ab4e076965184f6b5be0dd8" for ::1 at 2017-03-25 17:44:02 -0700 +Started PUT "/__web_console/repl_sessions/6505cbd42ab4e076965184f6b5be0dd8" for ::1 at 2017-03-25 17:44:08 -0700 +Started PUT "/__web_console/repl_sessions/6505cbd42ab4e076965184f6b5be0dd8" for ::1 at 2017-03-25 17:44:11 -0700 +Started GET "/tasks/27" for ::1 at 2017-03-25 17:45:57 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (193.3ms) +Completed 500 Internal Server Error in 212ms (ActiveRecord: 1.1ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe0511d0860> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300705132860' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.0ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:47:40 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (6.6ms) +Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined local variable or method `params' for TasksController:Class): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= TasksController::completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/controllers/tasks_controller.rb:47:in `completed_on' +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300712639380' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.9ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:52:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (8.2ms) +Completed 500 Internal Server Error in 27ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined method `completed_on' for TasksController:Class): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= TasksController::completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300695054140' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.7ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:53:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (213.6ms) +Completed 500 Internal Server Error in 224ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe04e585080> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300667183780' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.3ms) +Started PUT "/__web_console/repl_sessions/0671ec7230e02407353508cef82c6f3f" for ::1 at 2017-03-25 17:53:34 -0700 +Started PUT "/__web_console/repl_sessions/0671ec7230e02407353508cef82c6f3f" for ::1 at 2017-03-25 17:53:37 -0700 +Started GET "/tasks/27" for ::1 at 2017-03-25 17:54:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (6.5ms) +Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (undefined local variable or method `params' for TasksController:Class): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= TasksController::completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/controllers/tasks_controller.rb:48:in `completed_on' +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300695640540' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.3ms) +Started PUT "/__web_console/repl_sessions/3452dd9f2cc1ae4b7e381e632eaea30d" for ::1 at 2017-03-25 17:54:45 -0700 +Started PUT "/__web_console/repl_sessions/3452dd9f2cc1ae4b7e381e632eaea30d" for ::1 at 2017-03-25 17:54:50 -0700 +Started PUT "/__web_console/repl_sessions/3452dd9f2cc1ae4b7e381e632eaea30d" for ::1 at 2017-03-25 17:54:54 -0700 +Started GET "/tasks/27" for ::1 at 2017-03-25 17:55:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (6.4ms) +Completed 200 OK in 45ms (Views: 30.8ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:56:02 -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 (8.3ms) +Completed 200 OK in 34ms (Views: 29.3ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:56:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.2ms) +Completed 200 OK in 40ms (Views: 36.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17: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 (6.3ms) +Completed 200 OK in 47ms (Views: 42.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+17%3A56%3A06+-0700" for ::1 at 2017-03-25 17:56:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0rn52ZyCfhCEXIOztQnBTjEx59bDck8jEnQK5Z6VixRgFHC6qTUaAMxjAJzxLjAZcPBFMmoQH/2qDzzXBwR5mA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 17:56:06 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 17:56:06 -0700"], ["complete", true], ["updated_at", 2017-03-26 00:56:07 UTC], ["id", 27]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 3.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 17:56:07 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 60ms (Views: 39.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:56:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (1.0ms) +Completed 200 OK in 44ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 17:56:12 -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 (6.6ms) +Completed 200 OK in 33ms (Views: 29.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 17:56:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (234.8ms) +Completed 500 Internal Server Error in 249ms (ActiveRecord: 0.6ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe051183538> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300667679460' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.1ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:57:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (196.4ms) +Completed 500 Internal Server Error in 216ms (ActiveRecord: 0.8ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe04e617ca0> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300682231940' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.7ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:57:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (187.3ms) +Completed 500 Internal Server Error in 198ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fe04e3acda8> +Did you mean? @task): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= task.completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300680944040' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.0ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:58:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (19.9ms) +Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined method `completed_on' for # +Did you mean? complete): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= @task.completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300682136840' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.4ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 17:59:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (197.3ms) +Completed 500 Internal Server Error in 208ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `completed_on' for #<#:0x007fe04ffdde00> +Did you mean? Complex): + 13: + 14:

    + 15: <%# if @task.completion_date %> + 16: <%= completed_on %> <%=@task.completion_date %> + 17: <%# end %> + 18:

    + 19: + +app/views/tasks/show.html.erb:16:in `_app_views_tasks_show_html_erb__763753614819044342_70300714246320' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (67.9ms) +Started GET "/tasks/27" for ::1 at 2017-03-25 18:00:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (1.6ms) +Completed 200 OK in 38ms (Views: 24.7ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:00:32 -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.3ms) +Completed 200 OK in 35ms (Views: 30.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-25 18:00:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (4.0ms) +Completed 200 OK in 35ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:00:52 -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 (6.5ms) +Completed 200 OK in 44ms (Views: 37.7ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:00:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (2.9ms) +Completed 200 OK in 38ms (Views: 33.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:00:56 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 40ms (Views: 37.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+18%3A00%3A56+-0700" for ::1 at 2017-03-25 18:00:57 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0nM2hMYwoytp43i2bvUf/3HytS0tkjlYmzxTewEGQjFg3r/n84fHOyHc+5kq0u6oMDMXyYTwaYYjR2VJmJewvQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 18:00:56 -0700"}, "id"=>"35"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.8ms) + + + +NoMethodError (undefined method `completed_on' for # +Did you mean? complete): + +app/controllers/tasks_controller.rb:32:in `update' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (63.3ms) +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+18%3A00%3A56+-0700" for ::1 at 2017-03-25 18:01:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0nM2hMYwoytp43i2bvUf/3HytS0tkjlYmzxTewEGQjFg3r/n84fHOyHc+5kq0u6oMDMXyYTwaYYjR2VJmJewvQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 18:00:56 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 18:00:56 -0700"], ["complete", true], ["updated_at", 2017-03-26 01:01:26 UTC], ["id", 35]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 15ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 18:01:26 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 56ms (Views: 39.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:01:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (2.4ms) +Completed 200 OK in 32ms (Views: 28.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:01:32 -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.6ms) +Completed 200 OK in 33ms (Views: 30.4ms | ActiveRecord: 0.3ms) + + + Task Load (0.9ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 18:02:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"O7KR0yO6T1jYJi8uB6Giq3BlU4hH384t6ClMNxE5mSaJHxiwFg0rSJAZrAFDhlP8MaTxbO69nvNQUnoFiKhrqg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 01:02:09 UTC], ["id", 35]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 7ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 18:02:09 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 63ms (Views: 43.9ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started GET "/tasks/35" for ::1 at 2017-03-25 18:02:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (3.4ms) +Completed 200 OK in 30ms (Views: 27.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:03:05 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (2.0ms) +Completed 200 OK in 35ms (Views: 32.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:03:08 -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 (8.6ms) +Completed 200 OK in 34ms (Views: 30.5ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+18%3A03%3A08+-0700" for ::1 at 2017-03-25 18:03:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+VepJVSP4/2A8xANP8tDdPhQ740RMDgXVgIdehndeNdL+iBGYTiH7cjMkyJ77LIjuZFNabhSaMnueStIgEyKWw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 18:03:08 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 18:03:08 -0700"], ["complete", true], ["updated_at", 2017-03-26 01:03:11 UTC], ["id", 35]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 18:03:11 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 58ms (Views: 39.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:03:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:03:15 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 32ms (Views: 26.9ms | ActiveRecord: 1.5ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:03:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (2.5ms) +Completed 200 OK in 45ms (Views: 40.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:03: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 (6.4ms) +Completed 200 OK in 43ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:03:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (6.6ms) +Completed 200 OK in 50ms (Views: 46.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:03:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.1ms) +Completed 200 OK in 41ms (Views: 37.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:03:55 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (4.1ms) +Completed 200 OK in 48ms (Views: 43.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18: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 (6.2ms) +Completed 200 OK in 42ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 18:03:59 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XUEBisEWJsSB/4GRkLag9pzUxO677coIv8n4pOeYan/v7Ijp9KFC1MnAAr7UkVGh3RVmChKPmtYHss6WfgmY8w==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 01:03:59 UTC], ["id", 35]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 18:03:59 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.9ms) +Completed 200 OK in 61ms (Views: 41.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:04:00 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 37ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:04: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 (6.1ms) +Completed 200 OK in 37ms (Views: 32.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+18%3A04%3A50+-0700" for ::1 at 2017-03-25 18:04:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"KHRA/SKGfSvoLQF5PFNnZQ07NwxbvvUAGXaFApltr/6a2cmeFzEZO6ASglZ4dJYyTPqV6PLcpd6hDbMwAPxdcg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 18:04:50 -0700"}, "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 18:04:50 -0700"], ["complete", true], ["updated_at", 2017-03-26 01:04:52 UTC], ["id", 35]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 7ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 18:04:52 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 58ms (Views: 38.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:04:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (2.7ms) +Completed 200 OK in 30ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:04: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 (6.7ms) +Completed 200 OK in 36ms (Views: 32.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 18:04:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"SkkoFcbRpyKtSmZxEimk5MwzydZUy2WIoZybpNWeUn745KF282bDMuV15V5WDlWzjfJrMv2pNVYZ562WTA+g8g==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 01:04:58 UTC], ["id", 35]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-25 18:04:58 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 62ms (Views: 43.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:04:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (3.2ms) +Completed 200 OK in 29ms (Views: 25.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18: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 (7.0ms) +Completed 200 OK in 32ms (Views: 29.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-25 18:05:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/show.html.erb within layouts/application (1.9ms) +Completed 200 OK in 45ms (Views: 39.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:05: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.8ms) +Completed 200 OK in 41ms (Views: 37.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:07:24 -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 38ms (Views: 33.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:07:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.1ms) + Rendered tasks/show.html.erb within layouts/application (8.7ms) +Completed 200 OK in 40ms (Views: 34.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-25 18:07:30 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (30.6ms) + Rendered tasks/edit.html.erb within layouts/application (35.1ms) +Completed 200 OK in 59ms (Views: 54.6ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/27" for ::1 at 2017-03-25 18:07:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"WMqEiQb1SIHBzdOVyJKvV0V+qJ+bLCnxS/kB+IFXvBLqZw3qM0IskYnyULqMtV4ABL8KezJOeS/zgjfKGMZOng==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 3ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 18:07:32 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 55ms (Views: 35.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:07:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (5.8ms) +Completed 200 OK in 33ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18: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 (7.4ms) +Completed 200 OK in 33ms (Views: 29.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 18:07:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"JU5qLCnri1INRbxbhoA9T5boPaXz6ZVhWkEyeI5i+lyX4+NPHFzvQkV6P3TCp8wY1ymfQVqLxb/iOgRKF/MI0A==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 01:07:38 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 18:07:38 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 63ms (Views: 39.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:07:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (5.3ms) +Completed 200 OK in 31ms (Views: 26.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:08: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 (6.6ms) +Completed 200 OK in 37ms (Views: 32.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:08:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.5ms) + Rendered tasks/show.html.erb within layouts/application (8.8ms) +Completed 200 OK in 43ms (Views: 37.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:08: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 (6.6ms) +Completed 200 OK in 44ms (Views: 40.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+18%3A08%3A29+-0700" for ::1 at 2017-03-25 18:08:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"NdPLgqPSTST9hk1pLXnKD79S4SjOOHo2upcON0jCR8mHfkLhlmUpNLW5zkZpXjtY/pNDzGdaKugC7DgF0VO1RQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 18:08:29 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 18:08:29 -0700"], ["complete", true], ["updated_at", 2017-03-26 01:08:30 UTC], ["id", 27]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 18:08:30 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 64ms (Views: 43.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:08:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (5.4ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:08:33 -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.3ms) +Completed 200 OK in 37ms (Views: 32.2ms | ActiveRecord: 0.6ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 18:08:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"js39xO/5fuVQyBPZQ86txLjGYpAoXkbHh3ML4NR/USI8YHSn2k4a9Rj3kPYH6VyT+QfAdIE8Fhk/CD3STe6jrg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 01:08:34 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 18:08:34 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.5ms) +Completed 200 OK in 61ms (Views: 40.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:08:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.9ms) + Rendered tasks/show.html.erb within layouts/application (7.1ms) +Completed 200 OK in 31ms (Views: 27.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:09: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 (6.6ms) +Completed 200 OK in 36ms (Views: 32.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:09:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.7ms) + Rendered tasks/show.html.erb within layouts/application (7.0ms) +Completed 200 OK in 42ms (Views: 38.6ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:09:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 42ms (Views: 39.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+18%3A09%3A11+-0700" for ::1 at 2017-03-25 18:09:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"nXsbojQAM2T46C7eiTXqyU+GuQ6WSQvM8nuLUU5g0UIv1pLBAbdXdLDXrfHNEhueDkcb6j8rWxJKAL1j1/Ejzg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 18:09:11 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 18:09:11 -0700"], ["complete", true], ["updated_at", 2017-03-26 01:09:12 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 18:09:12 -0700 +Processing by TasksController#index as + 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 60ms (Views: 42.0ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:09:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.6ms) + Rendered tasks/show.html.erb within layouts/application (5.9ms) +Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:09:17 -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.9ms) +Completed 200 OK in 35ms (Views: 31.2ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-25 18:09:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"gyVhw6mcmmTu7Z2OmPOtmN+lF0Z/9bp+EB5vBc90HXIxiOignCv+dKbSHqHc1FzPnmS1otaX6qCoZVk3VuXv/g==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 01:09:18 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 18:09:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 64ms (Views: 42.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:09:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (5.9ms) +Completed 200 OK in 31ms (Views: 28.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:09:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 42ms (Views: 39.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:09:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.5ms) + Rendered tasks/show.html.erb within layouts/application (6.4ms) +Completed 200 OK in 44ms (Views: 38.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-25 18:09: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 (8.4ms) +Completed 200 OK in 43ms (Views: 39.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-25+18%3A09%3A39+-0700" for ::1 at 2017-03-25 18:09:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+sYnIG8HjRE62EnE09i1LaiNl/OjFGaoNV15FR0vXUVIa65DWrDpAXLnyuuX/0R66Uw1Fwp2NnaNJk8nhL6vyQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-25 18:09:39 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-25 18:09:39 -0700"], ["complete", true], ["updated_at", 2017-03-26 01:09:40 UTC], ["id", 27]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 5.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-25 18:09:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 62ms (Views: 44.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-25 18:09:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.2ms) + Rendered tasks/show.html.erb within layouts/application (6.1ms) +Completed 200 OK in 32ms (Views: 29.2ms | ActiveRecord: 0.2ms) + + From c54a45373bb4bbe0310010b27b598c7e840586e2 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Sun, 26 Mar 2017 20:15:05 -0700 Subject: [PATCH 23/27] fixed completed button bug on show task page --- app/controllers/tasks_controller.rb | 12 +- app/views/tasks/_completed_on.html.erb | 2 +- app/views/tasks/index.html.erb | 12 +- app/views/tasks/show.html.erb | 29 +- config/routes.rb | 4 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 5720 ++++++++++++++++++++++++ 7 files changed, 5768 insertions(+), 11 deletions(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 0a478f229..65505d75e 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -30,8 +30,16 @@ def edit def update task = Task.find(params[:id]) - if task.update task_params - redirect_to tasks_path(task.id) + if task.update(task_params) + redirect_to tasks_path + end + end + + def complete + task = Task.find(params[:id]) + + if task.update(task_params) + redirect_to task_path(task.id) end end diff --git a/app/views/tasks/_completed_on.html.erb b/app/views/tasks/_completed_on.html.erb index 9b21656bf..209198b83 100644 --- a/app/views/tasks/_completed_on.html.erb +++ b/app/views/tasks/_completed_on.html.erb @@ -1,7 +1,7 @@ <% def completed_on %> <% @task = Task.find(params[:id]) %> <% if @task.completion_date? %> - <% return "TEST On: " %> + <% return "Completed On: " %> <%# else %> <%# return "you got this!" %> <% end %> diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 4298a0c54..51d2e6124 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -16,14 +16,18 @@ <% if task.complete %> <%= link_to task.name, task_path(task.id) %> - <%= link_to "uncomplete", task_path(task.id, + <%= link_to "☑️", update_task_path(task[:id], task: { complete: false, completion_date: nil}), - method: :patch %> + method: :put %> <% else %> <%= link_to task.name, task_path(task.id) %> - <%= link_to "complete", task_path(task.id, - task: {complete: true, completion_date: Time.now}), method: :patch %> + <%= link_to "🔘", update_task_path(task[:id], + task: {complete: true, completion_date: Time.now}), method: :put %> <% end %> + + <%= link_to "␡", delete_task_path(task.id), + data: { confirm: "Are you sure you want to delete this task?"}, + method: :delete%>
  • <% end %> diff --git a/app/views/tasks/show.html.erb b/app/views/tasks/show.html.erb index a46bf8d7e..59937ebdc 100644 --- a/app/views/tasks/show.html.erb +++ b/app/views/tasks/show.html.erb @@ -6,9 +6,34 @@ beyonce -

    - <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + + + + + +<% if @task.complete %> +

    + <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + + + <%= link_to "☑️", complete_task_path(@task, + task: { complete: false, completion_date: nil}), + method: :patch %> +

    +<% else %> +

    + <%= @task.id %>. <%= @task.name %>: <%= @task.description %> + <%= link_to "🔘", complete_task_path(@task, + task: {complete: true, completion_date: Time.now}), method: :patch %>

    +<% end %> + + + + + + + <%= render partial: "completed_on" %> diff --git a/config/routes.rb b/config/routes.rb index 721733df8..e18d60102 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -8,8 +8,8 @@ #update get "tasks/:id/edit", to: "tasks#edit", as: "edit_task" - put "tasks/:id", to: "tasks#update" - patch "tasks/:id", to: "tasks#update" + put "tasks/:id", to: "tasks#update", as: "update_task" + patch "tasks/:id", to: "tasks#complete", as: "complete_task" #read get '/tasks', to: 'tasks#index' diff --git a/db/development.sqlite3 b/db/development.sqlite3 index ca8b30cdb5990e0ace57605b7a27d56af0de1f36..8f0d14961d3a0555653be6bdd12e2aef29c6436e 100644 GIT binary patch delta 673 zcmYk3&1(}u7{+Iklr)3esKm5sVlo;e#YrBLzFJ|ceAQ`o>n4J1=0+|&t;IBw@C0^QyXZ*Dv(zAtFv;jN$kEVU@NR6Uqo zx}8evSS5kPWtADG!JT*x=t8PxGA=A4pt)M$J=B0ntlL+`H+!lOF7ml#s&K}Y*5-Nv zfr^_6Lw~;c_Frf-0Dm%{$`3=UL{?0uQ7<&wM%&;ynAx24x0loS?&?wpJNK45xZ^CZ ztl;kITDv4Z*+t*ftBhHSDRZ3?YPQ_kaRg3nWkdL>h5>O{HM5u^>&#$`##+*2&;|8g z(R-ChioyH|@4Ff9d^ew*<^%khSNKoL*Vk(#Zv!8wE{;M ar{TrFE~X9*A(&SjQ<-kO`LlQsp8N~cCa?1V delta 586 zcmYL`!D|yi7{zD8k|vWX71}~JX|in!g0#cz?9A@WAcT6*gNI0ysG-fqXi^HH7YT~D zcH>2%(lU3U2%ZFy9E5rn!Gj>=)QkNOyaca0$p$>k9OirTc)#}@Uc$pmcw#5O#cBSQ zxj#KRtK^caAe}e{$$sMa3eJ2)->q?~J(sc4nWbU=-WZ;qbaXGwTG5L<(yy9#hvy-L zdepL)xkEig0>v5ToJmRdj`mAP|Ey)TQ~%=l4sjJ>iVN(!+~c0L7u|3Wa0g|uwFQA* z*&gfP_wAzbp~@4A2ABsz2%1R01y#T!9_tqBxAmyGJ;xnaC?fS{xKWJFrD6nA5%^5@ zqv{$0*I(wQe}*?30h}2VMSSc_-SOK6g(tmo^WQ2LML|D+UqK@bRO^^YDG5x5g&V}kb&KIq=V87XCo zdRVZ4P??A}3kcK)C8J9Njd#|~8R^`vU6{6F3g$khl(|G+eGMw$`JfU@J5_E!dD?CF zyH0<<>vY;tV+EOU!;Dj4*r~2VeO9yWsSRVwW!SKJLI41tf!?57)^D0?`bRUV&qJiY ihJTRh*H?rn&z+K8v=*<$D>hGtjJV7b@BX$HVCf$~OO;#z diff --git a/log/development.log b/log/development.log index f7536beb3..f1ab5f2be 100644 --- a/log/development.log +++ b/log/development.log @@ -15657,3 +15657,5723 @@ Processing by TasksController#show as HTML Completed 200 OK in 32ms (Views: 29.2ms | ActiveRecord: 0.2ms) +Started GET "/tasks" for ::1 at 2017-03-26 12:43:11 -0700 + ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.1ms) +Started GET "/tasks" for ::1 at 2017-03-26 12:43:11 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 277ms (Views: 260.2ms | ActiveRecord: 0.9ms) + + +Completed 200 OK in 88ms (Views: 85.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 12:43: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 (3.7ms) +Completed 200 OK in 34ms (Views: 30.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/28" for ::1 at 2017-03-26 12:43:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (3.9ms) +Completed 200 OK in 37ms (Views: 29.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 12:43:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.9ms) +Completed 200 OK in 53ms (Views: 47.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A32+-0700" for ::1 at 2017-03-26 12:43:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"I6OzskcBU6eYfrycPDQee8cnAPhSIQclwUadGT6wxLKRDjrRcrY3t9BBP7N4E+8shuaiHPtDV/t5PasrpyE2Pg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:32 -0700"}, "id"=>"28"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:32 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:43 UTC], ["id", 28]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 10ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:43:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 53ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:43:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Z4K2jct/c0Y6F+uXJfNwFGAC/z5j4NsaoUSBvkX9UEPVLz/u/sgXVnIoaLhh1IFDIcNd2sqCi8QZP7eM3Gyizw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:43:45 UTC], ["id", 28]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 10ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:43:45 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 48ms (Views: 32.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A45+-0700" for ::1 at 2017-03-26 12:43:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"p2qkw1qQZOfcCsjbJpNYx/+3pQseIDFW5ZZF3mbVE/8Vxy2gbycA95Q1S/RitKmQvnYH77dCYYhd7XPs/0Thcw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:45 -0700"}, "id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:45 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:46 UTC], ["id", 28]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 11ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:43:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 53ms (Views: 36.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/29?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A46+-0700" for ::1 at 2017-03-26 12:43:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"wx7dCr9IBmW31aBuoY3h9xRzP4Vic6homKb4at4HJqpxs1Rpiv9idf/qI0HlqhCgVbKdYcsR+LYg3c5YR5bUJg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:46 -0700"}, "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:46 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:49 UTC], ["id", 29]] +  (2.7ms) commit transaction +Redirected to http://localhost:3000/tasks.29 +Completed 302 Found in 8ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks.29" for ::1 at 2017-03-26 12:43:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 49ms (Views: 32.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A49+-0700" for ::1 at 2017-03-26 12:43:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WCTqG4s0UEBror2AW3SqZ4hR+QPkfr+cImiiebi5Q+XqiWN4voM0UCOdPq8fU1swyZBb500c70KaE5RLISixaQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:49 -0700"}, "id"=>"30"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:49 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:50 UTC], ["id", 30]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.30 +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.30" for ::1 at 2017-03-26 12:43:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 52ms (Views: 32.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A50+-0700" for ::1 at 2017-03-26 12:43:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"NaJ25DdSFe1h4ZHOn2pINfKmjLeCyhdEFXAtIvUYVTmHD/+HAuVx/SneEuHbTblis2cuUyuoR5qtCxsQbImntQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:50 -0700"}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:50 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:51 UTC], ["id", 31]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.31 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.31" for ::1 at 2017-03-26 12:43:51 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 53ms (Views: 31.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A51+-0700" for ::1 at 2017-03-26 12:43:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"aLvh18+pCCsp1KtFqw3Ql62504haJwrB51a+8KcPG9HaFmi0+h5sO2HrKGrvKiHA7HhxbPNFWh9fLYjCPp7pXQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:51 -0700"}, "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:51 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:51 UTC], ["id", 32]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 12:43:52 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 47ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/34?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A52+-0700" for ::1 at 2017-03-26 12:43:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"lsI/70n4D/22hOq7B1L5R3yuJzjCc7OW0bQGVE339askb7aMfE9r7f67aZRDdQgQPW+F3GsR40hpzzBm1GYHJw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:52 -0700"}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:52 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:52 UTC], ["id", 34]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-26 12:43:52 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 58ms (Views: 35.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A52+-0700" for ::1 at 2017-03-26 12:43:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"kjcjVIzsRqFlo+M7dTHhNjTMGmrxrXQ4+BPkgqU7p9Qgmqo3uVsisS2cYBQxFhBhdQ24jljPJOZAaNKwPKpVWA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:52 -0700"}, "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:52 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:53 UTC], ["id", 33]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.33 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.33" for ::1 at 2017-03-26 12:43:53 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 50ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A43%3A53+-0700" for ::1 at 2017-03-26 12:43:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ge5EBBsdUu91C0cFNz5KQmTVdkhCGX1jSDTBjGsdzYAzQ81nLqo2/z00xCpzGbsVJRTUrOt7Lb3wT/e+8ow/DA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:43:53 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:43:53 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:43:54 UTC], ["id", 35]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-26 12:43:54 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.0ms) +Completed 200 OK in 53ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 12:43:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (6.5ms) +Completed 200 OK in 39ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 12:44: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.2ms) +Completed 200 OK in 33ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 12:44:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.5ms) + Rendered tasks/show.html.erb within layouts/application (7.5ms) +Completed 200 OK in 46ms (Views: 39.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"U7rDB0aGsOzR4JXqXknWIOcqxCCJIMiYoOZIVzCZDuHhF0pkczHU/JnfFsUabid3putmxCBCmEYYnX5lqQj8bQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:12 UTC], ["id", 35]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-26 12:44:12 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.7ms) +Completed 200 OK in 45ms (Views: 31.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 12:44:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (5.0ms) +Completed 200 OK in 32ms (Views: 28.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/34?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"09jzaaQIvaejKd8LOFdFxc4sw7ImGKhJGK+0qqkaZB1hdXoKkb/Zt+sWXCR8cLSSj+1hVo96+Jeg1IKYMIuWkQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:18 UTC], ["id", 34]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 8ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-26 12:44:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 49ms (Views: 32.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/2yQXZNtNfSsL5+QFfhFTDQh6f1GvE1gCltFl490OpJNwRk+ptpR5OQQHL9R37QbdeBLGe/eHb6yIHOlFuXIHg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"33"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:19 UTC], ["id", 33]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.33 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.33" for ::1 at 2017-03-26 12:44:19 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 54ms (Views: 36.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"bcmpdrHxb4KjkFRKCfyhA5V+GKreRVd1UzKqb9qzo1nfZCAVhEYLkuuv12VN21BU1L+6TncnB6vrSZxdQyJR1Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:20 UTC], ["id", 32]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 7ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 12:44:20 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.9ms) +Completed 200 OK in 47ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"1LLreAaHgubDiVOm6QuWLKxnkEW2BlJsg7vQs3QmPAJmH2IbMzDm9ou20ImtLGd77aYyoR9kArI7wOaB7bfOjg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:20 UTC], ["id", 31]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.31 +Completed 302 Found in 8ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.31" for ::1 at 2017-03-26 12:44:20 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 50ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XVMWIshYeYJvUuouUHihMTfTnreZlXNt6jJZgiRv+XXv/p9B/e8dkidtaQEUX1BmdhI8UzD3I7NSSW+wvf4L+Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:21 UTC], ["id", 30]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.30 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.30" for ::1 at 2017-03-26 12:44:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 46ms (Views: 30.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/29?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"TC35EgX1CLQJTGC0vnemNk+L8kPlqziGAGykPiypxgL+gHBxMEJspEFz45v6UFdhDkpQp0zJaFi4F5IMtTg0jg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:22 UTC], ["id", 29]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.29 +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks.29" for ::1 at 2017-03-26 12:44:22 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 53ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"KXoepNcvQtpzaTZABz0Zsqk17XKq44BqSArI/hDc0BOb15fH4pgmyjtWtW9DGujl6PRPlgOB0LTwcf7MiU0inw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:22 UTC], ["id", 28]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:44:22 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (2.8ms) +Completed 200 OK in 50ms (Views: 31.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:44:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+fzNqPJF8oj7eDNYSYXM/7to5bcrr6AZdb9icT26+clLUUTLx/KWmLNHsHcNoj2o+qlHU4LN8MfNxFRDpCsLRQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:44:23 UTC], ["id", 27]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:44:23 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 61ms (Views: 38.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:47:19 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (21.7ms) +Completed 500 Internal Server Error in 57ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"tasks", :id=>nil} missing required keys: [:id]): + 23: <%= link_to task.name, task_path(task.id) %> + 24: <%= link_to "complete", task_path(task.id, + 25: task: {complete: true, completion_date: Time.now}), method: :patch %> + 26: <%= link_to "Delete Task", delete_task_path(@task), + 27: data: { confirm: "Are you sure you want to delete this task?"}, + 28: method: :delete%> + 29: <% end %> + +app/views/tasks/index.html.erb:26:in `block in _app_views_tasks_index_html_erb___4560845039310857113_70274048759420' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___4560845039310857113_70274048759420' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (66.5ms) +Started GET "/tasks.27" for ::1 at 2017-03-26 12:48:08 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 49ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:50:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 48ms (Views: 33.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A50%3A21+-0700" for ::1 at 2017-03-26 12:50:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"qEJqpDRJuuQQaKqaK68YoUHSJhO7e2COH/54yd2tnOAa7+PHAf7e9FhXKbVviOn2ABOE9xIZMFCnhU77RDxubA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:50:21 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:50:21 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:50:26 UTC], ["id", 27]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:50:26 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 49ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:50:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"/FdYioMbmmf9qc40wU3e0Er/VeditrgvXRTiXIujITFO+tHptqz+d7WWTRuFai+HCz73A8vU6PHlb9RuEjLTvQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:50:50 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:50:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 51ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A50%3A50+-0700" for ::1 at 2017-03-26 12:50:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"vi/o6qSah+6rfC5RfrCkX+4WyNJrfU25R4obOT+PNJAMgmGJkS3j/uNDrX46l1UIr9dqNsIfHWf/8S0Lph7GHA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:50:50 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:50:50 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:50:51 UTC], ["id", 27]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:50:51 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 54ms (Views: 38.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:51:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"kkIIAGSZBDTknTXClBnH+Epw8b2G22xAtAzusKBA5zcg74FjUS5gJKyitu3QPjavC7FTWS+5PJ4Md9iCOdEVuw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:51:00 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:51:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 52ms (Views: 36.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:51:58 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 49ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A51%3A58+-0700" for ::1 at 2017-03-26 12:52:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"yKXzxpKKXP0/jA3ZKjol8lm/hnrjF8gOxMMEaG2UgPR6CHqlpz047XezjvZuHdSlGH4knkp1mNB8uDJa9AVyeA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:51:58 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.2ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:51:58 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:52:00 UTC], ["id", 27]] +  (4.2ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 13ms (ActiveRecord: 5.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:52:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 48ms (Views: 33.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A52%3A00+-0700" for ::1 at 2017-03-26 12:52:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0dWnZ64e9RfItfOq9tOhmxdi1cd2m9xjaxgpOnWB/sVjeC4Em6mRB4CKcIWy9FDMVqN3I9/5jL3TYx8I7BAMSQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:52:00 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:52:00 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:52:05 UTC], ["id", 28]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:52:05 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 56ms (Views: 37.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:52:08 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"BHorGA+VzDKb3jaCv9kQH1nGIOamg/47XOymJx4PkP+216J7OiKoItPhta37/uFIGAeCAg/hruXkl5AVh55icw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.8ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:52:08 UTC], ["id", 27]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:52:08 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 61ms (Views: 41.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A52%3A08+-0700" for ::1 at 2017-03-26 12:52:13 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Te3sm2aeitAGsa/BzddA8FBt2813cVARY4Pet2ErZ6f/QGX4UynuwE6OLO6J8LGnEax5Kd4TAM/b+OiF+LqVKw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:52:08 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.2ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:52:08 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:52:13 UTC], ["id", 27]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 12ms (ActiveRecord: 5.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:52:13 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 51ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:52:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"k6qisb/MJkcb30J2IL6v0IOzkJSMseyJ0P8G30Ng2B4hByvSintCV1PgwVlkmV6HwnIycCXTvFdohDDt2vEqkg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:52:16 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:52:16 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 49ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:52:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 50ms (Views: 34.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:52:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"wbpUK9FciPP1nJIwhGP2PvMXz5C8bSfBQuV8cjLljKpzF91I5Ovs472jER/ARAdpstZtdBUPdx/6nkpAq3R+Jg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:52:43 UTC], ["id", 28]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:52:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 50ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A52%3A43+-0700" for ::1 at 2017-03-26 12:52:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"1dWHI/OAyiPMcWiqAHHaalCwv2Igt4RosJpWxsF+nSBneA5AxjeuM4RO64VEVis9EXEdhonV1LYI4WD0WO9vrA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:52:43 -0700"}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:52:43 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:52:45 UTC], ["id", 28]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:52:45 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 62ms (Views: 43.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:52:46 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"C9g9PeA6+ZPEWLqGEkOAPsSSC3QyPGkVNVROA8NRALi5dbRe1Y2dg4xnOalWZHFphVOpkJteOcuNL3gxWsDyNA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:52:46 UTC], ["id", 28]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 10ms (ActiveRecord: 3.9ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:52:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 56ms (Views: 39.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:53:55 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 50ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A53%3A55+-0700" for ::1 at 2017-03-26 12:53:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"OfWeQ2sK1nc6L//ujT4dGSn2Fu4AhAFPBqd/63J7HZSLWBcgXr2yZ3IQfMHJGexOaDe0CqnmUZG+3EnZ6+rvGA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:53:55 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.4ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:53:55 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:53:58 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:53:58 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 46ms (Views: 31.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A53%3A58+-0700" for ::1 at 2017-03-26 12:54:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tCnCH1PMV0mud+nniJwA2q+GtkxvtIVurxFPxzKhTgQGhEt8ZnszWeZIasjMu/GN7kcUqMbW1bAXann1qzC8iA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:53:58 -0700"}, "id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:53:58 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:01 UTC], ["id", 28]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:54:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 52ms (Views: 34.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/29?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A54%3A01+-0700" for ::1 at 2017-03-26 12:54:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"a9rrl/kRVySxnoCcCBr2IQ2GG+/H7iBnqCvkEQqiGUrZd2L0zKYzNPmhA7NMPQd2TEe5C26McLkQUNIjkzPrxg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:54:01 -0700"}, "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:54:01 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:02 UTC], ["id", 29]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.29 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.29" for ::1 at 2017-03-26 12:54:02 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 54ms (Views: 36.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A54%3A02+-0700" for ::1 at 2017-03-26 12:54:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0UPgQeoKy6fMcbf++QqYVa2GdzFHjWRWjXk73Qtyw8dj7mki372vt4RONNG9LWkC7EfV1e7vNIg1Ag3vkuMxSw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:54:02 -0700"}, "id"=>"30"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 30], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:54:02 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:03 UTC], ["id", 30]] +  (4.1ms) commit transaction +Redirected to http://localhost:3000/tasks.30 +Completed 302 Found in 9ms (ActiveRecord: 4.8ms) + + +Started GET "/tasks.30" for ::1 at 2017-03-26 12:54:03 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 54ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A54%3A03+-0700" for ::1 at 2017-03-26 12:54:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"NCCHaqGsVcp+i8Lsw5FvQEWtAeoCkVYRg0ypGeyggbKGjQ4JlBsx2ja0QcOHtp4XBGyjDqvzBs87N58rdTFzPg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:54:03 -0700"}, "id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:54:03 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:04 UTC], ["id", 31]] +  (6.6ms) commit transaction +Redirected to http://localhost:3000/tasks.31 +Completed 302 Found in 12ms (ActiveRecord: 7.5ms) + + +Started GET "/tasks.31" for ::1 at 2017-03-26 12:54:04 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 58ms (Views: 41.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A54%3A04+-0700" for ::1 at 2017-03-26 12:54:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"3ke4/x0CRdFTw9TGhCB5zw591UQVWx2CHdziBC77R0Js6jGcKLUhwRv8V+nAB4iYT7x3oLw5TVylp9Q2t2q1zg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:54:04 -0700"}, "id"=>"32"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:54:04 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:05 UTC], ["id", 32]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 12:54:05 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 52ms (Views: 33.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/33?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A54%3A05+-0700" for ::1 at 2017-03-26 12:54:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"yAeZ+evLNnCoPEcuUaDr5f40duUQ64RMrODKbisNSq16qhCa3nxSYOADxAEVhxqyv/XUAbmJ1JIUm/xcspy4IQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:54:05 -0700"}, "id"=>"33"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:54:05 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:07 UTC], ["id", 33]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.33 +Completed 302 Found in 11ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks.33" for ::1 at 2017-03-26 12:54:07 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 57ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.33" for ::1 at 2017-03-26 12:54:27 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 54ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/34?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A54%3A27+-0700" for ::1 at 2017-03-26 12:54:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tzpq0LSPjcF1IU62yokHH8811jCIm9NMDv1fg9xSKx8Fl+OzgTjp0T0ezZmOrvZIjvR01CH5g5K2hmmxRcPZkw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:54:27 -0700"}, "id"=>"34"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 34], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:54:27 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:30 UTC], ["id", 34]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-26 12:54:30 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.1ms) +Completed 200 OK in 57ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A54%3A30+-0700" for ::1 at 2017-03-26 12:54:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"aODtPm0zCnFoaUNuj/76KxZiKgz8oMZfyu32y5ksVLvaTWRdWIRuYSBWwEHL2Qt8V6OI6FXCloFylsD5AL2mNw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:54:30 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:54:30 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:54:32 UTC], ["id", 35]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-26 12:54:32 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 55ms (Views: 35.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"OTrwuJQ/A/pv58R8xVXbs1VvbS9EWmSpgEsPp/PfevmLl3nboYhn6ifYR1OBcirkFK7Py+04NHc4MDmVak6IdQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:35 UTC], ["id", 27]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:54:35 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.2ms) +Completed 200 OK in 56ms (Views: 38.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"g/nf/vMONBQq9uRnxLtpCefYJ4tqrAR4bbBNZ3ta+OoxVFadxrlQBGLJZ0iAnJhephmFb8POVKbVy3tV4ssKZg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:36 UTC], ["id", 28]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 12:54:36 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 54ms (Views: 35.8ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/29?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"V06fymAIRshrk17J+Yqu9C32duF13wmAoJtH3IGK2Snl4xapVb8i2COs3ea9rV+jbDfUBdy9WV4Y4HHuGBsrpQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:37 UTC], ["id", 29]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.29 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.29" for ::1 at 2017-03-26 12:54:37 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 53ms (Views: 35.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2tEzbwJ7LjsRltfk6oLeqPgEJjricgSc69j7F3FDQdFofLoMN8xKK1mpVMuupS//ucWE3ksQVEJTo80l6NKzXQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:38 UTC], ["id", 30]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.30 +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.30" for ::1 at 2017-03-26 12:54:38 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 50ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"A6swNOnsqplutd+BskKeGTFIyDUZ1tbgB3/nerFBclWxBrlX3FvOiSaKXK72ZW9OcIlq0bC0hj6/BNFIKNCA2Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"31"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:39 UTC], ["id", 31]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.31 +Completed 302 Found in 9ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks.31" for ::1 at 2017-03-26 12:54:39 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 52ms (Views: 34.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hHSa5B0AKf7BawP9W7ncp+Os5dwpxCe5Y/TEPPWremo22ROHKLdN7olUgNIfni3wom1HOICmd2fbj/IObDqI5g==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:40 UTC], ["id", 32]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 5ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 12:54:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 54ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/33?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"XA2fFm1Id0FcUlNo097aAgFqZhaaPQamv/JM+/F5tCfuoBZ1WP8TURRt0EeX+StVQKvE8jNfVngHiXrJaOhGqw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"33"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 33], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:41 UTC], ["id", 33]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.33 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.33" for ::1 at 2017-03-26 12:54:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 54ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/34?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"SkzwjmlENslI0Vlnfxo/l83vJyK0b23d27586t6Nrrb44XntXPNS2QDu2kg7Pc7AjC6Fxh0NPQNjxUrYRxxcOg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:41 UTC], ["id", 34]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.34 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks.34" for ::1 at 2017-03-26 12:54:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 55ms (Views: 37.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:54:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xldml/m02QWJXk4qD6rQr1iyBad2A6DSZwRAo2MTsPh0+u/0zAO9FcFhzQVLjSH4GXOnQ99h8Azff3aR+oJCdA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:54:42 UTC], ["id", 35]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.35 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-26 12:54:42 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 49ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 12:54:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (5.8ms) +Completed 200 OK in 34ms (Views: 28.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 12:57: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 (4.8ms) +Completed 200 OK in 35ms (Views: 29.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A57%3A28+-0700" for ::1 at 2017-03-26 12:57:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0LttmtMtBC4muvbwMA6hHS+4O1hYm5WBNExdR0OFV41iFuT55ppgPm6Fdd90KVBKbnmZvPH5xV+MN2t12hSlAQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:57:28 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:57:28 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:57:30 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:57:30 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 51ms (Views: 34.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 12:57:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WkcWUBQ2w9PHmd+916u8YJAK0hwaiY4+OzEabI1EB4Ho6p8zIYGnw4+mXJKTjE030ctw+LPr3uCDSixeFNX1DQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 19:57:32 UTC], ["id", 27]] +  (2.3ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 3.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:57:32 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 51ms (Views: 34.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+12%3A57%3A32+-0700" for ::1 at 2017-03-26 12:57:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Bg+W/Ti03E38pWQbM55Wsi0oRFnyVPoidMV5PBuWtCa0oh+eDQO4XbSa5zR3uaflbOnmvVs2qvzMvk8OggdGqg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 12:57:32 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 12:57:32 -0700"], ["complete", true], ["updated_at", 2017-03-26 19:57:37 UTC], ["id", 27]] +  (3.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 4.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 12:57:37 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 56ms (Views: 40.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 12:57:58 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (6.1ms) +Completed 200 OK in 35ms (Views: 29.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 12:58:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (2.9ms) +Completed 200 OK in 23ms (Views: 20.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:00:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (3.0ms) +Completed 200 OK in 24ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 13:00: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/_complete_task.html.erb (186.3ms) + Rendered tasks/index.html.erb within layouts/application (191.3ms) +Completed 500 Internal Server Error in 201ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fd3e82b64c0> +Did you mean? @tasks): + 1: <% if task.complete %> + 2: <%= link_to task.name, task_path(task.id) %> + 3: <%= link_to "☑️", task_path(task.id, + 4: task: { complete: false, completion_date: nil}), + +app/views/tasks/_complete_task.html.erb:1:in `_app_views_tasks__complete_task_html_erb___2287394945904113255_70274054854460' +app/views/tasks/index.html.erb:17:in `block in _app_views_tasks_index_html_erb___4560845039310857113_70274054993900' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___4560845039310857113_70274054993900' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (16.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (76.1ms) +Started GET "/tasks" for ::1 at 2017-03-26 13:01:27 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.7ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/_complete_task.html.erb (215.4ms) + Rendered tasks/index.html.erb within layouts/application (220.6ms) +Completed 500 Internal Server Error in 227ms (ActiveRecord: 0.7ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fd3e53d06b0> +Did you mean? @tasks): + 1: <% if task.complete %> + 2: <%= link_to task.name, task_path(task.id) %> + 3: <%= link_to "☑️", task_path(task.id, + 4: task: { complete: false, completion_date: nil}), + +app/views/tasks/_complete_task.html.erb:1:in `_app_views_tasks__complete_task_html_erb___2287394945904113255_70274054997700' +app/views/tasks/index.html.erb:17:in `block in _app_views_tasks_index_html_erb___4560845039310857113_70274030405820' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___4560845039310857113_70274030405820' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.7ms) +Started GET "/tasks" for ::1 at 2017-03-26 13:01: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 (4.4ms) +Completed 200 OK in 25ms (Views: 22.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:03:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (176.0ms) +Completed 500 Internal Server Error in 187ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fd3e53e5830> +Did you mean? @task): + 11:

    + 12: + 13: <% if @task.complete %> + 14: <%= link_to @task.name, task_path(task.id) %> + 15: <%= link_to "☑️", task_path(@task.id, + 16: task: { complete: false, completion_date: nil}), + 17: method: :patch %> + +app/views/tasks/show.html.erb:14:in `_app_views_tasks_show_html_erb___2418359114788016450_70274030448900' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (13.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (72.9ms) +Started GET "/tasks/27" for ::1 at 2017-03-26 13:03:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.7ms) + Rendered tasks/show.html.erb within layouts/application (3.3ms) +Completed 200 OK in 26ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:03:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0QiZHnu/zolY4Q+JomKQqkxgJfhV4pio7EK26+91GGxjpRB9TgiqmRDejKbmRWH9DaGHHPyAyHZUOYDZduTq4A==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:03:34 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:03:34 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 51ms (Views: 34.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:03:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (7.2ms) +Completed 200 OK in 36ms (Views: 30.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A03%3A36+-0700" for ::1 at 2017-03-26 13:03:45 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"i2SJo9XKAtkc5R/0HnT4vL0ZIi21+pGto7beLfqy9Lc5yQDA4H1myVTanNtaUwnr/NiAyRyYwXMbzegfYyMGOw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:03:36 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:03:36 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:03:46 UTC], ["id", 27]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:03:46 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 53ms (Views: 34.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:03:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.9ms) + Rendered tasks/show.html.erb within layouts/application (8.8ms) +Completed 200 OK in 35ms (Views: 30.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:03:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"6sTcwTuhFNtpagyxcUgWK5iKeGZVpuNIjAFpG6u/yL9YaVWiDhZwyyFVj541b+d82UvagvzEs5Y0el8pMi46Mw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:03:49 UTC], ["id", 27]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:03:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 59ms (Views: 41.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:06:09 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.4ms) + Rendered tasks/show.html.erb within layouts/application (6.0ms) +Completed 200 OK in 41ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A06%3A09+-0700" for ::1 at 2017-03-26 13:06:10 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"3KlDxOkKr5xCOZWKzbe/19GTyQlwsuB6gUHiBfCMh+JuBMqn3L3LjAoGFqWJkE6AkFJr7dnQsKQ5OtQ3aR11bg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:06:09 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:06:09 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:06:10 UTC], ["id", 27]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:06:10 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 51ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:06:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ADnFMEmIY/hmYCbjxIgQ8iG1NPeJOWUQ41tlasu7lpeylExTfD8H6C5fpcyAr+GlYHSWEyBbNc5bIFNYUipkGw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:06:18 UTC], ["id", 27]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:06:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 53ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A06%3A18+-0700" for ::1 at 2017-03-26 13:06:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"aoesxrqsPqznUdIsAz55IaWDmqhvZOz6w6AgxOHXUHTYKiWljxtavK9uUQNHGYh25EI4TMYGvCR72xb2eEai+A==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:06:18 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:06:18 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:06:19 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:06:19 -0700 +Processing by TasksController#index as + 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.6ms) +Completed 200 OK in 53ms (Views: 35.6ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:06:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (5.8ms) +Completed 200 OK in 42ms (Views: 38.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:06:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (4.2ms) +Completed 200 OK in 37ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:06:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.9ms) + Rendered tasks/show.html.erb within layouts/application (5.5ms) +Completed 200 OK in 46ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:06:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.9ms) + Rendered tasks/show.html.erb within layouts/application (7.8ms) +Completed 200 OK in 38ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:06:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0ezEHs8jmhW/w4LqTfpMWIwtRLVzTIrLm5la2lfvryBjQU19+pT+Bff8AcUJ3b0PzezmUdou2hUj4mzozn5drA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:06:30 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:06:30 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 56ms (Views: 36.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:06:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (6.5ms) +Completed 200 OK in 36ms (Views: 31.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:07:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (3.7ms) +Completed 200 OK in 31ms (Views: 28.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 13:07:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 33ms (Views: 28.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:07:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (8.0ms) +Completed 200 OK in 55ms (Views: 49.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A07%3A37+-0700" for ::1 at 2017-03-26 13:07:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"8/+wp0dCdeDJkZnz7k9Fp/FWP4ezCdibMTAewWyfCk1BUjnEcvUR8IGuGtyqaLTwsJedYxpriEWJSyjz9Q74wQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:07:37 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:07:37 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:07:38 UTC], ["id", 27]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:07:38 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 50ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:07:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"3OANtnFpdCHB2MZ41Wz/ceAjri/SyG49G0jibclzGthuTYTVRN4QMYnnRVeRSw4moeIMy3uqPuOjM9RfUOLoVA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:07:40 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 4.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:07:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 54ms (Views: 36.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A07%3A40+-0700" for ::1 at 2017-03-26 13:07:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"8M6jwSrahi7WZB+EBQGxhrzWZyWKSk/qWHKewYxgI8NCYyqiH23iPp5bnKtBJkDR/RfFwSMoHzTgCajzFfHRTw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:07:40 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:07:40 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:07:41 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:07:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 52ms (Views: 35.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:07:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"mLPkXONa4nMuyd550dj16wouYkVsxYL8thNIKE2GmuUqHm0/1u2GY2b2XVaV/wS8S+/AocWn0iIOaH4a1BdoaQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:07:43 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:07:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 62ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:07:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (4.7ms) +Completed 200 OK in 34ms (Views: 29.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A07%3A43+-0700" for ::1 at 2017-03-26 13:07:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"BaEtaRbF+4MzS4rVibuw7dTqrv1lo41K9h1QH/0MjA63DKQKI3Kfk3t0CfrNnEG6lSsMGczB3ZROZmYtZJ1+gg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:07:43 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:07:43 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:07:44 UTC], ["id", 27]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:07:44 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 52ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:12:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (3.2ms) +Completed 200 OK in 25ms (Views: 22.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 13:12:45 -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 (8.9ms) +Completed 200 OK in 34ms (Views: 31.0ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:12:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (10.2ms) +Completed 200 OK in 54ms (Views: 47.5ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:12:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"m2tHPtB2Dtjgizw7JocA17jJZlD7AcAe8WMCOt8XJEgpxs5d5cFqyKi0vxRioPGA+QjEtFJjkMBJGDQIRobWxA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:12:49 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:12:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 59ms (Views: 35.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:12:51 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (11.5ms) +Completed 200 OK in 42ms (Views: 36.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A12%3A51+-0700" for ::1 at 2017-03-26 13:12:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ejLmgeypK2bk7bTNygbXyL83fsWf+3dl2PugfUIGip7In2/i2R5PdqzSN+KOISaf/vbcITaZJ7tggJZP25d4Eg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:12:51 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:12:51 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:12:52 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:12:52 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 53ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:12:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (3.8ms) +Completed 200 OK in 37ms (Views: 29.5ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-26 13:14:37 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (18.3ms) + Rendered tasks/edit.html.erb within layouts/application (22.5ms) +Completed 200 OK in 52ms (Views: 47.1ms | ActiveRecord: 0.3ms) + + +Started PUT "/tasks/27" for ::1 at 2017-03-26 13:14:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"dyu//x3Nz2qRv785ENpl6n1haQpkOiHTdO1jF2ltiGnFhjacKHqretmAPBZU/ZS9PKDL7s1YcQ3MllUl8Px65Q==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction +  (0.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:14:39 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 51ms (Views: 34.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:17:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 49ms (Views: 33.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:17:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ybafaquVNd3234A2RlfcwbeosEeD4u6kB+FOBVxsgSN7GxYJniJRzb7gAxkCcC2W9mkSoyqAvnq/mng3xf1zrw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:17:01 UTC], ["id", 27]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:17:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 48ms (Views: 32.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A17%3A01+-0700" for ::1 at 2017-03-26 13:17:02 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"KHE+kCOpSlBWBVUZ35nfLvIRAYjuKiMAPQsmoV0y55Oa3LfzFh4uQB461jabvi55s9CjbEdIc96FcBCTxKMVHw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:17:01 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:17:01 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:17:02 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:17:02 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 51ms (Views: 35.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:17:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.3ms) + Rendered tasks/show.html.erb within layouts/application (8.6ms) +Completed 200 OK in 33ms (Views: 29.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:17:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"slBdfB8J0X8qclfz1iB8FrXV02IenEUICwM6MN2+Jy4A/dQfKr61b2JN1NySB41B9BRxhrf+FdazeAwCRC/Vog==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:17:04 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:17:04 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.6ms) +Completed 200 OK in 58ms (Views: 41.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:17:47 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 49ms (Views: 33.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:17:48 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.1ms) + Rendered tasks/show.html.erb within layouts/application (9.5ms) +Completed 200 OK in 40ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A17%3A48+-0700" for ::1 at 2017-03-26 13:17:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"3UZZTw5IAWXxxW9sMu1xj5mfnpx0jxHGsX7XSRDNp1hv69AsO/9ldbn67EN2yoDY2F48eN3tQRgJBeF7iVxV1A==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:17:48 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:17:48 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:17:49 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:17:49 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 50ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:17:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (173.4ms) +Completed 500 Internal Server Error in 185ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `id' for #<#:0x007fd3e7444fe0>): + 12: + 13: <% if @task.complete %> + 14: <% @task.id %> + 15: <%= link_to "☑️", task_path(id, + 16: task: { complete: false, completion_date: nil}), + 17: method: :patch %> + 18: <% else %> + +app/views/tasks/show.html.erb:15:in `_app_views_tasks_show_html_erb___2418359114788016450_70274047423520' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.7ms) +Started GET "/tasks/27" for ::1 at 2017-03-26 13:18:17 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (3.4ms) +Completed 200 OK in 25ms (Views: 22.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:18:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"9KnsutZ4AlK9XNyotGL+f7oVhtNXvybFHF/d2k6VLbdGBGXZ489mQvVjX4fwRQ8o+9QkN/7ddhukJOvo1wTfOw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:18:19 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 1.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:18:19 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 52ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:18:21 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (7.8ms) +Completed 200 OK in 42ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A18%3A21+-0700" for ::1 at 2017-03-26 13:18:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"QyQ3dO6ydKg1nBlhA9KLCKtmwMPg42CTd1YK9AZxVrXxib4X2wUQuH2jmk5H9Xpf6qdiJ0mBME3PLTzGn+CkOQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:18:21 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:18:21 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:18:22 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:18:22 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.0ms) +Completed 200 OK in 53ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:18:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xBfJcEd8b0M/cs6/KEYJwWMjRmZfqxRUYpjNf3gSjYJ2ukATcssLU3dNTZBsYfiWIuLkgvbJRIra4/tN4YN/Dg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:18:23 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:18:23 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 57ms (Views: 37.2ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:18:25 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.6ms) + Rendered tasks/show.html.erb within layouts/application (7.9ms) +Completed 200 OK in 36ms (Views: 30.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:18:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (5.0ms) +Completed 200 OK in 26ms (Views: 23.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:18:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.8ms) + Rendered tasks/show.html.erb within layouts/application (6.4ms) +Completed 200 OK in 31ms (Views: 28.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A18%3A38+-0700" for ::1 at 2017-03-26 13:18:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FbjI7bLYTlDzS/xt7Ybkr/2lEIh0TW/qXA9nuvmvZoGnFUGOh28qQLt0f0KpoRX4vGSybN0vPzTkdFGIYD6UDQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:18:38 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:18:38 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:18:39 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:18:39 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 50ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:18:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (5.0ms) +Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-26 13:18:50 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.3ms) + Rendered tasks/edit.html.erb within layouts/application (5.0ms) +Completed 200 OK in 32ms (Views: 27.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:19:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (3.9ms) +Completed 200 OK in 25ms (Views: 22.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:19:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"F6snt4hZF5BOvtu0x3pAbyK34UiXG4b9lztNDdyGOgSlBq7Uve5zgAaBWJuDXbE4Y3ZDrD551iMvQHs/RRfIiA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:19:39 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:19:39 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 52ms (Views: 35.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A19%3A39+-0700" for ::1 at 2017-03-26 13:19:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4GCGhdXN3pgp8cd5neSo4BVvyhm79YvxFYtVsOg2avZSzQ/m4Hq6iGHORFbZw1m3VK5o/RKX2y+t8GOCcaeYeg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:19:39 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:19:39 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:19:40 UTC], ["id", 27]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 1.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:19:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 58ms (Views: 39.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:19:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"8dqgZ1oMWN/7eEuoDUPDt2IsMkY/m12xe/yl+CoJOJ5DdykEb7s8z7NHyIdJZDLgI+2Qopb5DW/Dh5PKs5jKEg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:19:41 UTC], ["id", 27]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:19:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 49ms (Views: 33.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:19:42 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (5.0ms) +Completed 200 OK in 34ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A19%3A42+-0700" for ::1 at 2017-03-26 13:19:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"EHfO754SdCYeBEqCum0AtkpEldC84KHLPOJfZOy7biei2keMq6UQNlY7ya3+SvHhC4U3NBWC8RWEmWlWdSqcqw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:19:42 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:19:42 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:19:43 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:19:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 54ms (Views: 37.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:19:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (8.5ms) +Completed 200 OK in 36ms (Views: 30.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:20:01 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FiXEWxGR24kFYE4vj8wOW//dp1vIVym7FYOUeV5HmBakiE04JCa/mU1fzQDL6/8MvhwFv2E1eWWt+KJLx9Zqmg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:20:01 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:20:01 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 56ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:20:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (3.3ms) +Completed 200 OK in 26ms (Views: 23.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 13:20:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.0ms) +Completed 200 OK in 40ms (Views: 36.6ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 13:23: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 (3.5ms) +Completed 200 OK in 23ms (Views: 20.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:23:10 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (187.5ms) +Completed 500 Internal Server Error in 197ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fd3e8198bd8> +Did you mean? @task): + 11: + 12: + 13: + 14: <% if task.complete %> + 15:

    <%= @task.id %>. + 16: <%= link_to @task.name, task_path %> : <%= @task.description %>

    + 17: + +app/views/tasks/show.html.erb:14:in `_app_views_tasks_show_html_erb___2418359114788016450_70274054410940' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.1ms) +Started GET "/tasks/27" for ::1 at 2017-03-26 13:23:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + Rendered tasks/show.html.erb within layouts/application (179.8ms) +Completed 500 Internal Server Error in 188ms (ActiveRecord: 0.1ms) + + + +ActionView::Template::Error (undefined local variable or method `task' for #<#:0x007fd3e4485c00> +Did you mean? @task): + 19: task: { complete: false, completion_date: nil}), + 20: method: :patch %> + 21: <% else %> + 22: <%= link_to task.name, task_path(task.id) %> + 23: <%= link_to "🔘", task_path(task.id, + 24: task: {complete: true, completion_date: Time.now}), method: :patch %> + 25: <% end %> + +app/views/tasks/show.html.erb:22:in `_app_views_tasks_show_html_erb___2418359114788016450_70274022389160' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (60.0ms) +Started GET "/tasks/27" for ::1 at 2017-03-26 13:26:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (4.0ms) +Completed 200 OK in 30ms (Views: 27.9ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A26%3A49+-0700" for ::1 at 2017-03-26 13:26:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"iE5BEbHlZyhYGQ7kuDcWUKzu2bfupzK/lwOyjtimCjA648hyhFIDOBAmjcv8EOcH7S97U0fFYmEveIS8QTf4vA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:26:49 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:26:49 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:26:51 UTC], ["id", 27]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:26:51 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 50ms (Views: 35.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:26:52 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (7.2ms) +Completed 200 OK in 42ms (Views: 34.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:27:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WaKZzlKgXKcKVAH62Dmi5PASjLmL2xp5puiQBZ8P5/vrDxCtZxc4t0JrgtWcHlOzsdMuXSK5Sqcek6Y3Bp4Vdw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:27:14 UTC], ["id", 27]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:27:14 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.9ms) +Completed 200 OK in 51ms (Views: 36.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:28:02 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 52ms (Views: 35.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:28:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (6.3ms) +Completed 200 OK in 37ms (Views: 32.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A28%3A04+-0700" for ::1 at 2017-03-26 13:28:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"mREMRBX5ItMhMWN0A3M0hUsBkOOba4NR+33kiICzw+YrvIUnIE5Gw2kO4FtHVMXSCsAyBzIJ049DBtK6GSIxag==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:28:04 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:28:04 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:28:05 UTC], ["id", 27]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:28:05 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.8ms) +Completed 200 OK in 70ms (Views: 41.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:28:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (6.9ms) +Completed 200 OK in 47ms (Views: 41.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27/edit?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:28:08 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/27/edit"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (8.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.1ms) +Started PATCH "/tasks/27/edit?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:28:32 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks/27/edit"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.5ms) +Started GET "/tasks/27/" for ::1 at 2017-03-26 13:28:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (5.1ms) +Completed 200 OK in 23ms (Views: 20.8ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:28:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"hKPcn4ZiuY6L4M/X2Bw2ajgJrVO3uX3iY+dD5eo6+b42DlX8s9XdnsPfTPicO8c9ecgPtx7bLTzbnHXXc6sLMg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.1ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:28:41 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:28:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 57ms (Views: 40.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:35:34 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 50ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:35:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (7.0ms) +Completed 200 OK in 37ms (Views: 31.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A35%3A35+-0700" for ::1 at 2017-03-26 13:35:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GOQZ6njF+XLsOzTJ0uIZhv7i+W5WiR9LVfMfd7CtETqqSZCJTXKdYqQEt+aWxejRvyNbiv/rT5XtiClFKTzjtg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:35:35 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:35:35 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:35:37 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:35:37 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 52ms (Views: 35.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:35:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (6.7ms) +Completed 200 OK in 35ms (Views: 29.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:36:28 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (3.6ms) +Completed 200 OK in 31ms (Views: 28.2ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:36:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"TU7ay1huyQI4zhVA0ftsjQL8aXXY+XD10fgl5i7G3t//41OobdmtEnDxlm+V3J3aQz3LkXGbICtpgxPUt1csUw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:36:31 UTC], ["id", 27]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:36:31 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 52ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A36%3A31+-0700" for ::1 at 2017-03-26 13:36:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"RPVtKNlgHiqlOX2hsBZLge/mrOTqGkUmDBayu1roa172WORL7Nd6Ou0G/o70MbrWricOAEN4Ffi0bYSJw3mZ0g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:36:31 -0700"}, "id"=>"27"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:36:31 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:36:33 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:36:33 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 54ms (Views: 33.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:36:34 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (8.0ms) +Completed 200 OK in 45ms (Views: 39.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:36:37 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"HJnYBc1f+3vU8YmoCaQLUVUJJcTDqmv8YJ9Fe72h8DeuNFFm+Oifa5zOCodNg/oGFMiHIGrIOyLY5HNJJDACuw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:36:37 UTC], ["id", 27]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:36:37 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 53ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 13:36: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.6ms) +Completed 200 OK in 25ms (Views: 23.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/2" for ::1 at 2017-03-26 13:36:53 -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:22:in `show' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.9ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.1ms) +Started GET "/tasks/27" for ::1 at 2017-03-26 13:36:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (9.0ms) +Completed 200 OK in 36ms (Views: 31.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:37:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.7ms) + Rendered tasks/show.html.erb within layouts/application (3.3ms) +Completed 200 OK in 25ms (Views: 21.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:37:38 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (4.9ms) +Completed 200 OK in 26ms (Views: 23.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A37%3A38+-0700" for ::1 at 2017-03-26 13:37:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"dubQgSKs4cGh/fpA93V5faljN1dLXiDlL55+0VMwgNLES1niFxuF0enCeW+zUogq6KKVs+I8cDuX5UjjyqFyXg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:37:38 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:37:38 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:37:44 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:37:44 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.6ms) +Completed 200 OK in 62ms (Views: 39.1ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:38:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"o9zJqfnbSTW96ErVA2pcelCffu82BZInQL24MpjEi+0RcUDKzGwtJfXXyfpHTa0tEV7cC59nwvn4xo4AAVV5YQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:38:21 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:38:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 59ms (Views: 40.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A38%3A21+-0700" for ::1 at 2017-03-26 13:38:22 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ALEEid+PPq6Td+Za7cc2SW8kHmURVP7slaUyuU3frCuyHI3q6jhavttIZXWp4MceLuW8gbg2rjIt3gSL1E5epw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:38:21 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:38:21 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:38:22 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:38:22 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 53ms (Views: 35.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:38:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (7.0ms) +Completed 200 OK in 34ms (Views: 28.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:38:24 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.7ms) + Rendered tasks/show.html.erb within layouts/application (7.3ms) +Completed 200 OK in 35ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:38:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (8.5ms) +Completed 200 OK in 43ms (Views: 38.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:38:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.6ms) + Rendered tasks/show.html.erb within layouts/application (9.0ms) +Completed 200 OK in 44ms (Views: 39.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:38:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.8ms) + Rendered tasks/show.html.erb within layouts/application (7.5ms) +Completed 200 OK in 50ms (Views: 45.3ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:38:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (7.7ms) +Completed 200 OK in 40ms (Views: 35.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:39:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (3.8ms) +Completed 200 OK in 25ms (Views: 23.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:39:06 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Lm/i0bNi73ixHm3s3gWXBLK+P4xxAR727dB9ZLXDHCScwmuyhtWLaPkh7sOaImZT83+daNhjTihVq0tWLFLuqA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:39:06 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:39:06 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 52ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A39%3A06+-0700" for ::1 at 2017-03-26 13:39:24 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"BPZhyl6rHffYYtTI3wtfYjS6aQhu9i7pt2mLjZ7CSwm2W+ipaxx555BdV+ebLK41dXvL7MeUfjcPEr2/B1O5hQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:39:06 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (3.7ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:39:06 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:39:24 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 12ms (ActiveRecord: 5.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:39:24 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 57ms (Views: 39.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A39%3A24+-0700" for ::1 at 2017-03-26 13:39:26 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xeVDajAdnwMB7Po55nE8KWr+Z5n8xXftxpzPeMc1VrB3SMoJBar7E0nTeRaiVs1+Kz/FfVWnJzN+5/lKXqSkPA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:39:24 -0700"}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:39:24 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:39:26 UTC], ["id", 28]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 5ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 13:39:26 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 55ms (Views: 36.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/29?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A39%3A26+-0700" for ::1 at 2017-03-26 13:39:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Qh9D0sV05nM3+vsFrdDbmiiMPpbINFpu5IjFj+2DmbTwssqx8MOCY3/FeCrp9yrNaU2ccmFWCrBc8/O9dBJrOA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:39:26 -0700"}, "id"=>"29"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:39:26 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:39:29 UTC], ["id", 29]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.29 +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.29" for ::1 at 2017-03-26 13:39:29 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 53ms (Views: 36.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/30?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A39%3A29+-0700" for ::1 at 2017-03-26 13:39:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"zrMxMzaneaNdfKnjEShVb28wsmoqlkTplid5jDdi+gh8HrhQAxAdsxVDKsxVD6Q4LvEQjoP0FDcuXE++rvMIhA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:39:29 -0700"}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:39:29 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:39:32 UTC], ["id", 30]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.30 +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.30" for ::1 at 2017-03-26 13:39:32 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 52ms (Views: 34.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:39:36 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"CXDD68H74A/A04FaQQnu5WEU2AA4fdYuwAkMLAp7Fne73UqI9EyEH4jsAnUFLh+yINV65JEfhvB4cjoek+rk+w==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:39:36 UTC], ["id", 28]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 8ms (ActiveRecord: 3.3ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 13:39:36 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 56ms (Views: 39.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A39%3A36+-0700" for ::1 at 2017-03-26 13:39:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"DOF2u7smi2coLOdNsyaGZdOLYTfPj1TC1p8hDBtbdoC+TP/YjpHvd2ATZGL3AXcykkrD02btBBxu5Bc+gsqEDA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:39:36 -0700"}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:39:36 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:39:40 UTC], ["id", 28]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.28 +Completed 302 Found in 6ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.28" for ::1 at 2017-03-26 13:39:40 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 51ms (Views: 34.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:41:06 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (4.1ms) +Completed 200 OK in 32ms (Views: 28.3ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks.27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:41:07 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.27"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.0ms) +Started GET "/tasks" for ::1 at 2017-03-26 13:41: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 29ms (Views: 26.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:41:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"7Az87jN3RlISwYq4tH5+KfZQR+H//VPA8Y9oJR36JZ1eoXWNBsAiQlr+CZfwWY9+t5HlBVafAx5J9F4XhGvXEQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:41:33 UTC], ["id", 27]] +  (4.2ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 4.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:41:33 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 51ms (Views: 34.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A41%3A33+-0700" for ::1 at 2017-03-26 13:41:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"74LYI/X/C9JrD+8Ad/MMRXRlF2kfY+KCp98+be7BfOBdL1FAwEhvwiMwbC8z1P0SNaS1jbYBslwfpAhfd1CObA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:41:33 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.7ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:41:33 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:41:35 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:41:35 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 54ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:41:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (7.5ms) +Completed 200 OK in 36ms (Views: 31.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 13:41:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"TPYnGeuWomjWWbMTT2xMBbTiU8qzIGWHlqzA7FgIHvX+W6563iHGeJ5mMDwLS71S9SPxLhpCNVku1/bewZnseQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-26 20:41:39 UTC], ["id", 27]] +  (4.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 5.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:41:39 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 58ms (Views: 41.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:41:41 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (6.3ms) +Completed 200 OK in 37ms (Views: 31.4ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+13%3A41%3A41+-0700" for ::1 at 2017-03-26 13:41:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"5KGc6LB0fZQYLJXBtIEmBqwjp43J8TyX+xapJZHjXJtWDBWLhcMZhFATFu7wptdR7eIFaWCTbElDbZ8XCHKuFw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 13:41:41 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 13:41:41 -0700"], ["complete", true], ["updated_at", 2017-03-26 20:41:43 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 13:41:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 64ms (Views: 49.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 13:41:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (5.4ms) +Completed 200 OK in 45ms (Views: 39.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:06:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (1.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (3.9ms) + Rendered tasks/show.html.erb within layouts/application (29.9ms) +Completed 200 OK in 210ms (Views: 145.0ms | ActiveRecord: 1.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:12:39 -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.8ms) +Completed 200 OK in 38ms (Views: 33.6ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:12:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"PUSL599PeL/BhxGj26/iOwELeMAV69mMvUF7ejNtz1mP6QKE6vgcr4m4koyfiBNsQMraJLyJiVIFOk1Iqvw91Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (1.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:12:41 UTC], ["id", 27]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:12:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.7ms) +Completed 200 OK in 64ms (Views: 42.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:12:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (4.2ms) +Completed 200 OK in 42ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:15:06 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (1.0ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.9ms) +Completed 200 OK in 38ms (Views: 34.2ms | ActiveRecord: 1.0ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A15%3A06+-0700" for ::1 at 2017-03-26 19:15:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"h3/cw5SsvrOGX5GMRqjIAEybRYFL3UBgkUVKM7SdHks10lWgoRvao85gEqMCjzlXDVrnZeK/EL4pPnwBLQzsxw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:15:06 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:15:06 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:15:14 UTC], ["id", 27]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:15:14 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.7ms) +Completed 200 OK in 66ms (Views: 47.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:15:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"oB5tU9Fu8aX3liu0dG6JOc9fWn9+VAQq4TuQl/3iwYUSs+Qw5NmVtb+pqJswSXhujp74m9c2VPRZQKalZHMzCQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:15:17 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:15:17 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 53ms (Views: 33.6ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A15%3A17+-0700" for ::1 at 2017-03-26 19:15:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"LC9Z1jyIj0JS/KP9oT7MOPDBMHsZXXo3YxZQG55S1omegtC1CT/rUhrDINLlGT1vsQCSn7A/KunbbWYpB8MkBQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:15:17 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:15:17 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:15:18 UTC], ["id", 27]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:15:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 55ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:15:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FvYJo5mua7hrXfGBUi19YqZWw5YGglRmti8RyaO4jvWkW4DArBkPqCNicq4WCow155dhcq/gBLgOVCf7Oil8eQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:15:19 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:15:19 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 53ms (Views: 34.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:15:20 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (4.5ms) +Completed 200 OK in 37ms (Views: 30.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:15:25 -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 (14.9ms) +Completed 200 OK in 39ms (Views: 34.4ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A15%3A25+-0700" for ::1 at 2017-03-26 19:15:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"WRKF4CqWN05bhgBNIznw/wjtsa3FaC/9idh2ZKVWKvDrvwyDHyFTXhO5g2JnHgGoSSwTSWwKfyMxo0BWPMfYfA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:15:25 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:15:25 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:15:34 UTC], ["id", 27]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:15:34 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 50ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:17:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"4XM4ug4SOLKSOp7KNpLWbhAu3LCcgSahtlv9hFakbY1T3rHZO6VcotoFHeVytSc5Ue9+VDXjdn8OIMu2zzWfAQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:17:44 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:17:44 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 49ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:17: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 33ms (Views: 28.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A17%3A55+-0700" for ::1 at 2017-03-26 19:18:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"p5lzXXZasxfC/UuXHhiMp7ArZTDSY93KOjNMxfq5RQwVNPo+Q+3XB4rCyLhaP33w8erH1HsBjRSCSHr3Yyi3gA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:17:55 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:17:55 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:18:00 UTC], ["id", 27]] +  (4.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 5.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:18:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 56ms (Views: 40.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:18:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.8ms) + Rendered tasks/show.html.erb within layouts/application (11.1ms) +Completed 200 OK in 37ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:18:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"v05AfAM7s7hj6AfXpWRvHRthdNEzFmQj6tcrlVR1/LwN48kfNozXqCvXhPjhQ55KWqDWNZp0NP1SrB2nzeQOMA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:18:12 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 4ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:18:12 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 54ms (Views: 34.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:18:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (7.0ms) +Completed 200 OK in 37ms (Views: 31.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A18%3A18+-0700" for ::1 at 2017-03-26 19:18:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"oNRCa09XaqEsUhhtqhzsBx1ILQoEhQxOi6dEed3fKncSecsIeuAOsWRtm0LuOx1QXImP7q3nXJAz3HJLRE7Y+w==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:18:18 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:18:18 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:18:21 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:18:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 52ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.2ms) +Completed 200 OK in 63ms (Views: 39.1ms | ActiveRecord: 0.9ms) + + +Started GET "/tasks." for ::1 at 2017-03-26 19:19:22 -0700 + +ActionController::RoutingError (No route matches [GET] "/tasks."): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (4.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.4ms) +Started GET "/tasks" for ::1 at 2017-03-26 19:19: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 (4.0ms) +Completed 200 OK in 26ms (Views: 23.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:19:27 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"v8uzyGzLj5KvWjMAIKrODmTr8V8I6THhUXXm2bn3EVQNZjqrWXzrgudlsC9kjT9ZJSpTu6GLYT/pDtDrIGbj2A==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:19:27 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:27 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.4ms) +Completed 200 OK in 62ms (Views: 45.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A19%3A27+-0700" for ::1 at 2017-03-26 19:19:29 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"OI/bYyJpT+84kW0yGCMQnHQJ542sbfUzxU2clsIwDSeKIlIAF94r/3Cu7h1cBOHLNchFaQUPpe19NqqkW6H/qw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:19:27 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:19:27 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:19:29 UTC], ["id", 27]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:29 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 52ms (Views: 36.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:19:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"o68nLmJJgSAz+kp6b9sPRAKOHgmR/eWqnztPcIdNvM8RAq5NV/7lMHvFyVUr/P4TQ0+87TiftXQnQHlCHtxOQw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:19:30 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:30 -0700 +Processing by TasksController#index as + 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.7ms) +Completed 200 OK in 57ms (Views: 35.9ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A19%3A30+-0700" for ::1 at 2017-03-26 19:19:31 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"b8YcNcLN7suhlXn7ONKADb9RMct2hodQ7BDmhzIBXdzda5VW93qK2+mq+tR89XFa/pCTL9/k145Ua9C1q5CvUA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:19:30 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:19:30 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:19:31 UTC], ["id", 27]] +  (3.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 3.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:31 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 50ms (Views: 32.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:19:32 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (10.3ms) +Completed 200 OK in 42ms (Views: 37.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:19:34 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+4pmBYrzmhKZQ3bPHOzUaG+Kv5cuamvr3jM50NZoqkFJJ+9mv0T+AtF89eBYyyU/Lksdc4cIOzVmSA/iT/lYzQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:19:34 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:34 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 53ms (Views: 33.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A19%3A34+-0700" for ::1 at 2017-03-26 19:19:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"je6XS6QdhijdgSMQSoZW+yyrkccmB7YHMWKrvs1MFGo/Qx4okariOJW+oD8OoaesbWozI49l5tmJGZ2MVN3m5g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:19:34 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:19:34 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:19:38 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 1.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:38 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 50ms (Views: 34.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:19:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"UunrOgZ00RErZhJ/9+51/Nga9/FnlI9r4bFIp4IAFgPgRGJZM8O1AWNZkVCzyYSrmdtVFc7237VZyn6VG5Hkjw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:19:39 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:39 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.8ms) +Completed 200 OK in 52ms (Views: 35.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:19:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.6ms) + Rendered tasks/show.html.erb within layouts/application (9.1ms) +Completed 200 OK in 41ms (Views: 37.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A19%3A39+-0700" for ::1 at 2017-03-26 19:19:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"pk1wlDtLBHAYvIAOeBk7DNrfgznLuifmOzpmZJkOuREU4Pn3DvxgYFCDAyE8Pspbmx4h3WLYdziDQVBWAJ9LnQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:19:39 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:19:39 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:19:41 UTC], ["id", 27]] +  (3.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:19:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.3ms) +Completed 200 OK in 53ms (Views: 37.2ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:20:03 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"CypDFe5RzTXcJsAfxqkDwAW4x6JRLw2Z81/Xwm88ARm5h8p22+apJZQZQzCCjvKXRHllRvhNXUdLJOHw9q3zlQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:20:03 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 18ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:20:03 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.9ms) +Completed 200 OK in 49ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A20%3A03+-0700" for ::1 at 2017-03-26 19:20:04 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"HRb/dF30tNUXhkRBwuf4mRBLXaMNb/rotFHhIoHmhvCvu3YXaEPQxV+5x26GwAnOUYr/R6QNqjYMKtcQGHd0fA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:20:03 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:20:03 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:20:04 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:20:04 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.5ms) +Completed 200 OK in 56ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:20:05 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"JzDik8k6dNVSkfAp8kSfiPjezOu8GmMUdyxyRiMd/bWVnWvw/I0QxRqucwa2Y27fuR9uDxV4M8rPV0R0uowPOQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:20:05 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:20:05 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 57ms (Views: 37.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:20: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 (6.8ms) +Completed 200 OK in 40ms (Views: 35.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A20%3A06+-0700" for ::1 at 2017-03-26 19:20:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0JnVgy+Q5xuZsUosk5PsJUQ68Ugu/FLXeadcOWYSfQhiNFzgGieDC9GOyQPXtB1yBftTrIeeAgnB3GoL/4OPhA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:20:06 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:20:06 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:20:09 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:20:09 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.6ms) +Completed 200 OK in 68ms (Views: 52.6ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:20:11 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"36GavZu47vDgRTTtxBPkO5rdJG0r7OCfZxVOUCPbo/ttDBPerg+K4Kh6t8KANBVs2xyGiYKOsEHfbnhiukpRdw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:20:11 UTC], ["id", 27]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 3.8ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:20:11 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 80ms (Views: 55.7ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:20:12 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (5.7ms) +Completed 200 OK in 34ms (Views: 29.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A20%3A12+-0700" for ::1 at 2017-03-26 19:20:14 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"cwKaHCZouonR1lkFZgcICvIhHdu1DEAL+0vk/VPCY5zBrxN/E9/emZnp2ioiIPlds+C/PxxuENVDMNLPylOREA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:20:12 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:20:12 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:20:14 UTC], ["id", 27]] +  (2.5ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 7ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:20:14 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 50ms (Views: 33.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:50:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 70ms (Views: 48.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:50:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.4ms) +Completed 200 OK in 52ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:50:44 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"xLFVah3G7iMGoqT8o7YyqVwHerKfPcRj6U7wQs5znYt2HNwJKHGKM06dJ9PnkcP+HcbYVjZflL1RNcZwV+JvBw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:50:45 UTC], ["id", 27]] +  (2.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:50:45 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 60ms (Views: 40.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A50%3A45+-0700" for ::1 at 2017-03-26 19:50:47 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"b+pNh2659VvAwPuuzUHAa/U2+WoyolnVaJgFV8SEb6TdR8TkWw6RS4j/eIGJZjE8tPdbjpvACQvQ4zNlXRWdKA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:50:45 -0700"}, "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:50:45 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:50:47 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 10ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:50:47 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 51ms (Views: 34.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/32" for ::1 at 2017-03-26 19:50:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.1ms) + Rendered tasks/show.html.erb within layouts/application (7.8ms) +Completed 200 OK in 35ms (Views: 29.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/32" for ::1 at 2017-03-26 19:51:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"32"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.9ms) + Rendered tasks/show.html.erb within layouts/application (9.8ms) +Completed 200 OK in 42ms (Views: 37.3ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A51%3A13+-0700" for ::1 at 2017-03-26 19:51:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"J2iAuDRf+cqNINhnb/7Co8T0fpFlye4LydpIbMmkVPyVxQnbAeid2sUfW0gr2TP0hTXcdcyrvtVxoX5eUDWmcA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:51:13 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:51:13 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:51:18 UTC], ["id", 32]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 10ms (ActiveRecord: 3.6ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 19:51:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.2ms) +Completed 200 OK in 56ms (Views: 40.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/31?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A51%3A18+-0700" for ::1 at 2017-03-26 19:51:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Lb6LoelpZkwBglvyuahPPMXZuT89Y20Txad2JVQIi5yfEwLC3N4CXEm92N39j75rhBgb25QBPc193EAXzZl5EA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:51:18 -0700"}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:51:18 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:51:20 UTC], ["id", 31]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks.31 +Completed 302 Found in 6ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks.31" for ::1 at 2017-03-26 19:51:20 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.3ms) +Completed 200 OK in 51ms (Views: 33.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.31" for ::1 at 2017-03-26 19:52:16 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.7ms) +Completed 200 OK in 58ms (Views: 39.4ms | ActiveRecord: 0.8ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:52:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (6.8ms) +Completed 200 OK in 40ms (Views: 33.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:52:21 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"PLjyD+W7VvgFhWgP6DLTpxlcHrAPeSKvZQDSSyzSJmyOFXts0Awy6E266yCsFSLwWJ28VKYbcnHde+R5tUPU4A==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:52:21 UTC], ["id", 27]] +  (5.0ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 11ms (ActiveRecord: 5.5ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:52:21 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 58ms (Views: 41.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 19:52:30 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (4.9ms) +Completed 200 OK in 33ms (Views: 28.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:52:32 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.1ms) +Completed 200 OK in 33ms (Views: 29.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:52:38 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"bkP76+37b8fJ6jIUgHcsw6D5AAjVQH680Sc7sC+5E8Hc7nKI2EwL14HVsTvEUN2U4Tii7HwiLmJpXA2CtijhTQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"32"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:52:38 UTC], ["id", 32]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 19:52:38 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.1ms) +Completed 200 OK in 49ms (Views: 33.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A52%3A38+-0700" for ::1 at 2017-03-26 19:52:40 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"0rHvCUPvVGlrusrIz/hcAaYK2sedYEqAiQs2gTLnw+lgHGZqdlgweSOFSeeL361W58t4IzQCGl4xcACzq3YxZQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:52:38 -0700"}, "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:52:38 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:52:40 UTC], ["id", 32]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 7ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 19:52:40 -0700 +Processing by TasksController#index as + 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.9ms) +Completed 200 OK in 64ms (Views: 41.0ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:52:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"E0Xh51X4M03R4koTs5+8GxOOIw/VcmWiFWmP/crxl6Sh6GiEYE9XXZndyTz3uE1MUk+B63wQNXytErnPU2BlKA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"32"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:52:41 UTC], ["id", 32]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 6ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 19:52:41 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 61ms (Views: 38.4ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A52%3A41+-0700" for ::1 at 2017-03-26 19:52:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"o1t9mvclP/Q8J2uBW67GiyOYxG/0rrl2Gcu/XYSgcIwR9vT5wpJb5HQY6K4fiTfcYllmi13M6aihsIlvHTGCAA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:52:41 -0700"}, "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:52:41 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:52:42 UTC], ["id", 32]] +  (4.8ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 10ms (ActiveRecord: 5.4ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 19:52:42 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 76ms (Views: 53.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/32?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:52:43 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"L/60WwiPDWFvNQjKQMmhoA+rqRE0gnNbsMaC/fPAivGdUz04PThpcScKi+UE7lD3TmoL9Z3gI4UIvbTPalF4fQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"32"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:52:43 UTC], ["id", 32]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks.32 +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks.32" for ::1 at 2017-03-26 19:52:43 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.1ms) +Completed 200 OK in 65ms (Views: 46.2ms | ActiveRecord: 0.5ms) + + +Started GET "/tasks/32" for ::1 at 2017-03-26 19:52:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"32"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 32], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.7ms) + Rendered tasks/show.html.erb within layouts/application (7.8ms) +Completed 200 OK in 43ms (Views: 37.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:54: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 (10.5ms) +Completed 200 OK in 35ms (Views: 30.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:54:08 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (6.3ms) +Completed 200 OK in 37ms (Views: 31.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-26 19:54:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (4.3ms) + Rendered tasks/edit.html.erb within layouts/application (8.1ms) +Completed 200 OK in 35ms (Views: 30.8ms | ActiveRecord: 0.6ms) + + +Started PUT "/tasks/27" for ::1 at 2017-03-26 19:54:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"UKO7GMBMlkSygZ9EuqAklatpVJwXi3+Q1lBVfq8My2jiDjJ79fvyVPq+HGv+h9XC6qj2eL7pL05uK2NMNp055A==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone", "description"=>"Fork and clone this repository to your computer does this still work?"}, "commit"=>"edit", "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Fork and clone this repository to your computer does this still work?"], ["updated_at", 2017-03-27 02:54:18 UTC], ["id", 27]] +  (7.1ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 13ms (ActiveRecord: 7.9ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:54:18 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 52ms (Views: 34.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:54:22 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (4.6ms) +Completed 200 OK in 35ms (Views: 27.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-26 19:54:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.6ms) + Rendered tasks/edit.html.erb within layouts/application (6.5ms) +Completed 200 OK in 34ms (Views: 29.3ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/27" for ::1 at 2017-03-26 19:54:28 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"3UXuCTfiCRMyGEAziuE2QOKRRPaMHqM4Szhyc+RDptpv6GdqAlVtA3onwxzOxscXo1DmEiV88+bzQ0RBfdJUVg==", "task"=>{"title"=>"baseline", "name"=>"Fork and clone", "description"=>"Fork and clone this repository to your computer"}, "commit"=>"edit", "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "Fork and clone this repository to your computer"], ["updated_at", 2017-03-27 02:54:28 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:54:28 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 52ms (Views: 33.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A54%3A28+-0700" for ::1 at 2017-03-26 19:54:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"haf6MHNMrWkYc6KM0/ifgWsyrw++ZPl3tp+ytaejFKI3CnNTRvvJeVBMIaOX327WKvMN6xcGqakO5ISHPjLmLg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:54:28 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:54:28 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:54:30 UTC], ["id", 27]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.27 +Completed 302 Found in 9ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks.27" for ::1 at 2017-03-26 19:54:30 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 55ms (Views: 33.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 19:54:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.4ms) + Rendered tasks/show.html.erb within layouts/application (7.5ms) +Completed 200 OK in 41ms (Views: 38.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:54:40 -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 (8.1ms) +Completed 200 OK in 35ms (Views: 30.2ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-26 19:54:45 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.7ms) + Rendered tasks/new.html.erb within layouts/application (4.3ms) +Completed 200 OK in 34ms (Views: 28.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-26 19:54:50 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Ke3fsM2j0IAPbpVJoi0H3KrInibkaOl/cqPbyqY862ibQFbT+BS0kEdRFmbmCvaL6wk8wk0KuaHK2O34P60Z5A==", "task"=>{"title"=>"baseline", "name"=>"test", "description"=>"test"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["description", "test"], ["created_at", 2017-03-27 02:54:50 UTC], ["updated_at", 2017-03-27 02:54:50 UTC], ["title", 0]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:54: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 (7.6ms) +Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/36?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A54%3A50+-0700" for ::1 at 2017-03-26 19:54:53 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"+D8QdSCieK4WixH5Kh8jmqKTFttDt321XwS03icn9WpKkpkWFRUcvl60ktZuONLN41K0P+rVLWvnf4LsvrYH5g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:54:50 -0700"}, "id"=>"36"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:54:50 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:54:53 UTC], ["id", 36]] +  (3.8ms) commit transaction +Redirected to http://localhost:3000/tasks.36 +Completed 302 Found in 10ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks.36" for ::1 at 2017-03-26 19:54:53 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (5.9ms) +Completed 200 OK in 52ms (Views: 36.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/36" for ::1 at 2017-03-26 19:54:53 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (5.5ms) +Completed 200 OK in 32ms (Views: 27.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/36/edit" for ::1 at 2017-03-26 19:54:57 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (3.1ms) + Rendered tasks/edit.html.erb within layouts/application (7.5ms) +Completed 200 OK in 35ms (Views: 29.9ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/36" for ::1 at 2017-03-26 19:55:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"4B1GJhdViMcOPp8hEUZ5XJa32PlcsS3ycquNvOs1wy1SsM9FIuLs10YBHA5VYYgL13Z6HfXTfSzK0LuOcqQxoQ==", "task"=>{"title"=>"baseline", "name"=>"test", "description"=>"test test"}, "commit"=>"edit", "id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "description" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "test test"], ["updated_at", 2017-03-27 02:55:00 UTC], ["id", 36]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks.36 +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks.36" for ::1 at 2017-03-26 19:55:00 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.0ms) +Completed 200 OK in 56ms (Views: 34.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/36" for ::1 at 2017-03-26 19:55:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.4ms) + Rendered tasks/show.html.erb within layouts/application (6.2ms) +Completed 200 OK in 34ms (Views: 28.9ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:55: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 (7.8ms) +Completed 200 OK in 43ms (Views: 39.7ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/36" for ::1 at 2017-03-26 19:55:11 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"43N50XuhtmwVq5YdLvAf94pZV9zWERIvdzevB6Ai9D1R3vCyThbSfF2UFTJq1+6gy5j1OH9zQvHPTJk1ObMGsQ==", "id"=>"36"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 36], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 36]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:55: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 (4.6ms) +Completed 200 OK in 27ms (Views: 24.6ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-26 19:55:13 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (2.3ms) + Rendered tasks/new.html.erb within layouts/application (7.4ms) +Completed 200 OK in 40ms (Views: 36.1ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-26 19:55:17 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"N+P8wwxjHO5mHrLvazOXiRpEEUiL5odn0Fyiu289zZGFTnWgOdR4/i4hMcAvFGbeW4WzrCKE17loJ5SJ9qw/HQ==", "task"=>{"title"=>"baseline", "name"=>"test", "description"=>"test"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.4ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["description", "test"], ["created_at", 2017-03-27 02:55:17 UTC], ["updated_at", 2017-03-27 02:55:17 UTC], ["title", 0]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 1.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:55:17 -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.3ms) +Completed 200 OK in 43ms (Views: 40.9ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/37" for ::1 at 2017-03-26 19:55:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"37"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 37], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 37], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (6.9ms) +Completed 200 OK in 47ms (Views: 42.0ms | ActiveRecord: 0.1ms) + + +Started DELETE "/tasks/37" for ::1 at 2017-03-26 19:55:23 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"gy+XPfeXleP5kTD6Dn+WuUFZXfr5zi0ssSJeEM4RreMxgh5ewiDx87Gus9VKWGfuAJj/HlCsffIJWWgiV4Bfbw==", "id"=>"37"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 37], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.2ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 37]] +  (1.0ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:55: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 25ms (Views: 22.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:57:07 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"vQolgJTPmruZAAEvAetmZmOYYJPGryOhr2Fo6xeT27oPp6zjoXj+q9E/ggBFzJcxIlnCd2/Nc38XGl7ZjgIpNg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:57:07 UTC], ["id", 27]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 20ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:57:07 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (3.8ms) +Completed 200 OK in 29ms (Views: 26.8ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/27/edit" for ::1 at 2017-03-26 19:57:11 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (5.8ms) + Rendered tasks/edit.html.erb within layouts/application (9.0ms) +Completed 200 OK in 38ms (Views: 31.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:57:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.8ms) +Completed 200 OK in 42ms (Views: 37.4ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A57%3A17+-0700" for ::1 at 2017-03-26 19:57:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"dGxX+Ral4CRGvZKnXDbNjtutFycJU4nIZRSIO22uyTjGwd6aIxKENA6CEYgYETzZmmy1w6Ax2Rbdb74J9D87tA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:57:17 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:57:17 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:57:18 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 10ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 19:57:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.7ms) + Rendered tasks/show.html.erb within layouts/application (7.7ms) +Completed 200 OK in 37ms (Views: 33.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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 (8.6ms) +Completed 200 OK in 34ms (Views: 25.8ms | ActiveRecord: 0.7ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:58:48 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GAjCXteQy+yj5M9a/444u4+qmz0p7KkasdPWFxC9+3yqpUs94iev/OvbTHW7qcnszms52YCO+cQJqOAliSwJ8A==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:58:48 UTC], ["id", 27]] +  (2.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 13ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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.3ms) +Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A58%3A48+-0700" for ::1 at 2017-03-26 19:58:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"AIUDxVXY/Cn/N40fuq7GHv9+PbHJw2Ds2I0CqvyLBZKyKIqmYG+YObcIDjD+iTdJvr+fVWChMDJg9jSYZRr3Hg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:58:48 -0700"}, "id"=>"27"} + Task Load (0.6ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:58:48 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:58:49 UTC], ["id", 27]] +  (0.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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.8ms) +Completed 200 OK in 25ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:58:49 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"CM0YqxQvUZTqOBfhN/NjD8gTaU/u69MBhMSXAa8buCS6YJHIIZg1hKIHlM5z1JJYidLLq0eJg988v6EzNopKqA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:58:49 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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.9ms) +Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A58%3A49+-0700" for ::1 at 2017-03-26 19:58:50 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rQ6V5I+sC2Xdhss1kfVy0ErouRxVtZMRsiLQS4ZouSwfoxyHuhtvdZW5SBrV0oOHCykb+PzXw88KWeZ5H/lLoA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:58:49 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:58:49 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:58:50 UTC], ["id", 27]] +  (3.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 12ms (ActiveRecord: 4.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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.1ms) +Completed 200 OK in 24ms (Views: 22.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:58:51 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"DNVEA2viYAd2UYpNBiAmnsidJAmUhjpd8yLgaEd8Yk2+eM1gXlUEFz5uCWJCB9fJiVyG7T3kaoNLWdZa3u2QwQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:58:51 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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.4ms) +Completed 200 OK in 27ms (Views: 24.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A58%3A51+-0700" for ::1 at 2017-03-26 19:58:52 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tEsJZiA9Z0SDVllKPbHHLGfb/hBq1K9s9KWsxRx6mJMG5oAFFYoDVMtp2mV5ljZ7Jhpc9MO2/7JM3pr3hetqHw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:58:51 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:58:51 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:58:52 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.5ms) +Completed 200 OK in 32ms (Views: 28.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:58:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"rcIqSif5a3pV7z+yeg3cUgdEjP5jRrNZULj7SmGHuwEfb6MpEk4Pah3QvJ0+Ki0FRoUuGsok44fow814+BZJjQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:58:54 UTC], ["id", 27]] +  (3.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 4.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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.0ms) +Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A58%3A54+-0700" for ::1 at 2017-03-26 19:58:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"X2Yaq4VzHhbwAPodCphL0SBHmnti+1uaZzinSVnmDLnty5PIsMR6Brg/eTJOv7qGYYY4n8uZC0TfQ5F7wHf+NQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:58:54 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:58:54 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:58:55 UTC], ["id", 27]] +  (0.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19: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 (3.9ms) +Completed 200 OK in 27ms (Views: 23.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:58:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ySNRCx1rXvBUXo5mxYvZQ+R+Mbx4GJ6AR5WD2t3vHoN7jthoKNw64BxhDUmBrCgUpb+TWNF6zl7/7rXoRH7sDw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:58:56 UTC], ["id", 27]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58: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.7ms) +Completed 200 OK in 29ms (Views: 25.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A58%3A56+-0700" for ::1 at 2017-03-26 19:58:56 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2qkH4t/CY8yTN1Hurrcg1D27+gXMCiLHpDtukadtF71oBI6B6nUH3NsI0sHqkNGDfHpY4WVochkcQFijPvzlMQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:58:56 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:58:56 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:58:56 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:58:56 -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.8ms) +Completed 200 OK in 28ms (Views: 25.8ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+19%3A58%3A56+-0700" for ::1 at 2017-03-26 19:59:00 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"ES6KG1YVPXeyxCu1DjmbKpPbGYG65h6SVQDwU2HenfKjgwN4Y6JZZ/r7qJpKHmp90hq7ZROETkzte8Zh+E9vfg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 19:58:56 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 19:58:56 -0700"], ["complete", true], ["updated_at", 2017-03-27 02:59:00 UTC], ["id", 35]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:59: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 (5.7ms) +Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 19:59:41 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"GDbSViiYsySSY3GclmYncSINz8N7mNF5VfebM5Q86t6qm1s1HS/XNNpc8rPSQdYmY8xtJ9L6gaftjK0BDa0YUg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 02:59:41 UTC], ["id", 35]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 19:59: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.9ms) +Completed 200 OK in 26ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 20:00:03 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.6ms) + Rendered tasks/show.html.erb within layouts/application (6.9ms) +Completed 200 OK in 35ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A00%3A03+-0700" for ::1 at 2017-03-26 20:00:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"jyhBjT5yyMCa4QljqW2+nhny9BH4RSZ7wdpQ0l8yE049hcjuC8Ws0NLeikztSk/JWDNW9VEndqV5oWbgxqPhwg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:00:03 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:00:03 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:00:17 UTC], ["id", 35]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:00: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 (5.0ms) +Completed 200 OK in 26ms (Views: 21.9ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:00:39 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"tr3iqeyufc2khd+ePOAMb5/u/C4/C7O1dd6R6k2jQQEEEGvK2RkZ3ey6XLF4x/043i9eypZp42vNpafY1DKzjQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:00:39 UTC], ["id", 35]] +  (0.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 1.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:00: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 (3.9ms) +Completed 200 OK in 28ms (Views: 24.3ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started GET "/tasks" for ::1 at 2017-03-26 20:01:37 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.4ms) +Completed 200 OK in 33ms (Views: 26.4ms | ActiveRecord: 0.8ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:01:39 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"24vDHRv2kjqw//2MqUHvB086+HJNey6fqKkCOwupff9pJkp+LkH2KvjAfqPtZh5QDvtaluQZfkEQ0jQJkjiPcw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:01:39 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:01:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (5.6ms) +Completed 200 OK in 33ms (Views: 30.2ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:01: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 (13.0ms) +Completed 200 OK in 39ms (Views: 36.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A01%3A41+-0700" for ::1 at 2017-03-26 20:01:43 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"kKXfK/FMReXAhnbZwvIQ9UXAlzgJvh3bRJwgXZlQJ/0iCFZIxPsh9Yi59faG1eGiBAE13KDcTQX85xZvAMHVcQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:01:41 -0700"}, "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:01:41 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:01:43 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 10ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:01:43 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (3.6ms) +Completed 200 OK in 33ms (Views: 30.6ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:01:44 -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.4ms) +Completed 200 OK in 41ms (Views: 38.8ms | ActiveRecord: 0.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:01:46 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (3.5ms) + Rendered tasks/show.html.erb within layouts/application (12.0ms) +Completed 200 OK in 42ms (Views: 35.8ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:01:48 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (13.6ms) +Completed 200 OK in 46ms (Views: 41.8ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:01:50 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"gZEj/oGcHPb6SSEDCVy9LI0V7hOzEPKXQi7olRRCkbczPKqdtCt45rJ2oixNe0x7zNRM9xpyokn6Vd6njdNjOw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:01:50 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 8ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:01:50 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (4.1ms) +Completed 200 OK in 26ms (Views: 22.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:01:52 -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.8ms) +Completed 200 OK in 43ms (Views: 38.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:02:36 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (9.5ms) +Completed 200 OK in 34ms (Views: 24.9ms | ActiveRecord: 0.9ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A02%3A36+-0700" for ::1 at 2017-03-26 20:02:39 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Cl6Ctbe2NqrT69FEKg2864nE2A0ioghGuX53g/a679u48wvWggFSupvUUmtuKk28yAV66YvAWJgBBUGxbysdVw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:02:36 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:02:36 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:02:39 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 12ms (ActiveRecord: 3.5ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:02:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (3.9ms) +Completed 200 OK in 27ms (Views: 23.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:02:42 -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 (7.5ms) +Completed 200 OK in 33ms (Views: 28.9ms | ActiveRecord: 0.9ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:02:44 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"vY9BxISx+pFfKieL1QhUU4KZ1/elBvW6Bi47oyGRUaMPIsinsQaegRcVpKSRL6UEw1h1EwxkpWS+VQ2RuACjLw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:02:44 UTC], ["id", 27]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 10ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:02:44 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.7ms) + Rendered tasks/show.html.erb within layouts/application (4.7ms) +Completed 200 OK in 38ms (Views: 29.2ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:02:47 -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.4ms) +Completed 200 OK in 35ms (Views: 32.1ms | ActiveRecord: 0.5ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A02%3A47+-0700" for ::1 at 2017-03-26 20:02:49 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Gp1KsAQPSNVH+sX4Pvg/eXN0+QDZDmnaIiLhaUh1HKuoMMPTMbgsxQ/FRtd6384uMrVb5HBsOQSaWddb0eTuJw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:02:47 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:02:47 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:02:49 UTC], ["id", 35]] +  (3.6ms) commit transaction +Redirected to http://localhost:3000/tasks/35 +Completed 302 Found in 9ms (ActiveRecord: 4.3ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 20:02:49 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (4.2ms) +Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:03:38 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.4ms) +Completed 200 OK in 35ms (Views: 31.9ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A03%3A38+-0700" for ::1 at 2017-03-26 20:03:40 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.0ms) +Started PATCH "/tasks?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A03%3A38+-0700" for ::1 at 2017-03-26 20:05:41 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.0ms) +Started GET "/tasks" for ::1 at 2017-03-26 20:05: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 (4.0ms) +Completed 200 OK in 25ms (Views: 22.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks.27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A05%3A45+-0700" for ::1 at 2017-03-26 20:05:47 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.27"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (3.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (75.2ms) +Started PATCH "/tasks.27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A05%3A45+-0700" for ::1 at 2017-03-26 20:06:13 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.27"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (4.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.9ms) +Started GET "/tasks" for ::1 at 2017-03-26 20:06: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.5ms) +Completed 200 OK in 27ms (Views: 24.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks.35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:06:21 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.35"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (4.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.1ms) +Started GET "/tasks.35" for ::1 at 2017-03-26 20:06:44 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.6ms) +Completed 200 OK in 47ms (Views: 32.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks.35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:06:46 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.35"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.7ms) +Started GET "/tasks.35" for ::1 at 2017-03-26 20:06:50 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.7ms) +Completed 200 OK in 49ms (Views: 32.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks.35" for ::1 at 2017-03-26 20:07:12 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (4.3ms) +Completed 200 OK in 49ms (Views: 32.8ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:07:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (12.2ms) +Completed 200 OK in 42ms (Views: 35.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:07: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 (5.4ms) +Completed 200 OK in 31ms (Views: 27.0ms | ActiveRecord: 0.3ms) + + +Started PATCH "/tasks.35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:07:17 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.35"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.5ms) +Started PATCH "/tasks.35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:10:04 -0700 + +ActionController::RoutingError (No route matches [PATCH] "/tasks.35"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.2ms) +Started GET "/tasks.35" for ::1 at 2017-03-26 20:10:09 -0700 +Processing by TasksController#index as + Rendering tasks/index.html.erb within layouts/application + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (3.4ms) +Completed 200 OK in 46ms (Views: 31.8ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks.27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A10%3A09+-0700" for ::1 at 2017-03-26 20:10:11 -0700 + +ActionController::RoutingError (No route matches [PUT] "/tasks.27"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.7ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (72.7ms) +Started GET "/tasks" for ::1 at 2017-03-26 20:11:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" +Started GET "/tasks" for ::1 at 2017-03-26 20:11:01 -0700 + Rendered tasks/index.html.erb within layouts/application (160.0ms) +Processing by TasksController#index as HTML +Completed 500 Internal Server Error in 171ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `edit_tasks_path' for #<#:0x007fd3e9aa43e8> +Did you mean? edit_task_path): + Rendering tasks/index.html.erb within layouts/application + 21: method: :put %> + 22: <% else %> + 23: <%= link_to task.name, task_path(task.id) %> + 24: <%= link_to "🔘", edit_tasks_path(task[:id], + 25: task: {complete: true, completion_date: Time.now}), method: :put %> + 26: <% end %> + 27: + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + + Rendered tasks/index.html.erb within layouts/application (138.6ms) +app/views/tasks/index.html.erb:24:in `block in _app_views_tasks_index_html_erb___4560845039310857113_70274067539680' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___4560845039310857113_70274067539680' +Completed 500 Internal Server Error in 147ms (ActiveRecord: 0.3ms) + + + +ActionView::Template::Error (undefined method `edit_tasks_path' for #<#:0x007fd3e80b1378> +Did you mean? edit_task_path): + 21: method: :put %> + 22: <% else %> + 23: <%= link_to task.name, task_path(task.id) %> + 24: <%= link_to "🔘", edit_tasks_path(task[:id], + 25: task: {complete: true, completion_date: Time.now}), method: :put %> + 26: <% end %> + 27: + +app/views/tasks/index.html.erb:24:in `block in _app_views_tasks_index_html_erb___4560845039310857113_70274053936780' +app/views/tasks/index.html.erb:7:in `_app_views_tasks_index_html_erb___4560845039310857113_70274053936780' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (11.8ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (131.5ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (142.4ms) +Started GET "/tasks" for ::1 at 2017-03-26 20:12: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 (4.3ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/27/edit?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A12%3A04+-0700" for ::1 at 2017-03-26 20:12:05 -0700 + +ActionController::RoutingError (No route matches [PUT] "/tasks/27/edit"): + +actionpack (5.0.2) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' +web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app' +web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch' +web-console (3.4.0) lib/web_console/middleware.rb:18:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' +railties (5.0.2) lib/rails/rack/logger.rb:36:in `call_app' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `block in call' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `block in tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:26:in `tagged' +activesupport (5.0.2) lib/active_support/tagged_logging.rb:69:in `tagged' +railties (5.0.2) lib/rails/rack/logger.rb:24:in `call' +sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/request_id.rb:24:in `call' +rack (2.0.1) lib/rack/method_override.rb:22:in `call' +rack (2.0.1) lib/rack/runtime.rb:22:in `call' +activesupport (5.0.2) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/executor.rb:12:in `call' +actionpack (5.0.2) lib/action_dispatch/middleware/static.rb:136:in `call' +rack (2.0.1) lib/rack/sendfile.rb:111:in `call' +railties (5.0.2) lib/rails/engine.rb:522:in `call' +puma (3.8.2) lib/puma/configuration.rb:224:in `call' +puma (3.8.2) lib/puma/server.rb:600:in `handle_request' +puma (3.8.2) lib/puma/server.rb:435:in `process_client' +puma (3.8.2) lib/puma/server.rb:299:in `block in run' +puma (3.8.2) lib/puma/thread_pool.rb:120:in `block in spawn_thread' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) + Rendered collection of /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (2.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.4ms) +Started GET "/tasks/27/edit?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A12%3A04+-0700" for ::1 at 2017-03-26 20:13:25 -0700 +Processing by TasksController#edit as HTML + Parameters: {"task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:12:04 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.8ms) + Rendered tasks/edit.html.erb within layouts/application (3.6ms) +Completed 200 OK in 31ms (Views: 19.6ms | ActiveRecord: 0.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:13:28 -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 (8.2ms) +Completed 200 OK in 34ms (Views: 30.3ms | ActiveRecord: 0.4ms) + + +Started PUT "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A13%3A28+-0700" for ::1 at 2017-03-26 20:13:30 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"wQ4FxyGr+CBmTNJ6iZTw9+SSC6BJrrpIEOzRR3qGt4Bzo4ykFBycMC5zUVXNswGgpVOpRODM6paol+d14xdFDA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:13:28 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:13:28 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:13:30 UTC], ["id", 27]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:13:30 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (6.3ms) +Completed 200 OK in 32ms (Views: 28.3ms | ActiveRecord: 0.3ms) + + +Started PUT "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:13:32 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"5H8d7Coun5VUBRTOs6NR20bNEn0RdUbWYdvQ6+v4REZW0pSPH5n7hRw6l+H3hKCMBwywmbgXFgjZoObZcmm2yg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:13:32 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:13: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 (3.6ms) +Completed 200 OK in 28ms (Views: 25.0ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A13%3A32+-0700" for ::1 at 2017-03-26 20:13:33 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"FoYf/vwp2UGEltF/3EEspP4QqUH2wHdUyvCD0NQWZEqkK5adyZ69UcypUlCYZt3zv9ELpV+iJ4pyi7XiTYeWxg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:13:32 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.1ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:13:32 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:13:33 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 10ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:13: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.2ms) +Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:13:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (5.5ms) +Completed 200 OK in 41ms (Views: 36.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:13:35 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"N8qDTA2PRBjknxnFeQ4Ra/Yz7QbPxU5Kn0fSbhGSxO2FZwovODggCKygmuo9KeA8t/JP4manHpQnPORciAM2YQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:13:35 UTC], ["id", 27]] +  (5.4ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 11ms (ActiveRecord: 6.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:13:35 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (5.2ms) +Completed 200 OK in 33ms (Views: 28.9ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A13%3A35+-0700" for ::1 at 2017-03-26 20:13:37 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"WvPNppr3WF3NEi/EKngliTtV4Oc6kFlYCs36D6yvZn7oXkTFr0A8TYUtrOtuX9TeepRCA5PyCYaytsw9NT6U8g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:13:35 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:13:35 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:13:37 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:13:37 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (3.6ms) +Completed 200 OK in 31ms (Views: 29.0ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:13:39 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Bfr5T/P7gCEgl4AliaICzQkMcVRl4o5xxg3dFUUxbNC3V3AsxkzkMWioAwrNhfOaSM3TsMyA3q9+dusn3KCeXA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:13:39 UTC], ["id", 27]] +  (2.6ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 7ms (ActiveRecord: 3.1ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:13:39 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (4.8ms) +Completed 200 OK in 27ms (Views: 24.5ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A13%3A39+-0700" for ::1 at 2017-03-26 20:13:45 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Vtma3ZJBOIb1FtEKHxA9WXyos+FddQUQySC0SUKwogLkdBO+p/Zclr0pUiVbN8wOPWkRBfQXVc5xW4J72yFQjg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:13:39 -0700"}, "id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:13:39 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:13:45 UTC], ["id", 27]] +  (2.2ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 6ms (ActiveRecord: 2.8ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-26 20:13:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.9ms) + Rendered tasks/show.html.erb within layouts/application (4.8ms) +Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:13:53 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.8ms) +Completed 200 OK in 35ms (Views: 32.0ms | ActiveRecord: 0.3ms) + + +Started PUT "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:13:54 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"Chn8rz1O4d6tvvpJc666meyJLBE5phCinAZVcaT1W9O4tHXMCPmFzuWBeWY3iUvOrUiO9ZDEQHwkfWNDPWSpXw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:13:54 UTC], ["id", 35]] +  (3.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 7ms (ActiveRecord: 3.7ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:13: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 (5.0ms) +Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started PUT "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A13%3A54+-0700" for ::1 at 2017-03-26 20:14:09 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"2OE3wKAvukYSutdXgXUt74f9sAwMRWpsBR+bnTKtLf5qTL6jlZjeVlqFVHjFUty4xjwS6KUnOrK9ZK2vqzzfcg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:13:54 -0700"}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:13:54 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:14:09 UTC], ["id", 35]] +  (3.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 4.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:14: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 (3.7ms) +Completed 200 OK in 25ms (Views: 23.5ms | ActiveRecord: 0.2ms) + + + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" ORDER BY "tasks"."id" DESC LIMIT ? [["LIMIT", 1]] +Started GET "/tasks/35" for ::1 at 2017-03-26 20:14:19 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.9ms) + Rendered tasks/show.html.erb within layouts/application (6.9ms) +Completed 200 OK in 36ms (Views: 30.2ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:14:23 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"Fd1GPgSUvLKLoqsxUIBDwfhfJYbyxBzJBuh6FRORYl6ncM9dMSPYosOdKB4Up7KWuZ6HYlumTBe+k0wnigCQ0g==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:14:23 UTC], ["id", 35]] +  (2.9ms) commit transaction +Redirected to http://localhost:3000/tasks/35 +Completed 302 Found in 8ms (ActiveRecord: 3.4ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 20:14:23 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.0ms) + Rendered tasks/show.html.erb within layouts/application (5.5ms) +Completed 200 OK in 27ms (Views: 24.1ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-26+20%3A14%3A23+-0700" for ::1 at 2017-03-26 20:14:26 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"dltByEjBVai4WqbXoWxaLr3pEoRHlZFdy2w0f8myTyTE9sirfXYxuPBlJfjlS6t5/CiwYO73wYNzFwJNUCO9qA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-26 20:14:23 -0700"}, "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-26 20:14:23 -0700"], ["complete", true], ["updated_at", 2017-03-27 03:14:26 UTC], ["id", 35]] +  (1.8ms) commit transaction +Redirected to http://localhost:3000/tasks/35 +Completed 302 Found in 6ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 20:14:26 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (0.8ms) + Rendered tasks/show.html.erb within layouts/application (3.6ms) +Completed 200 OK in 34ms (Views: 30.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/35?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-26 20:14:29 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"+Ymb+ALj5TQZwGTQ7CFID+nIqcaqhtKsMVtaR8ytFeRLJBKbN1SBJFH/5/+oBrlYqAkLIgPkgnKJIGx1VTznaA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 03:14:29 UTC], ["id", 35]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks/35 +Completed 302 Found in 9ms (ActiveRecord: 2.7ms) + + +Started GET "/tasks/35" for ::1 at 2017-03-26 20:14:29 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.1ms) + Rendered tasks/show.html.erb within layouts/application (4.0ms) +Completed 200 OK in 26ms (Views: 22.5ms | ActiveRecord: 0.1ms) + + From 6d5e919f6eeec8d4de7263c5efcb0b58f928a9e0 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Mon, 27 Mar 2017 09:32:08 -0700 Subject: [PATCH 24/27] final task list without css --- app/views/tasks/index.html.erb | 11 +++--- log/development.log | 68 ++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 5 deletions(-) diff --git a/app/views/tasks/index.html.erb b/app/views/tasks/index.html.erb index 51d2e6124..7f4397129 100644 --- a/app/views/tasks/index.html.erb +++ b/app/views/tasks/index.html.erb @@ -1,14 +1,15 @@ -

    Tasks#index

    +Task List -

    Task List

    +
      <% title = String.new %> -
        <% @tasks.each do |task| %> <% if title != task.title %> <% title = task.title %> - <%= title.upcase %> +

        + <%= title.upcase %> +

        <% end %> @@ -30,7 +31,7 @@ method: :delete%> <% end %> -
      +
    <%= link_to "Add Task", new_task_path, class: "button" %> diff --git a/log/development.log b/log/development.log index f1ab5f2be..35f8efe50 100644 --- a/log/development.log +++ b/log/development.log @@ -21377,3 +21377,71 @@ Processing by TasksController#show as HTML Completed 200 OK in 26ms (Views: 22.5ms | ActiveRecord: 0.1ms) +Started GET "/tasks" for ::1 at 2017-03-26 20:22:01 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.4ms) +Completed 200 OK in 33ms (Views: 29.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:22: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.4ms) +Completed 200 OK in 23ms (Views: 20.9ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:29: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.9ms) +Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.2ms) + + + +ActionView::Template::Error (Undefined variable: "$color".): + 4: TaskList + 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:15 +app/views/layouts/application.html.erb:7:in `_app_views_layouts_application_html_erb__1723610682302208470_70274066859940' + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.8ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) + Rendering /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) + Rendered /Users/ashtn/.rvm/gems/ruby-2.4.0/gems/actionpack-5.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (63.2ms) +Started GET "/tasks" for ::1 at 2017-03-26 20:30: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 38ms (Views: 36.0ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:30: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 (7.0ms) +Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-26 20:30: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 (9.1ms) +Completed 200 OK in 37ms (Views: 33.4ms | ActiveRecord: 0.3ms) + + From f78b9e5734ddd1115e362bf52dd3577a2c181bb0 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Mon, 27 Mar 2017 10:15:13 -0700 Subject: [PATCH 25/27] back to normal, hopefully --- app/controllers/tasks_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/tasks_controller.rb b/app/controllers/tasks_controller.rb index 65505d75e..035dc4183 100644 --- a/app/controllers/tasks_controller.rb +++ b/app/controllers/tasks_controller.rb @@ -39,7 +39,7 @@ def complete task = Task.find(params[:id]) if task.update(task_params) - redirect_to task_path(task.id) + redirect_to complete_task_path(task.id) end end From 113d8c176626a8a8df2bc296885d475845508f52 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Wed, 5 Apr 2017 14:16:57 -0700 Subject: [PATCH 26/27] branch practice --- README.md | 2 +- db/development.sqlite3 | Bin 28672 -> 28672 bytes log/development.log | 794 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 795 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4b0ce2bd7..d59d80b19 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ In this wave we will extend the interactivity with users, allowing them to edit **-** the site should take the user back to the task's show page after the task is updated 1. **Optional** - - DRY up your code by reusing the view code from the `new` functionality + **-** DRY up your code by reusing the view code from the `new` functionality - Hint: Rendering _partials_ in Rails diff --git a/db/development.sqlite3 b/db/development.sqlite3 index 8f0d14961d3a0555653be6bdd12e2aef29c6436e..a4598336fd230e9d92124f540cf4a645986f1a27 100644 GIT binary patch delta 671 zcmZ{i&ubGw6vt<5LXy=O1lLd#+fkuLFyrjZ?9T39B$OITktjAuTbm{}36``bBwIuf zY}O(uDwP4D2M_g7derVk{4a!_JoPW=&9m+%-GYZ6<_GWl=KJ3JFdK((;}C9T;NGX~ zB;5O6-6>_F5ul9h!r1=#&5_-+m*UgWqjSZ??c{d!imar3+)js0gA|U}jNjF~^<1qJZbG=aOFaVGhcj+4QwAPZPFgVs7fxpv_n;3$}so z>d8VOE>q@2HI7 zE9DLNe6tl)N!@LCTd4M|j+R&3^@#*f$L|DTr_pnQg@TRF41}p0zO4Gq#6c(zE3rHk zD44{siH?aynJ`aR`Y+St3Mjgxej%8u)$6FY-s!Zv4w46pr4z2cA0^5pn1NEO?SLCnRQHjbw xE{6}P5%gtfgfS6mx-YVde7iW~{j5MJ50=tunCJf)reV!AxyGCO)xRm2`v(-1sbl~E delta 571 zcmYL`&ubGw6vt2nX)DcmdL#DIyV|QjROHj!{N+h+-wzblL7Rwe2-Gy8f z+7yaN4$2^?;K9E@?cV$!^dz2p@+7^9dJvt>w(Kbgbl^r=z;}0drN-uZhi))0P~pgsB;W_zJp4vYD!A_?+R1y zN>|1CGH~>p)zbMcykY^-6@IM-C+6DQA!?(z9fkVk>er${T|}5?bB`*_r67b4uO~+f z80JS`gU6Mypg*?idMcQ@IMAjWU}h_>?DgG8mn=~4mVDg|-v9R_kJtMhpvxIYQ=gPz zTXMmSF>Bx22QNTn_gp%mRz&x=9z-a9xDlZ!-q_qkovrQA*OLL795mo*GRk3u$pkO0 zK-kewmwS44<@?P+Fe;l&iS1U2AqAq;qs-$HQ^#dg4t`EDV-zbv8FS;Lezyi;LqEB9 zOCPiv1%vlR{mk`vaP4fiipk3~6j*Yigu%`<=U^tzuEQK1&iBP9Gq^F%DR"XIZooA7KEwPNmi31ryoxBA7n2bo+vvSbOKyMy4KNtW3uK+HDO313E4WlrtrrDcBTTyZ7XpfcpEWA17r5GxxH4Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 17:11:57 UTC], ["id", 27]] +  (6.3ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 23ms (ActiveRecord: 8.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:11: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 (6.7ms) +Completed 200 OK in 49ms (Views: 43.8ms | ActiveRecord: 0.3ms) + + +Started PUT "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-27+10%3A11%3A57+-0700" for ::1 at 2017-03-27 10:11:58 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"QHc2Ufufi14mt9Thlm1yOwfHeO5Ful0K6+3am+blMRry2r8yzijvTm6IV87SSoNsRgbaCuzYDdRTluypf3TDlg==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-27 10:11:57 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.3ms) begin transaction + SQL (0.9ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-27 10:11:57 -0700"], ["complete", true], ["updated_at", 2017-03-27 17:11:58 UTC], ["id", 27]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 12ms (ActiveRecord: 2.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:11: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 (11.5ms) +Completed 200 OK in 43ms (Views: 39.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-27 10:11:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.4ms) + Rendered tasks/show.html.erb within layouts/application (9.2ms) +Completed 200 OK in 56ms (Views: 47.0ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-27 10:12:02 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"IvfKgEemEeSS67H5daLCMJRjuurhiUslxLg1EZFVO46QWkPjchF19NrUMtYxhTNn1aIYDkjrG/t8wwMjCMTJAg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 17:12:02 UTC], ["id", 27]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 11ms (ActiveRecord: 4.0ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-27 10:12:02 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (26.5ms) +Completed 200 OK in 61ms (Views: 57.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-27+10%3A12%3A02+-0700" for ::1 at 2017-03-27 10:12:04 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"q/zRxAs7XHTFnkNWmwGsx75IjqBIvNwgMJcEXxVsWisZUVinPow4ZI2hwHnfJl2Q/4ksROHejP6I7DJtjP2opw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-27 10:12:02 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.8ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-27 10:12:02 -0700"], ["complete", true], ["updated_at", 2017-03-27 17:12:04 UTC], ["id", 27]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 8ms (ActiveRecord: 2.4ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-27 10:12:04 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.4ms) + Rendered tasks/show.html.erb within layouts/application (7.4ms) +Completed 200 OK in 51ms (Views: 45.6ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-27 10:14:11 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"uZDbTF1cVenSZwhE8lTDqzt2oXD3luRJz1i+lX3CDAwLPVIvaOsx+ZpYi2u2czL8ercDlF70tJd3I4in5FP+gA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.4ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 17:14:11 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 20ms (ActiveRecord: 3.8ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-27 10:14:11 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.2ms) + Rendered tasks/show.html.erb within layouts/application (4.3ms) +Completed 200 OK in 29ms (Views: 25.6ms | ActiveRecord: 0.1ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-27+10%3A14%3A11+-0700" for ::1 at 2017-03-27 10:14:13 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"SI6eA8GbOj7zLfdnxUfbtF1OB68T+bixohgwJkY4bnr6Ixdg9CxeLrsSdEiBYCrjHI+lS7qb6G8aYwYU36mc9g==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-27 10:14:11 -0700"}, "id"=>"27"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.6ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-27 10:14:11 -0700"], ["complete", true], ["updated_at", 2017-03-27 17:14:13 UTC], ["id", 27]] +  (1.3ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 11ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-27 10:14:13 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.4ms) + Rendered tasks/show.html.erb within layouts/application (8.2ms) +Completed 200 OK in 57ms (Views: 48.9ms | ActiveRecord: 0.4ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-27 10:14:14 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"XPD7o2okQnKIhAUvbD1mY2K12OS/eTpSuHv4WRHDsRbuXXLAX5MmYsC7hgAoGpc0I3R6ABYbaowAAM5riFJDmg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 17:14:14 UTC], ["id", 27]] +  (1.1ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 16ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-27 10:14:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.1ms) + Rendered tasks/show.html.erb within layouts/application (8.2ms) +Completed 200 OK in 53ms (Views: 48.7ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-27+10%3A14%3A14+-0700" for ::1 at 2017-03-27 10:14:16 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"J3UETSJ0RZcomsngYfuqky5WvdlGZ/0Jt2PoIw+T9M+V2I0uF8Mhh2ClSs8l3FvEb5cfPe8FrdcPGN4RlgIGQw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-27 10:14:14 -0700"}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-27 10:14:14 -0700"], ["complete", true], ["updated_at", 2017-03-27 17:14:16 UTC], ["id", 27]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks/27 +Completed 302 Found in 8ms (ActiveRecord: 2.5ms) + + +Started GET "/tasks/27" for ::1 at 2017-03-27 10:14:16 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"27"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (9.6ms) +Completed 200 OK in 67ms (Views: 60.7ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:14:17 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (11.0ms) +Completed 200 OK in 65ms (Views: 55.1ms | ActiveRecord: 0.5ms) + + +Started PUT "/tasks/29?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-27 10:14:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"YYbZjxLBhqBVI2+xvAU4/UxCly3B8iEefC5kmbfMdFHTK1DsJ3bisB0c7J74IsmqDYM1yWiQccDEVVKrLl2G3Q==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"29"} + Task Load (0.5ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 17:14:19 UTC], ["id", 29]] +  (4.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 13ms (ActiveRecord: 6.5ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:14: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 (8.3ms) +Completed 200 OK in 51ms (Views: 46.9ms | ActiveRecord: 0.3ms) + + +Started PUT "/tasks/29?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-27+10%3A14%3A19+-0700" for ::1 at 2017-03-27 10:14:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"zNiMPBJF53YDCv0YGr+auWu8KEbtsMVXm7SFSGUz1Zh+dQVfJ/KDZks1fjdemGvuKn2KokTSlYkjz7N6/KInFA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-27 10:14:19 -0700"}, "id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (2.1ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-27 10:14:19 -0700"], ["complete", true], ["updated_at", 2017-03-27 17:14:19 UTC], ["id", 29]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 12ms (ActiveRecord: 4.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:14:20 -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 (10.3ms) +Completed 200 OK in 53ms (Views: 47.1ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:15:23 -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 (17.2ms) +Completed 200 OK in 61ms (Views: 48.7ms | ActiveRecord: 1.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:15: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 (11.4ms) +Completed 200 OK in 63ms (Views: 57.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-27 10:15:28 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (29.5ms) + Rendered tasks/new.html.erb within layouts/application (33.6ms) +Completed 200 OK in 98ms (Views: 86.7ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-27 10:15:34 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"kHdGsVNe9Sgt9XorNrp7+Q8VpHPxHDgxQvM23ikWBYQi2s/SZumROGXK+QRynYquTtQGl1h+aO/6iADssIf3CA==", "task"=>{"title"=>"wave4", "name"=>"test", "description"=>"test"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.6ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["description", "test"], ["created_at", 2017-03-27 17:15:34 UTC], ["updated_at", 2017-03-27 17:15:34 UTC], ["title", 4]] +  (16.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 21ms (ActiveRecord: 17.2ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:15:34 -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.2ms) +Completed 200 OK in 43ms (Views: 38.6ms | ActiveRecord: 0.4ms) + + +Started PUT "/tasks/38?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-03-27+10%3A15%3A34+-0700" for ::1 at 2017-03-27 10:15:35 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"6mcpCJOiz0RqyEmvQI6eJwnaPNe7ess432TFPq+znYtYyqBrphWrVCL3yoAEqW9wSBueMxIYm+ZnH/MMNiJvBw==", "task"=>{"complete"=>"true", "completion_date"=>"2017-03-27 10:15:34 -0700"}, "id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-03-27 10:15:34 -0700"], ["complete", true], ["updated_at", 2017-03-27 17:15:35 UTC], ["id", 38]] +  (1.7ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:15:35 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (7.6ms) +Completed 200 OK in 37ms (Views: 34.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/38" for ::1 at 2017-03-27 10:15:36 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.2ms) + Rendered tasks/show.html.erb within layouts/application (11.6ms) +Completed 200 OK in 52ms (Views: 42.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/38/edit" for ::1 at 2017-03-27 10:15:39 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"38"} + Task Load (1.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (6.0ms) + Rendered tasks/edit.html.erb within layouts/application (10.5ms) +Completed 200 OK in 64ms (Views: 51.7ms | ActiveRecord: 1.4ms) + + +Started PUT "/tasks/38" for ::1 at 2017-03-27 10:15:42 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"Be8JA/faLx/T4qBTtyOxldqfWwAKQO6RfTAUwn+RtGK3QoBgwm1LD5vdI3zzBEDCm1755KMivk/FSyLw5gBG7g==", "task"=>{"title"=>"baseline", "name"=>"test", "description"=>"test test"}, "commit"=>"edit", "id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "description" = ?, "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["description", "test test"], ["title", 0], ["updated_at", 2017-03-27 17:15:42 UTC], ["id", 38]] +  (8.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 18ms (ActiveRecord: 9.9ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:15:42 -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 (6.7ms) +Completed 200 OK in 40ms (Views: 35.4ms | ActiveRecord: 0.6ms) + + +Started GET "/tasks/38" for ::1 at 2017-03-27 10:15:45 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (8.5ms) +Completed 200 OK in 71ms (Views: 57.8ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/38?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-03-27 10:15:47 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"flmttTgFX9t+skd896kwqBnGz3U+AsCLgIw5Kr7xWrjM9CTWDbI7yzaNxFOzjsH/WAdtkZdgkFU49w8YJ2CoNA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"38"} + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (1.0ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-03-27 17:15:47 UTC], ["id", 38]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks/38 +Completed 302 Found in 11ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks/38" for ::1 at 2017-03-27 10:15:47 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (12.6ms) +Completed 200 OK in 55ms (Views: 51.0ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:15:52 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 52ms (Views: 43.4ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/38" for ::1 at 2017-03-27 10:15:54 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"38"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (7.1ms) +Completed 200 OK in 60ms (Views: 53.1ms | ActiveRecord: 0.2ms) + + +Started DELETE "/tasks/38" for ::1 at 2017-03-27 10:15:59 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"735FWS6FxN/DIloJnS3wQ1W+SA2ASj/Bz3hNrZ5KtY9d08w6GzKgz4sd2SbZCgEUFH/q6Skobx93A3ufB9tHAw==", "id"=>"38"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 38], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 38]] +  (2.1ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 14ms (ActiveRecord: 3.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:15: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 (7.2ms) +Completed 200 OK in 68ms (Views: 39.5ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-03-27 10:16:00 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (5.0ms) + Rendered tasks/new.html.erb within layouts/application (8.5ms) +Completed 200 OK in 60ms (Views: 56.0ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-03-27 10:16:05 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"M5Rsw7CpI+O/0mK1O6TKITBMORsyX36Z9hJbBAesSkSBOeWghR5H8/ft4Zp/gzt2cY2b/5s9LkdOaW02nj24yA==", "task"=>{"title"=>"baseline", "name"=>"test", "description"=>"test"}, "commit"=>"New Task"} +  (0.1ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "test"], ["description", "test"], ["created_at", 2017-03-27 17:16:05 UTC], ["updated_at", 2017-03-27 17:16:05 UTC], ["title", 0]] +  (7.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 13ms (ActiveRecord: 7.8ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:16:05 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (10.6ms) +Completed 200 OK in 45ms (Views: 41.6ms | ActiveRecord: 0.3ms) + + +Started DELETE "/tasks/39" for ::1 at 2017-03-27 10:16:07 -0700 +Processing by TasksController#destroy as HTML + Parameters: {"authenticity_token"=>"EFKh74qQIf9hKEYVfAaXVMAFwRPCHTiAQQW5xIHTTW2i/yiMvydF7ykXxTo4IWYDgcRj92t/aF75fo/2GEK/4Q==", "id"=>"39"} + Task Load (0.4ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 39], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.7ms) DELETE FROM "tasks" WHERE "tasks"."id" = ? [["id", 39]] +  (7.8ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 16ms (ActiveRecord: 9.0ms) + + +Started GET "/tasks" for ::1 at 2017-03-27 10:16: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 (5.7ms) +Completed 200 OK in 52ms (Views: 47.4ms | ActiveRecord: 0.3ms) + + +Started GET "/" for ::1 at 2017-04-03 10:13:05 -0700 + ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" +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 (14.3ms) +Completed 200 OK in 249ms (Views: 229.7ms | ActiveRecord: 1.0ms) + + +Started PUT "/tasks/31?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-04-03 10:17:16 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"1NhGNF5FpuzUDyTlLj7s6RB9wcJ0ZgGJPNWA0HHdM/Jmdc9Xa/LC/Jwwp8pqGR2+UbxjJt0EUVeErrbi6EzBfg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"31"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 31], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-04-03 17:17:16 UTC], ["id", 31]] +  (1.9ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 8ms (ActiveRecord: 2.6ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:17: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 (3.8ms) +Completed 200 OK in 21ms (Views: 18.9ms | ActiveRecord: 0.3ms) + + +Started PUT "/tasks/30?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-04-03 10:17:17 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"9hpy42VislI44GpAY6JWBM0SJOZznY+b2UIi2HFX6g9Et/uAUNXWQnDf6W8nhadTjNOGAtr/30VhORTq6MYYgw==", "task"=>{"complete"=>"false", "completion_date"=>""}, "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 "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-04-03 17:17:17 UTC], ["id", 30]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.1ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:17: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.7ms) +Completed 200 OK in 25ms (Views: 22.4ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/29?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-04-03 10:17:18 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"S2cvyZCZ/6oJ0NKppn5mssGVd8oVRIDPa0/80KtyzEr5yqaqpS6bukHvUYbiWZflgFTVLrwm0BHTNMriMuM+xg==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"29"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 29], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.5ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-04-03 17:17:18 UTC], ["id", 29]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 6ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:17:18 -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 (6.7ms) +Completed 200 OK in 26ms (Views: 23.8ms | ActiveRecord: 0.5ms) + + +Started PUT "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-04-03 10:17:19 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"DWHq1tj9hRYNy4wJ2gQ50iPEN3DitN/PJRp2+XgYozC/zGO17UrhBkX0DyaeI8iFYgWVlEvWjxGdYUDL4YlRvA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-04-03 17:17:19 UTC], ["id", 28]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:17: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 (17.1ms) +Completed 200 OK in 35ms (Views: 33.2ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/27?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-04-03 10:17:20 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"T/N9t33XWGtWdlKM6mMt3Q64Vhfc3ucAbu0U7jd9h6T9XvTUSGA8ex5J0aOuRNyKT3n083W8t97WliLcrux1KA==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"27"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 27], ["LIMIT", 1]] +  (0.0ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-04-03 17:17:20 UTC], ["id", 27]] +  (1.2ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.7ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:17: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 22ms (Views: 20.3ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/27?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-04-03+10%3A17%3A20+-0700" for ::1 at 2017-04-03 10:25:55 -0700 +Processing by TasksController#update as HTML + Parameters: {"authenticity_token"=>"A0KaqvJM/2Yb15u9WHRGosE1pIatNxpQlM90bQajHBix7xPJx/ubdlPoGJIcU7f1gPQGYgRVSo4stEJfnzLulA==", "task"=>{"complete"=>"true", "completion_date"=>"2017-04-03 10:17:20 -0700"}, "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) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-04-03 10:17:20 -0700"], ["complete", true], ["updated_at", 2017-04-03 17:25:55 UTC], ["id", 27]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 2.0ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:25: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 24ms (Views: 21.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-04-03 10:25:59 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (2.0ms) + Rendered tasks/show.html.erb within layouts/application (7.2ms) +Completed 200 OK in 32ms (Views: 26.4ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35/edit" for ::1 at 2017-04-03 10:26:02 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (17.0ms) + Rendered tasks/edit.html.erb within layouts/application (21.4ms) +Completed 200 OK in 47ms (Views: 42.0ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/35/edit" for ::1 at 2017-04-03 10:26:09 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (5.5ms) + Rendered tasks/edit.html.erb within layouts/application (8.3ms) +Completed 200 OK in 44ms (Views: 38.8ms | ActiveRecord: 0.2ms) + + +Started PUT "/tasks/35" for ::1 at 2017-04-03 10:26:12 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"+smMJhzi9r9TZKWpsl3se4mGR3TMGH2/yE39dNch8ExIZAVFKVWSrxtbJob2eh0syEflkGV6LWFwNstGTrACwA==", "task"=>{"title"=>"baseline", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"edit", "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.2ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 0], ["updated_at", 2017-04-03 17:26:12 UTC], ["id", 35]] +  (1.5ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 9ms (ActiveRecord: 2.2ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:26: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 32ms (Views: 30.5ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35" for ::1 at 2017-04-03 10:26:18 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.5ms) + Rendered tasks/show.html.erb within layouts/application (7.6ms) +Completed 200 OK in 31ms (Views: 26.3ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/35/edit" for ::1 at 2017-04-03 10:26:20 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"35"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (1.9ms) + Rendered tasks/edit.html.erb within layouts/application (4.1ms) +Completed 200 OK in 30ms (Views: 25.4ms | ActiveRecord: 0.1ms) + + +Started PUT "/tasks/35" for ::1 at 2017-04-03 10:26:23 -0700 +Processing by TasksController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"k1RdBOot5fDsNYe7uuu204pbi1tPZ2U+eICp9XHk2DUh+dRn35qB4KQKBJT+zEeEy5opv+YFNeDA+5/H6HUquQ==", "task"=>{"title"=>"wave4", "name"=>"Mark a task complete", "description"=>"Add a button to the list of tasks on the home page that, when clicked, will mark a task complete\r\nUpdate the database with the task's completed date"}, "commit"=>"edit", "id"=>"35"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 35], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.3ms) UPDATE "tasks" SET "title" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["title", 4], ["updated_at", 2017-04-03 17:26:23 UTC], ["id", 35]] +  (1.4ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 5ms (ActiveRecord: 1.9ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:26:23 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (8.2ms) +Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/new" for ::1 at 2017-04-03 10:28:19 -0700 +Processing by TasksController#new as HTML + Rendering tasks/new.html.erb within layouts/application + Rendered tasks/_form.html.erb (6.8ms) + Rendered tasks/new.html.erb within layouts/application (9.3ms) +Completed 200 OK in 32ms (Views: 28.3ms | ActiveRecord: 0.0ms) + + +Started POST "/tasks" for ::1 at 2017-04-03 10:28:30 -0700 +Processing by TasksController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qrZqAiihK/JEigF43IV1faP70G5zv1ejwuw3N1Dl9BoYG+NhHRZP4gy1gleYooQq4jpyitrdB316lwEFyXQGlg==", "task"=>{"title"=>"wave4", "name"=>"sumbmit", "description"=>"sumbit pl "}, "commit"=>"New Task"} +  (0.0ms) begin transaction + SQL (0.5ms) INSERT INTO "tasks" ("name", "description", "created_at", "updated_at", "title") VALUES (?, ?, ?, ?, ?) [["name", "sumbmit"], ["description", "sumbit pl "], ["created_at", 2017-04-03 17:28:30 UTC], ["updated_at", 2017-04-03 17:28:30 UTC], ["title", 4]] +  (0.6ms) commit transaction +Redirected to http://localhost:3000/tasks +Completed 302 Found in 4ms (ActiveRecord: 1.1ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:28: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.2ms) +Completed 200 OK in 28ms (Views: 25.1ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/40" for ::1 at 2017-04-03 10:28:33 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"40"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 40], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 40], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.3ms) + Rendered tasks/show.html.erb within layouts/application (6.2ms) +Completed 200 OK in 31ms (Views: 26.7ms | ActiveRecord: 0.2ms) + + +Started GET "/tasks/40/edit" for ::1 at 2017-04-03 10:28:35 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"40"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 40], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (12.0ms) + Rendered tasks/edit.html.erb within layouts/application (14.0ms) +Completed 200 OK in 36ms (Views: 33.4ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks/40/edit" for ::1 at 2017-04-03 10:28:42 -0700 +Processing by TasksController#edit as HTML + Parameters: {"id"=>"40"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 40], ["LIMIT", 1]] + Rendering tasks/edit.html.erb within layouts/application + Rendered tasks/_form.html.erb (5.5ms) + Rendered tasks/edit.html.erb within layouts/application (8.6ms) +Completed 200 OK in 41ms (Views: 37.3ms | ActiveRecord: 0.1ms) + + +Started GET "/tasks" for ::1 at 2017-04-03 10:32:12 -0700 +Processing by TasksController#index as HTML + Rendering tasks/index.html.erb within layouts/application + Task Load (0.3ms) SELECT "tasks".* FROM "tasks" + Rendered tasks/index.html.erb within layouts/application (12.6ms) +Completed 200 OK in 58ms (Views: 50.1ms | ActiveRecord: 0.3ms) + + +Started GET "/tasks/28" for ::1 at 2017-04-03 10:32:14 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.7ms) + Rendered tasks/show.html.erb within layouts/application (7.2ms) +Completed 200 OK in 53ms (Views: 47.1ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=true&task%5Bcompletion_date%5D=2017-04-03+10%3A32%3A14+-0700" for ::1 at 2017-04-03 10:32:27 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"ApKjxE9Xx5KC3CRXB50NP2bVC8HDFVNIyKGBWFlvuQGwPyqneuCjgsrjp3hDuvxoJxSpJWp3A5Zw2rdqwP5LjQ==", "task"=>{"complete"=>"true", "completion_date"=>"2017-04-03 10:32:14 -0700"}, "id"=>"28"} + Task Load (0.1ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", "2017-04-03 10:32:14 -0700"], ["complete", true], ["updated_at", 2017-04-03 17:32:27 UTC], ["id", 28]] +  (1.6ms) commit transaction +Redirected to http://localhost:3000/tasks/28 +Completed 302 Found in 7ms (ActiveRecord: 2.3ms) + + +Started GET "/tasks/28" for ::1 at 2017-04-03 10:32:27 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.8ms) + Rendered tasks/show.html.erb within layouts/application (5.9ms) +Completed 200 OK in 36ms (Views: 32.3ms | ActiveRecord: 0.2ms) + + +Started PATCH "/tasks/28?task%5Bcomplete%5D=false&task%5Bcompletion_date%5D=" for ::1 at 2017-04-03 10:32:31 -0700 +Processing by TasksController#complete as HTML + Parameters: {"authenticity_token"=>"pBMNVJ5w7H+POCe/ISTh0EijdPZ4IvznqX26vSeSADUWvoQ3q8eIb8cHpJBlAxCHCWLWEtFArDkRBoyPvgPyuQ==", "task"=>{"complete"=>"false", "completion_date"=>""}, "id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] +  (0.1ms) begin transaction + SQL (0.4ms) UPDATE "tasks" SET "completion_date" = ?, "complete" = ?, "updated_at" = ? WHERE "tasks"."id" = ? [["completion_date", ""], ["complete", false], ["updated_at", 2017-04-03 17:32:31 UTC], ["id", 28]] +  (4.9ms) commit transaction +Redirected to http://localhost:3000/tasks/28 +Completed 302 Found in 12ms (ActiveRecord: 5.6ms) + + +Started GET "/tasks/28" for ::1 at 2017-04-03 10:32:31 -0700 +Processing by TasksController#show as HTML + Parameters: {"id"=>"28"} + Task Load (0.2ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendering tasks/show.html.erb within layouts/application + CACHE (0.0ms) SELECT "tasks".* FROM "tasks" WHERE "tasks"."id" = ? LIMIT ? [["id", 28], ["LIMIT", 1]] + Rendered tasks/_completed_on.html.erb (1.7ms) + Rendered tasks/show.html.erb within layouts/application (5.7ms) +Completed 200 OK in 36ms (Views: 32.9ms | ActiveRecord: 0.2ms) + + From 1597474d22093290796b5082dfa02363bb6574d7 Mon Sep 17 00:00:00 2001 From: Ashtn Date: Wed, 5 Apr 2017 14:30:32 -0700 Subject: [PATCH 27/27] README.md --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index d59d80b19..af1250939 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@ Practice all aspects of Rails development. ## Baseline In this baseline, you'll create a new Rails application and get started with two of the major components: route, controller and view. - **-** Fork and clone this repository to your computer **-** Create a new Rails application using `rails new .` **-** create a `Tasks` controller @@ -44,8 +43,6 @@ In this wave, we will expand the actions we support and introduce forms for user **-** this will give the user a new page with a **form** with the appropriate task fields **-** the site should take the user back to the task list after the new task is added - - ## Wave 3 In this wave we will extend the interactivity with users, allowing them to edit existing tasks. @@ -59,7 +56,6 @@ In this wave we will extend the interactivity with users, allowing them to edit - Hint: Rendering _partials_ in Rails - ## Wave 4 In this wave, we will add the ability to delete tasks. We will also add the ability for a user to mark a task complete. @@ -70,3 +66,4 @@ In this wave, we will add the ability to delete tasks. We will also add the abil 1. Mark a task complete **-** Add a button to the list of tasks on the home page that, when clicked, will mark a task complete **-** Update the database with the task's completed date +